/* =================================================== */
        /* MODERN RESET & DEĞİŞKENLER */
        /* =================================================== */
        :root {
            --bg-main: #0a0a0a;
            --bg-secondary: #161616;
            --bg-glass: rgba(22, 22, 22, 0.85);
            --primary: #00f2ff; /* Cyber Cyan */
            --primary-dim: rgba(0, 242, 255, 0.15);
            --text-main: #ffffff;
            --text-muted: #a3a3a3;
            --radius-md: 12px;
            --radius-lg: 20px;
            --shadow-glow: 0 0 20px rgba(0, 242, 255, 0.3);
            --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--bg-main);
            color: var(--text-main);
            line-height: 1.5;
            overflow-x: hidden;
            padding-top: 90px; 
        }

        a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }
        ul { list-style: none; }

        /* Kaydırma Çubuğu */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg-main); }
        ::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--primary); }

        /* =================================================== */
        /* HEADER & NAV (GLASSMORPHISM) */
        /* =================================================== */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 10px 4%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--bg-glass);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: var(--transition-smooth);
            height: 90px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: white;
            z-index: 2;
        }

        .logo span { color: var(--primary); text-shadow: 0 0 15px var(--primary); }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-left: auto;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: rgba(255,255,255,0.1);
            border-radius: 50px;
            padding: 8px 20px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: var(--transition-smooth);
        }

        .search-box:focus-within {
            background: black;
            border-color: var(--primary);
            box-shadow: 0 0 15px var(--primary-dim);
        }

        .search-input {
            background: transparent;
            border: none;
            color: white;
            font-size: 0.95rem;
            outline: none;
            width: 150px;
            font-family: inherit;
        }

        .search-btn {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 1.1rem;
        }

        /* =================================================== */
        /* REKLAM ALANLARI (AD WRAPPERS) */
        /* =================================================== */
        .ad-container {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0;
            text-align: center;
            overflow: hidden;
        }

        .ad-native-container {
            margin: 20px 4%;
            background: var(--bg-secondary);
            border-radius: var(--radius-md);
            overflow: hidden;
            padding: 10px;
            border: 1px solid rgba(255,255,255,0.05);
        }

        /* Masaüstü ve Mobil Reklam Gizleme Mantığı */
        .desktop-ad { display: flex; }
        .mobile-ad { display: none; }

        @media (max-width: 768px) {
            .desktop-ad { display: none !important; }
            .mobile-ad { display: flex !important; justify-content: center; width: 100%; }
        }

        /* =================================================== */
        /* KATALOG GRID */
        /* =================================================== */
        .content-section {
            padding: 20px 4% 30px;
            position: relative;
            z-index: 5;
            min-height: 80vh;
        }

        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding-left: 15px;
            border-left: 4px solid var(--primary);
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
        }

        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 25px;
        }

        .cinematic-card {
            display: block;
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            aspect-ratio: 2/3;
            background: var(--bg-secondary);
            transition: var(--transition-smooth);
            border: 1px solid rgba(255,255,255,0.05);
        }

        .cinematic-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .cinematic-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            opacity: 0.6;
            transition: var(--transition-smooth);
        }

        .cinematic-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 0 2px var(--primary);
            z-index: 10;
        }

        .cinematic-card:hover img {
            transform: scale(1.1);
            filter: brightness(0.7);
        }

        .cinematic-card:hover::after { opacity: 0.2; }

        .card-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px 15px;
            z-index: 2;
            transform: translateY(10px);
            transition: var(--transition-smooth);
        }

        .cinematic-card:hover .card-info { transform: translateY(0); }

        .card-title {
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.3;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.8);
        }

        .play-icon-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.5);
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(5px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition-smooth);
            color: white;
            font-size: 1.2rem;
            z-index: 3;
        }

        .cinematic-card:hover .play-icon-overlay {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        /* =================================================== */
        /* FOOTER */
        /* =================================================== */
        .site-footer {
            background: var(--bg-secondary);
            border-top: 1px solid #222;
            padding: 60px 5% 30px;
            margin-top: 50px;
        }

        .notification-box {
            background: linear-gradient(135deg, rgba(0, 242, 255, 0.1) 0%, rgba(0,0,0,0) 100%);
            border: 1px solid rgba(0, 242, 255, 0.2);
            border-radius: var(--radius-lg);
            padding: 30px;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .social-btn {
            display: inline-flex;
            align-items: center;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            color: white;
            transition: transform 0.2s;
        }
        .social-btn:hover { transform: translateY(-2px); }
        .btn-tg { background: #229ED9; }
        .btn-wa { background: #25D366; }

        .footer-bottom {
            text-align: center;
            color: #666;
            font-size: 0.9rem;
            border-top: 1px solid #222;
            padding-top: 30px;
        }

        /* =================================================== */
        /* RESPONSIVE */
        /* =================================================== */
        @media (max-width: 1024px) {
            .catalog-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
        }

        @media (max-width: 768px) {
            body { padding-top: 75px; }
            .main-header { padding: 15px; height: auto; flex-wrap: wrap; }
            .logo { flex-grow: 1; }
            
            .header-actions {
                order: 3;
                width: 100%;
                margin-top: 10px;
                justify-content: space-between;
                gap: 10px;
            }
            
            .search-box { flex-grow: 1; }
            .search-input { width: 100%; }
            
            .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
            .notification-box { flex-direction: column; text-align: center; }
            .social-btn { width: 100%; justify-content: center; }
        }