@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
            background-size: 400% 400%;
            animation: gradient 15s ease infinite;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
            color: white;
            text-align: center;
            overflow-x: hidden;
            padding: 20px;
        }
        
        @keyframes gradient {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        .container {
            max-width: 800px;
            width: 100%;
            margin: 0 auto;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
        }
        
        .logo-container {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 10px;
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
                transform: scale(1);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
                transform: scale(1.05);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
                transform: scale(1);
            }
        }
        
        .logo-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .placeholder-logo {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, #f3ec78, #af4261);
            font-size: 24px;
            font-weight: bold;
        }
        
        .title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 10px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
            animation: textColor 5s infinite;
        }
        
        @keyframes textColor {
            0% { color: #ffdd00; }
            25% { color: #ff5e7e; }
            50% { color: #00ffcc; }
            75% { color: #00ccff; }
            100% { color: #ffdd00; }
        }
        
        .tagline {
            font-size: 18px;
            margin-bottom: 30px;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
            max-width: 80%;
            line-height: 1.5;
        }
        
        .join-button {
            padding: 16px 40px;
            font-size: 22px;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            background: linear-gradient(45deg, #ff512f, #dd2476);
            color: white;
            box-shadow: 0 8px 25px rgba(221, 36, 118, 0.5);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: bounce 3s infinite;
            text-decoration: none;
            display: inline-block;
        }
        
        .join-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(221, 36, 118, 0.6);
        }
        
        .join-button:active {
            transform: translateY(1px);
        }
        
        .join-button::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
        }
        
        .join-button:hover::before {
            left: 100%;
            animation: shine 1.5s infinite;
        }
        
        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }
        
        .countdown-container {
            margin-top: 30px;
            margin-bottom: 20px;
        }
        
        .countdown-text {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #ffdd00;
        }
        
        .countdown {
            font-size: 28px;
            font-weight: 700;
            margin-top: 5px;
            background: rgba(0, 0, 0, 0.3);
            padding: 10px 25px;
            border-radius: 50px;
            display: inline-block;
            animation: pulse-light 2s infinite;
        }
        
        @keyframes pulse-light {
            0% { box-shadow: 0 0 0 0 rgba(255, 221, 0, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(255, 221, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 221, 0, 0); }
        }
        
        .features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        
        .feature {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 15px;
            flex: 1 1 200px;
            max-width: 250px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .feature:hover {
            transform: translateY(-5px);
        }
        
        .feature h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .feature p {
            font-size: 14px;
            opacity: 0.9;
        }
        
        .footer {
            margin-top: 40px;
            font-size: 14px;
            opacity: 0.8;
            padding: 10px;
        }
        
        .footer a {
            color: #ffdd00;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        
        /* Floating elements animation */
        .floating-element {
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            z-index: -1;
            animation: float 15s infinite linear;
        }
        
        .floating-element:nth-child(1) {
            top: 10%;
            left: 10%;
            width: 80px;
            height: 80px;
            animation-duration: 25s;
            background: radial-gradient(circle at center, rgba(255, 0, 128, 0.2), rgba(255, 0, 128, 0));
        }
        
        .floating-element:nth-child(2) {
            top: 20%;
            right: 10%;
            width: 120px;
            height: 120px;
            animation-duration: 30s;
            animation-delay: 2s;
            background: radial-gradient(circle at center, rgba(0, 204, 255, 0.2), rgba(0, 204, 255, 0));
        }
        
        .floating-element:nth-child(3) {
            bottom: 30%;
            left: 15%;
            width: 100px;
            height: 100px;
            animation-duration: 22s;
            animation-delay: 5s;
            background: radial-gradient(circle at center, rgba(255, 221, 0, 0.2), rgba(255, 221, 0, 0));
        }
        
        .floating-element:nth-child(4) {
            bottom: 10%;
            right: 20%;
            width: 70px;
            height: 70px;
            animation-duration: 18s;
            animation-delay: 3s;
            background: radial-gradient(circle at center, rgba(102, 255, 102, 0.2), rgba(102, 255, 102, 0));
        }
        
        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(100px, 50px) rotate(90deg);
            }
            50% {
                transform: translate(50px, 100px) rotate(180deg);
            }
            75% {
                transform: translate(-50px, 50px) rotate(270deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .container {
                padding: 20px 10px;
            }
            
            .title {
                font-size: 28px;
            }
            
            .tagline {
                font-size: 16px;
                max-width: 95%;
            }
            
            .logo-container {
                width: 120px;
                height: 120px;
            }
            
            .join-button {
                padding: 14px 30px;
                font-size: 25px;
            }
            
            .countdown {
                font-size: 24px;
                padding: 8px 20px;
            }
            
            .countdown-text {
                font-size: 18px;
            }
        }