:root {
            --primary: #ffdd00; /* Yellow accent from your index.php */
            --glass: rgba(255, 255, 255, 0.1);
            --bg-gradient: linear-gradient(135deg, #2a0845 0%, #6441a5 100%);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        
        body { 
            font-family: 'Inter', sans-serif; 
            line-height: 1.7; 
            color: white; 
            background: var(--bg-gradient); 
            background-attachment: fixed;
            min-height: 100vh;
        }

        .container { max-width: 1100px; margin: 0 auto; padding: 60px 20px; }
        
        /* Typography */
        h1, h2 { color: white; margin-bottom: 20px; font-weight: 800; }
        h1 { font-size: 3rem; text-align: center; margin-bottom: 40px; }
        h1 span { color: var(--primary); }
        
        p { margin-bottom: 25px; color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; }

        /* Glassmorphism Feature Grid */
        .feature-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
            gap: 25px; 
            margin: 50px 0; 
        }

        .feature-card { 
            background: var(--glass); 
            backdrop-filter: blur(15px);
            padding: 35px; 
            border-radius: 24px; 
            border: 1px solid rgba(255, 255, 255, 0.1); 
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
        }

        .feature-card:hover { 
            transform: translateY(-10px); 
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            border-color: var(--primary);
        }

        .feature-card i { 
            font-size: 2.2rem; 
            color: var(--primary); 
            margin-bottom: 20px; 
            display: block;
        }

        .feature-card h3 { 
            font-size: 1.4rem; 
            margin-bottom: 12px; 
            color: white;
        }

        /* Social Section - Matching Index style */
        .social-connect { 
            background: rgba(0, 0, 0, 0.3); 
            color: white; 
            padding: 60px 30px; 
            text-align: center; 
            border-radius: 30px; 
            margin-top: 80px; 
            border: 1px solid rgba(255,255,255,0.05);
        }

        .social-icons { 
            display: flex; 
            justify-content: center; 
            gap: 40px; 
            flex-wrap: wrap; 
            margin-top: 40px; 
        }

        .social-icons a { 
            color: white; 
            font-size: 2.5rem; 
            transition: all 0.3s ease; 
            text-decoration: none; 
            text-align: center;
        }

        .social-icons a:hover { 
            color: var(--primary); 
            transform: scale(1.2);
        }

        .social-label { 
            display: block; 
            font-size: 0.85rem; 
            margin-top: 10px; 
            font-weight: 700; 
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Legal Footer */
        footer { 
            margin-top: 100px; 
            padding: 50px 0; 
            border-top: 1px solid rgba(255,255,255,0.1); 
            text-align: center; 
        }

        .copyright-warning { 
            color: rgba(255, 255, 255, 0.5); 
            max-width: 900px; 
            margin: 25px auto; 
            line-height: 1.6; 
            font-size: 0.8rem; 
            text-align: justify; 
            padding: 0 20px;
        }
        
        .back-link {
            display: inline-block;
            text-decoration: none; 
            color: var(--primary); 
            font-weight: 700;
            margin-bottom: 20px;
            padding: 8px 16px;
            background: rgba(255, 221, 0, 0.1);
            border-radius: 8px;
            transition: 0.3s;
        }

        .back-link:hover {
            background: var(--primary);
            color: black;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            .feature-grid { grid-template-columns: 1fr; }
            .social-icons { gap: 20px; }
            .social-icons a { font-size: 1.8rem; }
        }