* { margin:0; padding:0; box-sizing:border-box; font-family:'Inter', sans-serif; }

    body {
        min-height:100vh;
        background: #000000;
        overflow-x:hidden;
        color:#ffffff;
        position: relative;
    }

    canvas#bgCanvas {
        position: absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
        z-index:0;
    }

    header {
        text-align:center;
        padding:120px 20px 50px;
        position: relative;
        z-index:1;
    }

    header h1 {
        font-size:5em;
        margin-bottom:20px;
        color: #ffffff;
        font-weight: 300;
        letter-spacing: -2px;
        animation: fadeIn 1s ease-out;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    header p {
        font-size:1.2em;
        color:#ffffff;
        max-width:700px;
        margin:0 auto 50px;
        font-weight: 300;
        line-height: 1.8;
        opacity: 0.8;
    }

    .start-btn {
        display:inline-block;
        padding:20px 50px;
        font-size:1.2em;
        background: #ffffff;
        color:#000000;
        border:none;
        border-radius:0;
        cursor:pointer;
        text-decoration:none;
        transition: all 0.3s ease;
        font-weight: 600;
        letter-spacing: 1px;
        position: relative;
        overflow: hidden;
    }

    .start-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.1);
        transition: left 0.3s ease;
    }

    .start-btn:hover::after {
        left: 100%;
    }

    .start-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(255,255,255,0.3);
    }

    .floating-text-container {
        position: relative;
        z-index: 1;
        padding: 80px 20px;
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 60px;
    }

    .floating-text {
        color: #ffffff;
        opacity: 0;
        animation: slideUp 0.8s ease-out forwards;
        padding: 40px;
        border: 1px solid rgba(255,255,255,0.1);
        transition: all 0.3s ease;
    }

    .floating-text:nth-child(1) { animation-delay: 0.1s; }
    .floating-text:nth-child(2) { animation-delay: 0.2s; }
    .floating-text:nth-child(3) { animation-delay: 0.3s; }
    .floating-text:nth-child(4) { animation-delay: 0.4s; }
    .floating-text:nth-child(5) { animation-delay: 0.5s; }

    .floating-text:hover {
        border-color: rgba(255,255,255,0.4);
        transform: translateY(-5px);
        background: rgba(255,255,255,0.02);
    }

    .floating-text h3 {
        font-size: 1.5em;
        margin-bottom: 15px;
        font-weight: 600;
        letter-spacing: -0.5px;
    }

    .floating-text p {
        font-size: 0.95em;
        line-height: 1.7;
        color: rgba(255,255,255,0.7);
        font-weight: 300;
    }

    @keyframes slideUp {
        from { 
            opacity: 0;
            transform: translateY(30px);
        }
        to { 
            opacity: 1;
            transform: translateY(0);
        }
    }

    footer {
        text-align:center;
        padding:60px 20px;
        font-size:0.9em;
        color:rgba(255,255,255,0.5);
        position: relative;
        z-index:1;
        font-weight: 300;
    }

    .grid-line {
        position: absolute;
        background: rgba(255,255,255,0.03);
    }

    .grid-line.vertical {
        width: 1px;
        height: 100%;
        top: 0;
    }

    .grid-line.horizontal {
        height: 1px;
        width: 100%;
        left: 0;
    }