 :root {
            --accent: #ffdd00; /* 2026 "Dopamine" yellow accent for CTAs */
            --bg-gradient: linear-gradient(135deg, #2a0845 0%, #6441a5 100%);
            --glass: rgba(255, 255, 255, 0.1);
        }

        body { 
            margin: 0; 
            font-family: 'Inter', sans-serif; 
            background: var(--bg-gradient); 
            color: #fff; 
            overflow-x: hidden;
        }

        /* Glassmorphism Header */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            background: var(--glass);
            backdrop-filter: blur(15px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .logo { font-size: 1.8rem; font-weight: 800; letter-spacing: -1px; }
        nav a { color: #fff; text-decoration: none; margin-left: 20px; font-weight: 600; font-size: 0.9rem; }
        
        /* Kinetic Hero Section */
        .hero {
            padding: 100px 5% 60px;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero span { color: var(--accent); }

        .btn-main {
            background: var(--accent);
            color: #000;
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 800;
            text-decoration: none;
            display: inline-block;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .btn-main:hover { transform: scale(1.1); }

        /* Multi-Functional Feature Grid */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            padding: 60px 5%;
        }

        .card {
            background: var(--glass);
            padding: 40px;
            border-radius: 24px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: 0.4s;
            position: relative;
            overflow: hidden;
        }

        .card:hover { background: rgba(255,255,255,0.15); transform: translateY(-10px); }
        .card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }
        .card h3 { font-size: 1.5rem; margin-bottom: 10px; }
        .card p { opacity: 0.8; font-size: 1rem; line-height: 1.6; }

        /* Creator Hub Section */
        .creator-section {
            background: #fff;
            color: #000;
            padding: 80px 5%;
            text-align: center;
            border-radius: 40px 40px 0 0;
        }

        .creator-content { max-width: 800px; margin: 0 auto; }
        .popularity-badge {
            background: #f0f0f0;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            color: #6441a5;
            text-transform: uppercase;
        }

        /* 2026 Trust Footer */
        footer {
            background: #111;
            padding: 80px 5% 40px;
            font-size: 0.9rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-col h4 { color: #fff; margin-bottom: 20px; }
        .footer-col a { color: #888; text-decoration: none; display: block; margin-bottom: 10px; }
        
        .legal-notice {
            border-top: 1px solid #333;
            padding-top: 40px;
            color: #555;
            text-align: justify;
            font-size: 0.75rem;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            header nav { display: none; } /* Mobile Menu should be added */
            .hero { padding-top: 60px; }
        }






        .footer-col a i {
    width: 20px;
    margin-right: 10px;
    font-size: 16px;
}

/* Brand colors on hover */
.footer-col a:hover .fa-instagram { color: #e1306c; }
.footer-col a:hover .fa-telegram { color: #229ed9; }
.footer-col a:hover .fa-youtube { color: #ff0000; }
