     :root {
            --gold: #FFD700;
            --gold-light: #FFEA9E;
            --dark: #0F0F0F;
            --text: #FFFFFF;
            --text-light: #CCCCCC;
            --wa-green: #25D366;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { background: #000; color: var(--text); font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; overflow-x: hidden; }

        header {
            background: rgba(10,10,10,0.98);
            padding: 1rem 4%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #333;
            backdrop-filter: blur(15px);
        }

        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
        }

        .logo {
            font-size: 2.6rem;
            font-weight: 900;
            color: var(--gold);
            text-shadow: 0 0 30px rgba(255,215,0,0.7);
            text-decoration: none;
        }

        .logo span { color: white; }

        .menu-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 2.2rem; cursor: pointer; }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: 0.3s;
        }

        .nav-links a:hover { color: var(--gold); }

        .btn-primary {
            background: linear-gradient(45deg, var(--gold), var(--gold-light));
            color: #000;
            padding: 12px 32px;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            box-shadow: 0 0 30px rgba(255,215,0,0.6);
            transition: all 0.4s;
            text-decoration: none;
            cursor: pointer;
        }

        .search-bar {
            position: relative;
            flex: 1;
            max-width: 420px;
            margin: 0 30px;
        }

        .search-bar input {
            width: 100%;
            padding: 16px 60px 16px 20px;
            border-radius: 50px;
            border: 2.5px solid var(--gold);
           
            color: #fff;
            font-size: 1.1rem;
            outline: none;
        }

        .search-bar i {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gold);
            font-size: 1.5rem;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 160px 20px 100px;
            background: linear-gradient(to bottom, #0F0F0F, #000);
        }

        .hero h1 {
            font-size: 6.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--gold), #fff, var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            line-height: 1;
        }

        .hero p {
            font-size: 1.7rem;
            color: var(--text-light);
            margin-bottom: 50px;
        }


        @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

        /* Categories */
        .category-section {
            padding: 60px 30px;
            background: linear-gradient(135deg, #4e99b4, #ff758c, #fcb045);
            border-radius: 28px;
            margin: 50px 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.6);
            text-align: center;
        }

        .category-title {
            font-size: 3rem;
            font-weight: 900;
            color: #000;
            margin-bottom: 15px;
        }

        .category-subtitle {
            font-size: 1.4rem;
            color: #000;
            font-style: italic;
            margin-bottom: 40px;
        }

        .category-grid-buttons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .category-btn {
            background: #ffbf00;
            padding: 25px 15px;
            border-radius: 40px;
            text-align: center;
            font-size: 1.2rem;
            font-weight: 700;
            color: #000;
            border: 5px solid #000;
            box-shadow: 0 8px 0 #000;
            cursor: pointer;
            transition: all 0.3s;
        }

        .category-btn:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 0 #000;
        }

        /* User Profile */
        #userProfile {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #111;
            padding: 10px 18px;
            border-radius: 50px;
            border: 2px solid var(--gold);
        }

        #userProfile img { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--gold); }
        .badge { background: #00ff00; color: #000; padding: 6px 12px; border-radius: 20px; font-size: 12px; font-weight: bold; }

        /* Blur & Popups */
        .content-blurred > *:not(#blurOverlay):not(#premiumPlansOverlay):not(header):not(.whatsapp-float) {
            filter: blur(12px) !important;
            pointer-events: none !important;
            user-select: none !important;
        }

        .blur-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.98);
            backdrop-filter: blur(20px);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }

        .login-popup, .premium-popup {
            background: #0a0a0a;
            border: 3px solid var(--gold);
            border-radius: 24px;
            padding: 50px 40px;
            width: 90%;
            max-width: 480px;
            text-align: center;
            box-shadow: 0 0 80px rgba(255,215,0,0.5);
            animation: popup 0.7s ease-out;
        }

        @keyframes popup { from { transform: scale(0.7); opacity: 0; } to { transform: scale(1); opacity: 1; } }

        .premium-popup {
            background: linear-gradient(145deg, #111, #000);
            border: 3px solid var(--gold);
            border-radius: 30px;
            padding: 50px 30px;
            width: 95%;
            max-width: 1200px;
            text-align: center;
            box-shadow: 0 0 100px rgba(255,215,0,0.4);
            position: relative;
            overflow: hidden;
        }

        .premium-popup::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
            pointer-events: none;
        }

        @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

        .premium-popup h2 {
            color: var(--gold);
            font-size: 3rem;
            margin-bottom: 15px;
            text-shadow: 0 0 20px rgba(255,215,0,0.5);
        }

        .premium-popup > p {
            font-size: 1.3rem;
            color: #aaa;
            margin-bottom: 40px;
        }

        .plans-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .plan-card {
            background: linear-gradient(145deg, #1a1a1a, #111);
            border-radius: 24px;
            padding: 35px 25px;
            text-align: center;
            border: 2px solid #333;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .plan-card:hover {
            transform: translateY(-15px);
            border-color: var(--gold);
            box-shadow: 0 20px 50px rgba(255,215,0,0.3);
        }

        .plan-card.featured {
            border: 3px solid var(--gold) !important;
            transform: scale(1.08);
            background: linear-gradient(145deg, #222, #111);
            box-shadow: 0 25px 60px rgba(255,215,0,0.4);
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: #ff3b3b;
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(255,59,59,0.5);
        }

        .plan-card h3 {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 15px;
        }

        .price {
            font-size: 3.5rem;
            font-weight: 900;
            color: white;
            margin: 20px 0;
        }

        .price small {
            font-size: 1rem;
            color: #aaa;
        }

        .features {
            list-style: none;
            margin: 25px 0;
            text-align: left;
        }

        .features li {
            padding: 12px 0;
            color: #ddd;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .features li i {
            color: #00ff00;
            font-size: 1.3rem;
        }

        .btn-whatsapp {
            background: var(--wa-green);
            color: white;
            padding: 18px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            cursor: pointer;
            width: 100%;
            margin-top: 20px;
            transition: 0.3s;
            box-shadow: 0 8px 25px rgba(37,211,102,0.4);
        }

        .btn-whatsapp:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(37,211,102,0.6);
        }

        /* Other styles remain same */
        .content-blurred > *:not(#blurOverlay):not(#premiumPlansOverlay):not(header):not(.whatsapp-float) {
            filter: blur(12px) !important;
            pointer-events: none !important;
            user-select: none !important;
        }

        .blur-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.98);
            backdrop-filter: blur(20px);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .hidden { display: none !important; }

        @media (max-width: 768px) {
            .hero h1 { font-size: 3.8rem; }
            .premium-popup h2 { font-size: 2.4rem; }
            .price { font-size: 2.8rem; }
            .plan-card.featured { transform: scale(1.02); }
        }
        .hidden { display: none !important; }

        @media (max-width: 992px) {
            .menu-toggle { display: block; }
            .nav-links { position: fixed; top: 0; left: -100%; width: 100%; height: 100vh; background: rgba(0,0,0,0.99); flex-direction: column; justify-content: center; gap: 50px; font-size: 2rem; transition: 0.4s; z-index: 999; backdrop-filter: blur(20px); }
            .nav-links.active { left: 0; }
            .search-bar { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 92%; margin: 20px 0; }
            .hero h1 { font-size: 4.5rem; }
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 3.5rem; }
            .hero p { font-size: 1.4rem; }
            .category-title { font-size: 2.4rem; }
        }
    