* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #000000 0%, #333333 50%, #ffffff 100%);
            min-height: 100vh;
            color: #ffffff;
            overflow-x: hidden;
        }

        .container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            padding: 20px;
        }

        .background-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.1;
            background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 40px, #ffffff 40px, #868383 80px),
                repeating-linear-gradient(-45deg, transparent, transparent 40px, #000000 40px, #000000 80px);
            
        }

        @keyframes patternMove {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(80px) translateY(80px); }
        }

        .logo {
            font-size: 6rem;
            font-weight: bold;
            margin-bottom: 2rem;
            text-align: center;
            background: linear-gradient(45deg, #ffffff, #cccccc, #4f4f4f);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 3px 3px 5px rgba(0,0,0,0.3);
            animation: logoGlow 1s ease-in-out infinite alternate ;
            position: relative;
            z-index: 2;
        }

        @keyframes logoGlow {
            0% { filter: brightness(1) drop-shadow(0 0 10px rgba(255,255,255,0.3)); }
            100% { filter: brightness(1.2) drop-shadow(0 0 20px rgba(255,255,255,0.6)); }
        }

        .tagline {
            font-size: 1.5rem;
            margin-bottom: 3rem;
            text-align: center;
            color: #e0e0e0;
            font-weight: 300;
            letter-spacing: 1px;
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        .description {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-align: center;
            max-width: 600px;
            line-height: 1.8;
            color: #d0d0d0;
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out 1s both;
        }

        .brittany-accent {
            color: #ffffff;
            font-weight: bold;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .coming-soon {
            font-size: 1.1rem;
            color: #e0e0e0;
            text-align: center;
            margin-top: 3rem;
            padding: 20px 40px;
            border: 2px solid #ffffff;
            border-radius: 50px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            position: relative;
            z-index: 2;
            animation: fadeInUp 2s ease-out 1.5s both;
        }

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

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 20px rgba(255,255,255,0.3); }
            50% { box-shadow: 0 0 40px rgba(255,255,255,0.6); }
        }

        .floating-elements {
            position: fixed;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        /* .floating-element {
            position: absolute;
            font-size: 24px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            animation: float 3s ease-in-out infinite;
        }
        .floating-element:nth-child(1) { top: 30%;    left: 10%;  animation-delay: 3s;}
        .floating-element:nth-child(3) { bottom: 20%; left: 20%;  animation-delay: 4s;}
        .floating-element:nth-child(4) { top: 10%;    left: 30%;  animation-delay: 2s;}
        .floating-element:nth-child(2) { bottom: 20%; right: 20%; animation-delay: 5s; background: rgba(0,0,0,0.2);}
        .floating-element:nth-child(5) { top: 30%;    right: 20%; animation-delay: 3s; background: rgba(0,0,0,0.2);}
        .floating-element:nth-child(6) { bottom: 40%; right: 10%; animation-delay: 2s; background: rgba(0,0,0,0.2);} */

       .floating-element {
            position: fixed; /* Use fixed for full viewport movement */
            font-size: 24px;
            animation: figure8 8s infinite linear;
            --random-x: 0;
            --random-y: 0;
        } 

        .floating-element:nth-child(1) { top: 30%;    left: 10%;  animation-delay: 3s; animation: drift 12s infinite ease-in-out; }
        .floating-element:nth-child(2) { bottom: 20%; left: 20%;  animation-delay: 4s; animation: bounce 3s infinite ease-in-out; }
        .floating-element:nth-child(3) { top: 10%;    left: 30%;  animation-delay: 2s; animation: figure8 8s infinite ease-in-out; }
        .floating-element:nth-child(4) { bottom: 20%; right: 20%; animation-delay: 5s; animation: figure8 10s infinite linear; }
        .floating-element:nth-child(5) { top: 30%;    right: 20%; animation-delay: 3s; animation: drift 15s infinite ease-in-out reverse; }
        .floating-element:nth-child(6) { bottom: 40%; right: 10%; animation-delay: 2s; animation: bounce 4s infinite ease-in-out; }
        .floating-element:nth-child(1) { top: 45%;    left: 15%;  animation-delay: 5s; animation: drift 6s infinite ease-in-out; }
        .floating-element:nth-child(2) { bottom: 15%; left: 35%;  animation-delay: 1s; animation: bounce 4s infinite ease-in-out; }
        .floating-element:nth-child(3) { top: 20%;    left: 50%;  animation-delay: 5s; animation: figure8 5s infinite ease-in-out; }

        @keyframes randomFloat {
            0%, 100% { transform: translate(0, 0); }
            25% { transform: translate(calc(var(--random-x) * 100px), calc(var(--random-y) * 50px)); }
            50% { transform: translate(calc(var(--random-x) * -80px), calc(var(--random-y) * -60px)); }
            75% { transform: translate(calc(var(--random-x) * 60px), calc(var(--random-y) * 80px)); }
        }
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-30px); }
            60% { transform: translateY(-15px); }
        }
        @keyframes drift {
            0% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(200px, -100px) rotate(90deg); }
            50% { transform: translate(-150px, 200px) rotate(180deg); }
            75% { transform: translate(-200px, -150px) rotate(270deg); }
            100% { transform: translate(0, 0) rotate(360deg); }
        }
        @keyframes figure8 {
            0% { transform: translate(0, 0); }
            12.5% { transform: translate(50px, -25px); }
            25% { transform: translate(0, -50px); }
            37.5% { transform: translate(-50px, -25px); }
            50% { transform: translate(0, 0); }
            62.5% { transform: translate(50px, 25px); }
            75% { transform: translate(0, 50px); }
            87.5% { transform: translate(-50px, 25px); }
            100% { transform: translate(0, 0); }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        @media (max-width: 768px) {
            .logo {
                font-size: 2.5rem;
            }
            
            .tagline {
                font-size: 1.2rem;
            }
            
            .description {
                font-size: 1rem;
                padding: 0 20px;
            }
            
            .coming-soon {
                font-size: 1rem;
                padding: 15px 30px;
            }
        }
