 /* --- 1. MODERN VARIABLES & RESET --- */
        :root {
            --primary: #4f46e5;
            --primary-dark: #4338ca;
            --secondary: #0ea5e9;
            --accent: #f43f5e;
            
            --bg-body: #f8fafc;
            --bg-card: #ffffff;
            --bg-glass: rgba(255, 255, 255, 0.85);
            
            --text-main: #0f172a;
            --text-muted: #64748b;
            --text-light: #94a3b8;
            
            --border: #e2e8f0;
            --radius-md: 16px;
            
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
            --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.15);
            
            /* Footer Specific */
            --footer-bg: #0f172a;
            --footer-text: #cbd5e1;
        }

        html { scroll-behavior: smooth; }
        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        
        body {
            background-color: var(--bg-body);
            color: var(--text-main);
            font-family: 'Plus Jakarta Sans', sans-serif;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* --- ANIMATIONS --- */
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
        @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
        @keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* Animation Utility Classes */
        .animate-up { animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards; }

        /* --- TOP BAR --- */
        .top-announcement-bar {
            background: linear-gradient(90deg, #000000, #000000);
            color: white; padding: 8px; font-size: 0.85rem;
            display: flex; justify-content: center; align-items: center; gap: 15px;
            z-index: 1001; position: relative;
        }
        .top-announcement-btn {
            background: rgba(255,255,255,0.15); color: #fff; padding: 2px 10px;
            border-radius: 4px; text-decoration: none; font-size: 0.75rem; font-weight: 600;
            transition: 0.3s;
        }
        .top-announcement-btn:hover { background: #fff; color: var(--text-main); }

        /* --- MODERN NAVBAR --- */
        .navbar {
            background: var(--bg-glass);
            backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.6);
            position: sticky; top: 0; z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        .nav-container {
            max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
            display: flex; justify-content: space-between; align-items: center;
        }
        .logo { 
            font-size: 1.5rem; font-weight: 800; color: var(--text-main); 
            text-decoration: none; display: flex; align-items: center; gap: 10px; 
            letter-spacing: -0.5px;
        }
        .logo i { 
            color: white; background: var(--primary); padding: 8px; 
            border-radius: 8px; font-size: 1rem; 
        }

        .nav-links {
            display: flex; gap: 2rem; list-style: none; align-items: center;
        }
        .nav-links a {
            text-decoration: none; color: var(--text-muted); font-weight: 600; font-size: 0.95rem;
            position: relative; transition: color 0.3s ease;
        }
        .nav-links a::after {
            content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0;
            background-color: var(--primary); transition: width 0.3s ease;
        }
        .nav-links a:hover { color: var(--primary); }
        .nav-links a:hover::after { width: 100%; }
        
        .nav-cta {
            background: var(--text-main); color: white; padding: 10px 24px;
            border-radius: 50px; font-weight: 600; text-decoration: none;
            font-size: 0.9rem; transition: 0.3s; display: inline-flex; align-items: center; gap: 8px;
        }
        .nav-cta:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3); }

        .hamburger { display: none; cursor: pointer; font-size: 1.3rem; color: var(--text-main); }

        /* --- HERO --- */
        .hero {
            background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.08) 0%, transparent 40%),
                        radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.08) 0%, transparent 40%);
            padding: 5rem 1.5rem 3rem; text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem; font-weight: 800; margin-bottom: 1.2rem; line-height: 1.1;
            letter-spacing: -1px;
            background: linear-gradient(135deg, var(--text-main) 30%, var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .hero p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 650px; margin-left: auto; margin-right: auto; }

        .search-wrapper { position: relative; max-width: 550px; margin: 0 auto 2.5rem; }
        .search-wrapper input {
            width: 100%; padding: 18px 50px 18px 25px; border-radius: 50px; border: 1px solid var(--border);
            font-size: 1rem; box-shadow: var(--shadow-lg); outline: none; transition: 0.3s;
            background: white;
        }
        .search-wrapper input:focus { border-color: var(--primary); box-shadow: var(--shadow-glow); }
        .search-icon { position: absolute; right: 25px; top: 50%; transform: translateY(-50%); color: var(--primary); }

        .download-all-btn {
            background: var(--text-main); color: white; padding: 14px 32px; border-radius: 50px;
            border: none; cursor: pointer; font-weight: 600; transition: 0.3s; font-size: 1rem;
            display: inline-flex; align-items: center; gap: 10px;
        }
        .download-all-btn:hover { background: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-glow); }

        /* --- CATEGORIES & TICKER --- */
        .ticker-wrap { background: #eff6ff; border-radius: 12px; overflow: hidden; white-space: nowrap; padding: 12px 0; margin-bottom: 3rem; border: 1px solid #dbeafe; }
        .ticker { display: inline-block; animation: ticker 40s linear infinite; }
        .ticker-item { display: inline-block; padding: 0 2rem; font-size: 0.9rem; color: var(--primary-dark); font-weight: 600; }

        .category-container {
            display: flex; gap: 12px; overflow-x: auto; padding: 5px 5px 15px; margin-bottom: 1.5rem; justify-content: center;
            scrollbar-width: none; -ms-overflow-style: none;
        }
        .category-container::-webkit-scrollbar { display: none; }
        .cat-btn {
            background: white; border: 1px solid var(--border); padding: 10px 24px; border-radius: 50px;
            font-size: 0.95rem; font-weight: 600; color: var(--text-muted); cursor: pointer; white-space: nowrap; transition: 0.2s;
            box-shadow: var(--shadow-sm);
        }
        .cat-btn.active, .cat-btn:hover { background: var(--primary); color: white; border-color: var(--primary); box-shadow: var(--shadow-md); }

        /* --- GRID SYSTEM --- */
        main, .section-container { max-width: 1280px; margin: 0 auto; padding: 2rem 1.5rem; }
        .grid-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); padding-bottom: 1rem; }
        .grid-header h2 { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.5px; }
        .prompt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }

        /* --- CARD STYLES --- */
        .card {
            background: var(--bg-card); border-radius: var(--radius-md); border: 1px solid var(--border);
            display: flex; flex-direction: column; transition: 0.3s; overflow: hidden;
            animation: fadeInUp 0.5s ease backwards;
            position: relative;
        }
        .card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: #cbd5e1; }
        
        .card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
        .card-meta { display: flex; justify-content: space-between; margin-bottom: 1rem; }
        .category-badge { background: #f1f5f9; color: var(--text-main); padding: 6px 12px; border-radius: 8px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
        .card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; font-weight: 700; line-height: 1.4; }
        .prompt-preview {
            background: #1e293b; color: #94a3b8; padding: 1.2rem; border-radius: 12px; font-size: 0.85rem;
            flex-grow: 1; white-space: pre-wrap; max-height: 140px; overflow: hidden; font-family: 'JetBrains Mono', monospace;
            position: relative; border: 1px solid #334155; line-height: 1.7;
        }
        .prompt-preview::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50px; background: linear-gradient(transparent, #1e293b); }
        
        .card-footer { padding: 1.2rem 1.5rem; background: #f8fafc; border-top: 1px solid var(--border); display: flex; gap: 12px; }
        .btn { flex: 1; padding: 10px; border-radius: 10px; border: none; cursor: pointer; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; transition: 0.2s; }
        .btn-download { background: var(--text-main); color: white; }
        .btn-download:hover { background: var(--primary); }
        .btn-video { background: white; border: 1px solid var(--border); color: #ef4444; }
        .btn-video:hover { background: #fef2f2; border-color: #ef4444; }

        /* --- STATS SECTION --- */
        .trust-section { background: white; padding: 5rem 1.5rem; border-top: 1px solid var(--border); margin-top: 4rem; }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
        .stat-card {
            text-align: center; padding: 2.5rem 1.5rem; background: var(--bg-body);
            border-radius: 24px; border: 1px solid var(--border); transition: 0.3s;
        }
        .stat-card:hover { transform: translateY(-5px); background: #f0fdf4; border-color: #bbf7d0; }
        .stat-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }
        .stat-number { font-size: 2.8rem; font-weight: 800; color: var(--text-main); display: block; line-height: 1.1; margin-bottom: 5px; }
        .stat-label { color: var(--text-muted); font-size: 1rem; font-weight: 600; }

        /* Reviews */
        .reviews-section { background: var(--bg-body); padding: 5rem 0; overflow: hidden; border-top: 1px solid var(--border); }
        .section-title { text-align: center; font-size: 2rem; font-weight: 800; margin-bottom: 3rem; }
        .reviews-slider { display: flex; width: max-content; animation: scroll-left 50s linear infinite; }
        .review-card { width: 350px; background: white; border: 1px solid var(--border); border-radius: 20px; padding: 2rem; margin-right: 2rem; box-shadow: var(--shadow-sm); }
        .user-avatar { width: 45px; height: 45px; background: linear-gradient(135deg, #6366f1, #8b5cf6); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.1rem; }

        /* Load More */
        .load-more-container { text-align: center; margin-top: 4rem; margin-bottom: 2rem; }
        .btn-load-more {
            background: white; color: var(--text-main); border: 1px solid var(--border); padding: 14px 40px;
            border-radius: 50px; font-weight: 600; cursor: pointer; transition: 0.3s; box-shadow: var(--shadow-sm);
            font-size: 1rem;
        }
        .btn-load-more:hover { background: var(--bg-body); transform: translateY(-2px); border-color: var(--text-muted); }

        /* --- MODERN FOOTER --- */
        footer {
            background-color: var(--footer-bg);
            color: var(--footer-text);
            padding: 5rem 1.5rem 2rem;
            margin-top: auto;
        }
        .footer-container {
            max-width: 1280px; margin: 0 auto;
            display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
            margin-bottom: 4rem;
        }
        .footer-col h4 { color: white; font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; }
        .footer-brand p { font-size: 0.95rem; line-height: 1.7; margin-top: 1rem; max-width: 300px; color: #94a3b8; }
        .footer-logo { font-size: 1.5rem; font-weight: 800; color: white; text-decoration: none; display: flex; align-items: center; gap: 10px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { text-decoration: none; color: var(--footer-text); transition: 0.3s; font-size: 0.95rem; }
        .footer-links a:hover { color: white; padding-left: 5px; }
        
        .newsletter-form { position: relative; margin-top: 1rem; }
        .newsletter-form input {
            width: 100%; padding: 12px 15px; border-radius: 8px; border: 1px solid #334155;
            background: #1e293b; color: white; outline: none;
        }
        .newsletter-form button {
            position: absolute; right: 5px; top: 5px; background: var(--primary); color: white;
            border: none; padding: 7px 12px; border-radius: 6px; cursor: pointer; font-size: 0.8rem; font-weight: 600;
        }

        .footer-bottom {
            border-top: 1px solid #334155; padding-top: 2rem;
            display: flex; justify-content: space-between; align-items: center;
            max-width: 1280px; margin: 0 auto;
        }
        .social-links { display: flex; gap: 15px; }
        .social-links a { 
            width: 36px; height: 36px; background: #1e293b; color: white; 
            display: flex; align-items: center; justify-content: center; border-radius: 50%; 
            text-decoration: none; transition: 0.3s;
        }
        .social-links a:hover { background: var(--primary); transform: translateY(-3px); }

        /* Floating Socials */
        .social-float-container { position: fixed; bottom: 30px; right: 30px; z-index: 2000; display: flex; flex-direction: column; gap: 12px; }
        .social-btn {
            width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
            color: white; text-decoration: none; font-size: 1.5rem; box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: 0.3s;
        }
        .social-btn:hover { transform: scale(1.1); }
        .social-wa { background: #25D366; } .social-tg { background: #0088cc; } .social-yt { background: #FF0000; }

        /* Modals */
        .modal-overlay { display: none; position: fixed; inset: 0; background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(8px); z-index: 3000; align-items: center; justify-content: center; }
        .modal-box { background: white; width: 90%; max-width: 420px; border-radius: 24px; padding: 2.5rem; text-align: center; position: relative; animation: scaleIn 0.3s ease; }
        .modal-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
        .ad-btn {
            display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px;
            border-radius: 12px; text-decoration: none; font-weight: 600; border: 2px solid var(--border);
            color: var(--text-main); transition: 0.2s; background: white; cursor: pointer; margin-bottom: 10px;
        }
        .ad-btn:hover { border-color: var(--primary); background: #eff6ff; color: var(--primary); }
        .ad-btn.checked { background: #dcfce7; border-color: #22c55e; color: #15803d; pointer-events: none; }
        .final-download-btn {
            width: 100%; padding: 16px; border-radius: 12px; border: none; font-weight: 700; cursor: pointer;
            margin-top: 15px; display: flex; align-items: center; justify-content: center; gap: 8px;
        }
        .final-download-btn:disabled { background: #cbd5e1; color: #64748b; }
        .final-download-btn:not(:disabled) { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4); }
        .close-modal { position: absolute; top: 20px; right: 20px; font-size: 1.2rem; cursor: pointer; color: #94a3b8; }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        @media (max-width: 1024px) {
            .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
        }

        @media (max-width: 992px) {
            .hero h1 { font-size: 2.5rem; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
        }

        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links {
                display: none; position: fixed; top: 75px; left: 0; right: 0; background: white;
                flex-direction: column; padding: 2rem; border-radius: 0 0 20px 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-bottom: 1px solid var(--border);
                align-items: stretch; gap: 0.5rem;
            }
            .nav-links.active { display: flex; }
            .nav-links li { text-align: center; }
            .nav-links a { display: block; padding: 10px; font-size: 1.1rem; }
            .nav-links a::after { display: none; }
            .nav-cta { justify-content: center; margin-top: 1rem; }

            .hero { padding: 3rem 1rem; }
            .hero h1 { font-size: 2.2rem; }
            
            .category-container { justify-content: flex-start; padding-left: 1.5rem; }

            .prompt-grid { grid-template-columns: 1fr; }
            
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 2rem; }
            .stat-card { padding: 1.5rem 0.5rem; }
            .stat-number { font-size: 2rem; }
            .stat-icon { font-size: 2rem; margin-bottom: 0.5rem; }
            
            .footer-container { grid-template-columns: 1fr; text-align: center; }
            .footer-brand p { margin: 1rem auto; }
            .footer-logo { justify-content: center; }
            .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
            .social-links { justify-content: center; }

            .social-btn { width: 45px; height: 45px; font-size: 1.3rem; }
            .top-announcement-bar { flex-direction: column; text-align: center; }
        }