* {
    box-sizing: border-box;
}

:root {
    --bg-color: #050505; /* Daha derin, simsiyah bir gece gökyüzü */
    --text-main: #ffffff;
    --text-muted: #8b8e98;
    --neon-pink: #ff0000;
    --neon-cyan: #800000;
    --card-bg: #0a0a0a;

    /* Aurora Işıkları Renkleri (Mute/Yumuşak tonlar) */
    --aurora-1: rgba(128, 0, 0, 0.15); /* Neon Turkuazın şeffaf hali */
    --aurora-2: rgba(255, 0, 0, 0.15); /* Mor */
    --aurora-3: rgba(34, 177, 76, 0.10);  /* Hafif Yeşil */
    --aurora-4: rgba(255, 0, 0, 0.10);  /* Neon Pembenin şeffaf hali */
}

body {
    background-color: var(--bg-color);
    background-image: linear-gradient(rgba(5, 5, 5, 0.75), rgba(5, 5, 5, 0.75)), url('/images/bg-geometric.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-main);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* =========================================
   HAREKETLİ AURORA ARKA PLANI (CSS) - İPTAL EDİLDİ
   ========================================= */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -20;
    background: none;
}

/* Aurora Hareket Animasyonu - İptal */
@keyframes auroraMovement {
}

/* =========================================
   SİNEMATİK ANA BÖLÜM (HERO CINEMATIC)
   ========================================= */
.hero-cinematic {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 180px 20px 80px 20px;
    overflow: hidden;
}

/* Arkadaki Parallax Kırmızı Neon Yansımalar */
.cinematic-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    animation: pulseGlow 6s ease-in-out infinite alternate;
}
.cinematic-glow-2 {
    position: absolute;
    bottom: -10%;
    left: 20%;
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(128, 0, 0, 0.2) 0%, transparent 60%);
    filter: blur(100px);
    z-index: -1;
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.cinematic-content {
    max-width: 900px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cinematic-badge {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff3333;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff0000;
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.cinematic-logo-wrapper {
    margin-bottom: 40px;
    perspective: 1000px;
}

.cinematic-logo {
    width: 100%;
    max-width: 500px;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(255, 0, 0, 0.5)) drop-shadow(0 10px 20px rgba(0,0,0,0.8));
    animation: floatLogo 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0) rotateX(2deg); filter: drop-shadow(0 0 40px rgba(255, 0, 0, 0.4)) drop-shadow(0 10px 20px rgba(0,0,0,0.8)); }
    50% { transform: translateY(-15px) rotateX(-2deg); filter: drop-shadow(0 0 60px rgba(255, 0, 0, 0.7)) drop-shadow(0 25px 25px rgba(0,0,0,0.6)); }
}

.cinematic-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 25px 0;
    letter-spacing: -1px;
    color: #ffffff;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.text-gradient {
    background: linear-gradient(90deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-red {
    background: linear-gradient(90deg, #ff0000, #800000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.cinematic-desc {
    font-size: 1.2rem;
    color: #a0a0a0;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 0 45px 0;
}

.cinematic-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
}

.cinematic-btn-primary {
    background: linear-gradient(45deg, #cc0000, #ff0000);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
    transition: 0.4s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cinematic-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6);
}

.cinematic-btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: 0.4s;
}

.cinematic-btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.cinematic-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    z-index: 2;
    flex-wrap: wrap;
}

.cinematic-feature-card {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 0, 0, 0.3);
    padding: 25px;
    border-radius: 16px;
    flex: 1;
    min-width: 200px;
    text-align: left;
    transition: 0.4s;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.cinematic-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 20px rgba(255, 0, 0, 0.2);
}

.cinematic-feature-card h3 {
    margin: 0 0 5px 0;
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 900;
}

.cinematic-feature-card p {
    margin: 0;
    color: #8b8e98;
    font-size: 0.9rem;
    font-weight: 500;
}
/* =========================================
   HEADER (MENÜ) TASARIMI
   ========================================= */
.main-header {
    width: 100%;
    padding: 20px 20px 0 20px; /* Üstten boşluk */
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 15px 30px;
    border-radius: 50px; /* Oval şekil */
    position: relative;
    z-index: 10; /* Menünün üstte kalmasını sağlar */
}

/* Neon Gradient Kenarlık Efekti */
.header-container::before {
    content: "";
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px; /* Kenarlık kalınlığı */
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    border-radius: 52px;
    z-index: -2;
}

/* İç Kısım Siyah Arka Plan (Kenarlığın içini doldurmak için) */
.header-container::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--bg-color); /* Sitenin arka plan rengi */
    border-radius: 50px;
    z-index: -1;
}

/* Logo Stili */
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #a8b0d3; /* Açık lila/gri tonu */
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Menü Linkleri */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--neon-pink);
}

/* Aktif (Seçili) Link Alt Çizgisi */
.nav-links a.active {
    font-weight: 700;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 3px;
    background-color: var(--neon-pink);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--neon-pink);
}

/* Yayıncı Paneli Butonu */
.btn-panel {
    /* Görseldeki gibi turkuazdan mora geçiş */
    background: linear-gradient(90deg, #800000, #cc0000, #ff0000);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(128, 0, 0, 0.3);
}

.btn-panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}
/* HAREKETLİ ARKA PLAN (PARTICLES) */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent !important; /* CSS gradientini görmemiz için */
    z-index: -10;
}
/* =========================================
   ARKAPLAN (BACKGROUND WRAPPER) EFEKTLERİ
   ========================================= */
#background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -15; /* Her şeyin ve yıldızların en arkasında kalması için */
    background: transparent;
    pointer-events: none; /* Tıklamaları engellemesin diye */
}

/* Bulanık Işıklar (Glow) */
.glow-effect {
    position: absolute;
    opacity: 0.4;
    pointer-events: none;
    display: none;
}
.glow-pink {
    display: none;
}
.glow-cyan {
    display: none;
}

/* SVG Kıvrımlı Çizgiler */
.neon-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    mix-blend-mode: screen;
}
.lines-top-left { top: 0; left: 0; transform: scaleY(-1); }
.lines-bottom-right { bottom: 0; right: 0; transform: rotate(180deg); }
.neon-path { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.stroke-pink { stroke: url(#gradPink); filter: drop-shadow(0 0 2px rgba(255, 0, 128, 0.4)); }
.stroke-cyan { stroke: url(#gradCyan); filter: drop-shadow(0 0 2px rgba(255, 51, 51, 0.4)); }

/* Çapraz Düz Çizgiler (Lazer) */
/* =========================================
   ÇAPRAZ NEON ÇİZGİLER (LAZER EFEKTİ) - GÜNCELLENDİ
   ========================================= */

.cross-line {
    position: absolute;
    bottom: -5%; /* Çizgilerin tam uç uca değdiği nokta sayfanın en dibi olacak */
    left: -50%; /* Çizgiyi iyice geriye çektik ki ekranı tam kaplasın */
    width: 200%; /* Genişliği artırdık, böylece köşelere kadar uzanacak */
    height: 2px;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.7;
}

/* Soldan aşağı inen Kırmızı Çizgi */
.line-pink-left {
    background: linear-gradient(90deg, transparent 10%, #ff0000 50%, transparent 90%);
    transform: rotate(25deg);
    box-shadow: 0 0 15px #ff0000, 0 0 30px #ff0000;
}

/* Sağdan aşağı inen Kırmızı Çizgi */
.line-blue-right {
    background: linear-gradient(90deg, transparent 10%, #800000 50%, transparent 90%);
    transform: rotate(-25deg);
    box-shadow: 0 0 15px #800000, 0 0 30px #800000;
}
/* =========================================
   GERÇEKÇİ iPHONE KASASI & SÜZÜLME EFEKTİ
   ========================================= */
.floating-phone {
    animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.iphone-frame {
    width: 320px;
    height: 650px;
    background: #1e1e1e; /* Titanyum Kasa Rengi */
    border-radius: 55px;
    position: relative;
    z-index: 10;
    padding: 12px; /* Ekran Çerçevesi (Bezel) */
    box-shadow:
        inset 0 0 0 2px #444,
        inset 0 0 0 6px #000,
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 51, 51, 0.15),
        -20px 20px 40px rgba(255, 0, 0, 0.1);
}

/* Fiziksel Tuşlar */
.btn-side { position: absolute; background: #2a2a2a; width: 4px; border-radius: 4px; }
.btn-silent { top: 100px; left: -4px; height: 30px; }
.btn-volume-up { top: 150px; left: -4px; height: 60px; }
.btn-volume-down { top: 220px; left: -4px; height: 60px; }
.btn-power { top: 180px; right: -4px; height: 90px; }

/* Ekranın İçi */
.iphone-screen {
    width: 100%; height: 100%;
    background: #050505; /* Siyah Ekran Zemin */
    border-radius: 44px;
    overflow: hidden;
    position: relative;
}

.dynamic-island {
    position: absolute;
    top: 10px; left: 50%;
    transform: translateX(-50%);
    width: 90px; height: 28px;
    background: black;
    border-radius: 20px;
    z-index: 100;
    display: flex; align-items: center;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}

.camera-lens {
    width: 12px; height: 12px;
    background: #1a1b26;
    border-radius: 50%;
    margin-left: 65px;
    box-shadow: inset 0 0 4px rgba(255,255,255,0.2);
}

.home-indicator {
    position: absolute;
    bottom: 8px; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 5px;
    background: white;
    border-radius: 10px;
    z-index: 100;
}

/* =========================================
   LEXREWARDS UYGULAMA İÇİ TASARIMI
   ========================================= */
.gamification-screen {
    padding: 50px 20px 30px 20px; /* Çentiğin altında kalmasın diye üstten boşluk */
    background: linear-gradient(160deg, #100a26 0%, #000 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-header { color: white; font-size: 0.9rem; margin-bottom: 5px; }

/* Puan Kartı */
.points-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 20px;
    position: relative;
}

.level-badge {
    position: absolute; top: 15px; right: 15px;
    background: #ffb703; color: #000;
    padding: 4px 10px; border-radius: 12px;
    font-size: 0.75rem; font-weight: bold;
}

.points-info .label { font-size: 0.8rem; color: #d8b4fe; }
.points-info .amount { font-size: 2.2rem; font-weight: 800; color: white; margin: 5px 0; }
.points-info .currency { font-size: 1rem; color: #a78bfa; }

.xp-track { width: 100%; height: 6px; background: rgba(255,255,255,0.1); border-radius: 10px; }
.xp-fill { width: 75%; height: 100%; background: linear-gradient(90deg, #ff3333, #7c3aed); border-radius: 10px; }

/* Görev Kutusu */
.active-event-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    position: relative;
}

.event-tag { font-size: 0.65rem; color: #ff0055; font-weight: bold; background: rgba(255, 0, 85, 0.1); padding: 3px 8px; border-radius: 4px; display: inline-block; margin-bottom: 8px;}
.event-title { font-size: 1rem; color: white; font-weight: 600; }

.progress-circle {
    position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
    width: 45px; height: 45px; border-radius: 50%;
    border: 3px solid #ff3333;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.8rem; font-weight: bold;
}

/* Mağaza */
.rewards-section { margin-top: 5px; }
.section-title { font-size: 0.85rem; color: #e2e8f0; margin-bottom: 10px; }

.rewards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.reward-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px; padding: 15px; text-align: center;
}
.item-img { font-size: 2rem; margin-bottom: 5px; }
.item-info h5 { color: white; font-size: 0.85rem; margin: 0; }
.item-info .price { font-size: 0.75rem; font-weight: bold; }
/* =========================================
   ARA SIRA GEÇEN KAYAN YILDIZLAR
   ========================================= */

.shooting-stars-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -10; /* Lazerlerin ve içeriğin arkasında, uzay boşluğunda */
    pointer-events: none;
    overflow: hidden; /* Ekrandan çıkan yıldızlar sayfayı kaydırmasın */
}

/* Yıldızın Temel Şekli ve Kuyruğu */
.shooting-star {
    position: absolute;
    height: 2px;
    background: linear-gradient(-45deg, rgba(255,255,255,0), #ffffff, transparent);
    border-radius: 999px;
    filter: drop-shadow(0 0 6px #ff3333); /* Turkuaz bir parlama */
    animation: shootingAnim linear infinite;
    opacity: 0; /* Başlangıçta görünmez */
}

/* Yıldızın Parlak Kafası (Uç kısmı) */
.shooting-star::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 4px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffffff, 0 0 20px #ff3333;
}

/* Kayma Animasyonu (Sağ üstten sol alta çapraz gidiş) */
@keyframes shootingAnim {
    0% {
        transform: translateX(0) translateY(0) rotate(-35deg);
        opacity: 1;
        width: 0; /* Başlarken kuyruk kısa */
    }
    10% {
        width: 150px; /* Kayarken kuyruk uzar */
    }
    20% {
        transform: translateX(-1500px) translateY(1000px) rotate(-35deg);
        opacity: 0; /* Ekrandan çıkmadan önce silinir */
    }
    100% {
        /* Geri kalan %80'lik kısımda hiçbir şey yapmaz, bu da "ara sıra" çıkmasını sağlar */
        transform: translateX(-1500px) translateY(1000px) rotate(-35deg);
        opacity: 0;
    }
}

/* Yıldızların Konumları, Süreleri ve Gecikmeleri (Tamamen Rastgele Hissi Verir) */

/* 1. Yıldız: Sağ üstten başlar, 6 saniyede bir çıkar */
.star-1 {
    top: 10%;
    right: -10%;
    animation-duration: 6s;
    animation-delay: 2s;
}

/* 2. Yıldız: Daha yukarıdan ve ortadan başlar, 9 saniyede bir çıkar */
.star-2 {
    top: -20%;
    right: 30%;
    animation-duration: 9s;
    animation-delay: 5s;
}

/* 3. Yıldız: Ekranın sağından başlar, 14 saniyede bir nadiren çıkar */
.star-3 {
    top: 40%;
    right: -5%;
    animation-duration: 14s;
    animation-delay: 8s;
}
/* =========================================
   BAŞARI HİKAYELERİ & NEON YORUM KARTLARI
   ========================================= */

.reviews-section {
    padding: 100px 20px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Başlık Tasarımı */
.reviews-header {
    text-align: center;
    margin-bottom: 20px;
}

.badge-small {
    display: inline-block;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    color: #ff0000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.section-title {
    font-size: 2.8rem;
    color: white;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

/* --- KARTLARIN DÜZENİ --- */
.custom-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

.custom-box {
    position: relative;
    width: 320px;
    min-height: 420px; /* Uzun yazılar için esnek yükseklik */
    height: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin: 30px 20px;
    transition: 0.5s;
}

/* Arkadaki Eğik Neon Şekil (İptal) */
.custom-box::before, .custom-box::after { display: none; }
.custom-box:hover:before, .custom-box:hover:after { display: none; }
.custom-box.color-1::before, .custom-box.color-1::after { display: none; }
.custom-box.color-2::before, .custom-box.color-2::after { display: none; }

/* Uçuşan Kareler Animasyonu (İptal) */
.custom-box span { display: none; }

/* --- KARTIN İÇERİĞİ (KADİFE BORDO) --- */
.custom-content {
    position: relative;
    padding: 40px 30px;
    background: linear-gradient(135deg, #2a0000 0%, #0a0000 100%);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.9), inset 0 0 50px rgba(100, 0, 0, 0.5);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 50, 50, 0.5);
    border-radius: 12px;
    z-index: 1;
    transition: all 0.4s ease;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    height: auto;
    min-height: 100%;
}

.custom-box:hover .custom-content {
    transform: translateY(-10px);
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 1), 0 0 25px rgba(255, 0, 0, 0.3), inset 0 0 60px rgba(150, 0, 0, 0.6);
    border-color: rgba(255, 0, 0, 0.6);
}

/* Yuvarlak İsim Baş Harfi Avatarı */
.avatar-circle {
    width: 65px; height: 65px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.3rem;
    margin-bottom: 25px;
    border: 2px solid rgba(255, 50, 50, 0.8);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    background: #1a0000 !important;
}

.custom-content h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0 0 15px 0;
    font-weight: 800;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.custom-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 25px;
    font-weight: 400;
    flex-grow: 1;
}

/* Yıldızlar */
.stars {
    color: #ffd700;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}
/* =========================================
   %100 MOBİL UYUM (RESPONSIVE) AYARLARI
   Tüm kodların EN ALTINDA olmalıdır!
   ========================================= */

@media (max-width: 992px) {
    /* 1. HERO SİNEMATİK MOBİL AYARI */
    .hero-cinematic {
        padding: 140px 15px 50px 15px;
    }

    .cinematic-title {
        font-size: 2.2rem;
    }

    .cinematic-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cinematic-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .cinematic-btn-primary, .cinematic-btn-glass {
        width: 100%;
    }

    .cinematic-logo {
        max-width: 300px;
    }

    .cinematic-features {
        flex-direction: column;
    }


    /* 2. NEON YORUM KARTLARI MOBİL AYARI */
    .section-title {
        font-size: 2rem; /* "Yayıncılarımız Ne Diyor?" başlığını küçült */
    }

    .custom-box {
        width: 100%; /* Ekranı tam kapla */
        max-width: 320px; /* Ama 320px'i geçme */
        margin: 20px 0; /* Sağdan soldan boşlukları sıfırla ki taşmasın */
    }

    /* Mobilde Hover (Dokunma) Efekti Sınırlaması */
    /* Kart sola kayarsa ekran dışına taşar, bu yüzden mobilde kaymayı iptal ediyoruz */
    .custom-box:hover .custom-content {
        left: 0;
        padding: 30px 20px;
    }

    /* Arkadaki neon şeklin mobilde dışarı taşmasını engelle */
    .custom-box:hover:before,
    .custom-box:hover:after {
        left: 10px;
        width: calc(100% - 20px);
    }

    /* Uçuşan kareler mobilde ekran dışına uçup scroll bar çıkarmasın */
    .custom-box:hover span::before { left: 10px; }
    .custom-box:hover span::after { right: 10px; }
}

@media (max-width: 480px) {
    /* Çok küçük ekranlar (iPhone SE vb.) için ekstra küçültme */
    .hero-content h1 {
        font-size: 2rem;
    }

    .floating-phone {
        transform: scale(0.75);
        margin-top: -30px;
    }

    .features-grid {
        grid-template-columns: 1fr; /* Özellik kartlarını tekli alt alta diz */
    }
}
/* --- MOBİL UYUMLU HEADER & HAMBURGER --- */

/* Hamburger İkon Tasarımı */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

/* Hamburger Açıkken Çarpı (X) Olma Animasyonu */
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: #ff0055; }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: #ff0055; }

/* Mobil Menü Konteyneri */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Başlangıçta ekranın sağında gizli */
    width: 100%;
    height: 100vh;
    background: rgba(5, 7, 20, 0.95); /* Buzlu cam efekti */
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    z-index: 1050;
}

.mobile-menu.active {
    right: 0; /* Menüyü ekrana sürükle */
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.mobile-menu nav a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: 0.3s;
}

.mobile-menu nav a:hover {
    color: #ff3333;
    text-shadow: 0 0 15px #ff3333;
}

.mobile-btn {
    margin-top: 10px;
    padding: 12px 35px;
    background: linear-gradient(90deg, #800000, #ff0080);
    border-radius: 30px;
    font-size: 1.1rem !important;
}

/* 992px altındaki cihazlar için tetikleyici */
@media (max-width: 992px) {
    .nav-links, .btn-creator {
        display: none; /* Masaüstü öğelerini gizle */
    }

    .hamburger {
        display: flex; /* Hamburgeri göster */
    }

    .header-container {
        padding: 0 15px; /* Mobilde daralt */
    }
}
/* Başlık Tasarımı (Telefonu bozmaması için düzeltildi) */
.reviews-header .section-title {
    font-size: 2.8rem;
    color: white;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}
.header-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    border-radius: 50px;
    background: rgba(5, 7, 20, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);

    /* İŞTE BURAYI DEĞİŞTİRİYORUZ (Menüden yüksek olmalı) */
    z-index: 1200;
}
/* --- 1. HEADER DIŞ KAPLAYICI --- */
.lex-header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0; /* Solu ve sağı sıfırlayarak ekranı tam kaplamasını garantiliyoruz */
    width: 100%;
    z-index: 1200; /* Menünün her zaman en üstte kalması için */
    display: flex;
    justify-content: center; /* İçindeki her şeyi tam ortaya iter */
    pointer-events: none; /* Header'ın yanındaki boşluklara tıklanabilmesi için */
}

/* --- 2. HEADER KUTUSU (Buzlu Cam & Neon Çerçeve) --- */
.header-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; /* TAM ORTALAMAYI SAĞLAYAN SİHİRLİ KOD BURASI */
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    border-radius: 50px;
    background: rgba(5, 7, 20, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    pointer-events: auto; /* Sadece menü kutusunun tıklanabilir olmasını sağlar */
}
/* --- LOGO VE LİNK DÜZELTMESİ --- */
.logo {
    text-decoration: none !important; /* O gıcık alt çizgiyi kökünden yok eder */
    display: flex;
    align-items: center;
}

/* --- LOGO YAZISI (PEMBEDEN MAVİYE GRADİENT) --- */
.logo-text {
    font-family: 'Orbitron', sans-serif; /* Ya da senin kullandığın font */
    font-weight: 900;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 2px;

    /* Soldan sağa: Pembe -> Açık Mavi Geçişi */
    background: linear-gradient(90deg, #ff0080, #ff3333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* İçini boşaltıp arkaplandaki rengi yazının içine alırız */

    display: flex;
    align-items: center;
}

/* Önceden ayrı ayrı verdiğimiz renkleri iptal ediyoruz ki bütünsel gradient çalışsın */
.logo-text .lex,
.logo-text .ajans {
    color: inherit;
}
/* --- YAYINCI PANELİ BUTONU --- */
.btn-creator {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none !important; /* Alt çizgiyi engeller */
    color: white !important; /* Renginin mora dönmesini engeller */
    font-weight: 700;
    font-size: 0.95rem;

    /* Turkuazdan Pembeye Gradient Kasa */
    background: linear-gradient(90deg, #800000, #ff0080);
    box-shadow: 0 0 15px rgba(128, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-creator:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.6); /* Hover olunca pembe parlar */
    background: linear-gradient(90deg, #ff0080, #800000); /* Hover olunca renkler yer değiştirir */
}
@media (max-width: 992px) {
    /* Masaüstü Yayıncı Paneli butonunu mobilde KESİNLİKLE gizle */
    .btn-creator {
        display: none !important;
    }

    /* Nav linklerini gizlediğimizden emin olalım */
    .nav-links {
        display: none !important;
    }

    /* Hamburger menüyü sağa yasla ve düzelt */
    .header-action {
        margin-left: auto; /* İkonu en sağa iter */
        display: flex;
        align-items: center;
    }

    /* Header kutusunu mobilde biraz daraltıp şıklaştıralım */
    .header-container {
        height: 60px !important;
        padding: 0 25px;
        width: 94% !important; /* Yanlardan boşluk bırakarak kavisleri korur */
        margin: 0 auto;
        border-radius: 40px;
    }
    
    .logo-text {
        font-size: 20px; /* Mobilde biraz küçültelim */
    }
    
    .hamburger {
        margin-right: -5px; /* İkonun kavise çarpmasını engeller */
    }
}
/* =========================================
   İŞ ORTAKLARIMIZ (YENİ GRID TASARIMI)
   ========================================= */

.partners-section {
    padding: 100px 20px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partners-header { margin-bottom: 50px; text-align: center; }

.partners-title {
    font-size: 1.5rem;
    color: #ff0000;
    font-weight: 800;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    border-bottom: 2px solid rgba(255, 0, 0, 0.3);
    padding-bottom: 10px;
    display: inline-block;
}

.partners-grid-new {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
}

.partner-item-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: 0.4s;
    opacity: 0.7;
    cursor: pointer;
}

.partner-item-new:hover {
    opacity: 1;
    transform: translateY(-10px);
}

.partner-logo-new {
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: grayscale(100%) brightness(150%);
    transition: 0.4s;
}

.partner-item-new:hover .partner-logo-new {
    filter: grayscale(0%) brightness(100%) drop-shadow(0 0 15px rgba(255, 0, 0, 0.5));
}

.lb-logo-new {
    font-size: 3.5rem;
    color: #475569;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    transition: 0.4s;
}

.partner-item-new:hover .lb-logo-new {
    color: white;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

.partner-name-new {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.4s;
}

.partner-item-new:hover .partner-name-new {
    color: white;
}

/* =========================================
   VIP BAŞVURU FORMU (TEK SÜTUN CAM PANEL)
   ========================================= */

.application-section-vip {
    padding: 120px 20px;
    position: relative;
    z-index: 10;
}

.vip-container {
    max-width: 900px;
    margin: 0 auto;
}

.vip-header { text-align: center; margin-bottom: 40px; }

.vip-badge {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 8px 20px; border-radius: 4px;
    font-size: 0.85rem; letter-spacing: 3px;
    color: #ff0000; margin-bottom: 20px;
    display: inline-block;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

.vip-title { font-size: 3.5rem; color: white; margin-bottom: 15px; font-weight: 900; line-height: 1.1; }
.vip-subtitle { color: #94a3b8; font-size: 1.1rem; max-width: 700px; margin: 0 auto; }

.vip-form-wrapper {
    background: rgba(10, 0, 0, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 50, 50, 0.4);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9), inset 0 0 50px rgba(100, 0, 0, 0.3);
}

.vip-requirements-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.vip-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.shield-tag { background: rgba(255, 0, 0, 0.1); border-color: rgba(255, 0, 0, 0.3); color: #ff0000; }

.vip-input-row {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
}

.vip-input-group {
    position: relative;
    flex: 1;
}

.single-line { margin-bottom: 35px; }

.vip-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 0;
    color: white;
    font-size: 1.05rem;
    outline: none;
    transition: 0.3s;
    font-family: inherit;
}

/* Chrome/Safari Otomatik Tamamlama Sarı Arkaplanı Engelleme */
.vip-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px rgba(10, 0, 0, 0.7) inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

.vip-label {
    position: absolute;
    top: 15px;
    left: 0;
    color: #64748b;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.05rem;
}

.vip-input:focus ~ .vip-label,
.vip-input:not(:placeholder-shown) ~ .vip-label {
    top: -15px;
    font-size: 0.75rem;
    color: #ff0000;
    letter-spacing: 1px;
}

.vip-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff0000;
    transition: 0.4s;
    box-shadow: 0 0 10px #ff0000;
}

.vip-input:focus ~ .vip-border {
    width: 100%;
}

.phone-group-vip { display: flex; align-items: flex-end; gap: 10px; }
.vip-country-code {
    padding: 12px 0; border-bottom: 1px solid rgba(255,0,0,0.4);
    color: #ff0000; font-weight: 700; font-size: 1.05rem;
}

.select-group select {
    color: #cbd5e1;
    cursor: pointer;
}
.select-group select option { background: #0a0a0a; color: white; }

.vip-auto-info {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.vip-avatar-preview {
    width: 45px; height: 45px; border-radius: 50%;
    background: #1a0000; border: 1px solid #ff0000;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}

.vip-form-footer {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 30px;
}

.vip-checkbox-wrap {
    display: flex; align-items: center; gap: 12px;
    color: #94a3b8; font-size: 0.9rem; cursor: pointer;
}
.vip-checkbox-wrap input { width: 18px; height: 18px; accent-color: #ff0000; }
.vip-checkbox-wrap a { color: #ff0000; text-decoration: none; }

.vip-submit-btn {
    background: #ff0000;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.vip-submit-btn:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.6);
}

.vip-success-msg {
    background: rgba(0, 255, 0, 0.1); color: #00ff88; border: 1px solid rgba(0, 255, 0, 0.2);
    padding: 15px; border-radius: 8px; margin-bottom: 30px; text-align: center; font-weight: 600;
}

@media (max-width: 768px) {
    .vip-form-wrapper { padding: 30px 20px; }
    .vip-input-row { flex-direction: column; gap: 35px; }
    .vip-form-footer { flex-direction: column; gap: 25px; text-align: center; }
    .vip-submit-btn { width: 100%; }
    .vip-title { font-size: 2.2rem; }
}

/* =========================================
   VİZYON & MİSYON BÖLÜMÜ (HAKKIMIZDA)
   ========================================= */

.about-lex-section {
    padding: 100px 20px;
    position: relative;
    z-index: 10;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Başlık Kısmı */
.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-badge {
    display: inline-block;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff0000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-title {
    font-size: 2.8rem;
    color: white;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-desc {
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* 3'lü Kart Grid'i */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Kart Yapısı (Buzlu Cam / Glassmorphism) */
.about-card {
    background: rgba(15, 5, 5, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 0, 0, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: 0.4s ease;
    overflow: hidden;
}

/* Hover (Üzerine Gelince Yukarı Kalkma Efekti) */
.about-card:hover {
    transform: translateY(-10px);
    background: rgba(25, 0, 0, 0.8);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8), inset 0 0 20px rgba(255,0,0,0.1);
}

/* Kartların Üstündeki Parlayan Neon Çizgiler */
.card-top-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
}

.about-card.cyan .card-top-line { background: #ff0000; box-shadow: 0 0 20px #ff0000; }
.about-card.pink .card-top-line { background: #cc0000; box-shadow: 0 0 20px #cc0000; }
.about-card.purple .card-top-line { background: #ff3333; box-shadow: 0 0 20px #ff3333; }

/* İkon Kutusu */
.about-icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.about-card:hover .about-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.08);
}

/* Yazı Ayarları */
.about-card h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobil Uyum (Responsive) */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr; /* Mobilde kartları alt alta dizer */
    }
    .about-title {
        font-size: 2.2rem;
    }
}
/* =========================================
   NELER YAPIYORUZ (HİZMETLER KARTLARI)
   ========================================= */

.services-v2-section {
    padding: 100px 20px;
    position: relative;
    z-index: 10;
}

.services-v2-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Başlık Alanı --- */
.services-v2-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-v2-badge {
    display: inline-block;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff0000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.services-v2-title {
    font-size: 2.8rem;
    color: white;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.services-v2-desc {
    color: #94a3b8;
    font-size: 1.05rem;
}

/* --- Grid Yapısı --- */
.services-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- Kart Yapısı (Buzlu Cam) --- */
.service-v2-card {
    background: rgba(15, 5, 5, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 0, 0, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: 0.4s ease;
    overflow: hidden;
}

.service-v2-card:hover {
    transform: translateY(-10px);
    background: rgba(25, 0, 0, 0.8);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8), inset 0 0 20px rgba(255,0,0,0.1);
}

/* Üst Glow Çizgisi */
.card-glow-top {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
}
.cyan-card .card-glow-top { background: #ff0000; box-shadow: 0 0 20px #ff0000; }
.pink-card .card-glow-top { background: #cc0000; box-shadow: 0 0 20px #cc0000; }
.purple-card .card-glow-top { background: #ff3333; box-shadow: 0 0 20px #ff3333; }

/* Kart İçi Header (İkon + Rozet) */
.card-v2-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

/* Sol İkon Kutusu */
.card-v2-icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}
.service-v2-card:hover .card-v2-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.1);
}

/* Sağ Üstteki Ufak Rozetler */
.card-v2-status {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
}
.card-v2-status.green { background: rgba(255, 0, 0, 0.1); color: #ff0000; border: 1px solid rgba(255, 0, 0, 0.3); }
.card-v2-status.purple { background: rgba(255, 0, 0, 0.1); color: #ff3333; border: 1px solid rgba(255, 0, 0, 0.3); }
.card-v2-status.red { background: rgba(255, 0, 0, 0.15); color: #ff0055; border: 1px solid rgba(255, 0, 0, 0.4); }

/* --- Metinler --- */
.service-v2-card h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-v2-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Mobil Uyum (Responsive) --- */
@media (max-width: 992px) {
    .services-v2-grid {
        grid-template-columns: 1fr; /* Mobilde kartları alt alta diz */
    }
    .services-v2-title {
        font-size: 2.2rem;
    }
}
/* =========================================
   SIKÇA SORULAN SORULAR (FAQ) V2
   ========================================= */

.faq-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.faq-bg-glow {
    position: absolute;
    right: -10%; top: 20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.08), transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* --- SOL TARAF (BİLGİ) --- */
.faq-info {
    flex: 1;
    position: sticky;
    top: 100px; /* Kaydırırken ekranın solunda sabit kalır */
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    color: #ff0000;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.pulsing-dot {
    width: 8px; height: 8px;
    background: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff0000;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.faq-title {
    font-size: 3.2rem;
    color: white;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.faq-desc {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

/* Destek Kutusu */
.faq-support-box {
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.1), rgba(0, 0, 0, 0));
    border-left: 4px solid #ff0000;
    padding: 20px;
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.support-icon { font-size: 2rem; }
.support-text small { display: block; color: #94a3b8; font-size: 0.85rem; }
.support-text strong { color: white; cursor: pointer; transition: 0.3s; }
.support-text strong:hover { color: #ff0000; }

/* --- SAĞ TARAF (SORULAR LİSTESİ) --- */
.faq-list {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Soru Kartı Temel Yapısı */
.faq-item {
    background: rgba(15, 5, 5, 0.6);
    border: 1px solid rgba(255, 0, 0, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* AKTİF DURUM (Soru Açıldığında) */
.faq-item.active {
    border-color: rgba(255, 0, 0, 0.5); /* Kırmızı Çerçeve */
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
    background: rgba(25, 0, 0, 0.8);
}

.faq-header {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

/* Q1, Q2 Yazısı */
.q-prefix {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 700;
    margin-right: 20px;
    font-family: monospace;
    transition: 0.3s;
}
.faq-item.active .q-prefix { color: #ff0000; }

/* Soru Başlığı */
.faq-header h3 {
    flex: 1;
    margin: 0;
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    transition: 0.3s;
}
.faq-item.active .faq-header h3 { color: #ff0000; }

/* Artı ve Eksi İkonu (+ / -) */
.toggle-icon {
    width: 24px; height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-icon span {
    position: absolute;
    background-color: white;
    border-radius: 2px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-icon span:nth-child(1) { width: 100%; height: 2px; } /* Yatay Çizgi */
.toggle-icon span:nth-child(2) { width: 2px; height: 100%; } /* Dikey Çizgi */

/* Aktif olunca + işaretini pembe renkte eksi (-) yap */
.faq-item.active .toggle-icon span:nth-child(1) { background-color: #ff0000; }
.faq-item.active .toggle-icon span:nth-child(2) { background-color: #ff0000; transform: rotate(90deg); opacity: 0; }

/* --- Cevap Alanı (Açılır Kısım) --- */
.faq-body {
    max-height: 0; /* Başlangıçta boyu 0, JS ile açılacak */
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-content {
    padding: 0 25px 25px 65px; /* Soldaki Q1 yazısının altına hizalanması için boşluk */
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* --- Mobil Uyum --- */
@media (max-width: 992px) {
    .faq-container { flex-direction: column; }
    .faq-info { position: static; margin-bottom: 40px; }
    .faq-content { padding-left: 25px; } /* Mobilde hizayı bozma */
    .faq-title { font-size: 2.5rem; }
}
/* =========================================
   TOPLULUK KURALLARI BÖLÜMÜ
   ========================================= */

.rules-section {
    padding: 100px 20px;
    position: relative;
    z-index: 10;
}

.rules-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Başlık Alanı --- */
.rules-header {
    text-align: center;
    margin-bottom: 60px;
}

.rules-badge {
    display: inline-block;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff0000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.rules-title {
    font-size: 2.8rem;
    color: white;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Deneyimi kelimesi için özel hafif mor-beyaz geçiş */
.gradient-text-lightpurple {
    background: linear-gradient(90deg, #ff0000, #ff8888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rules-desc {
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* --- Grid ve Kart Yapısı --- */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rule-card {
    background: rgba(15, 5, 5, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 0, 0, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center; /* Yazıları ortalar */
    text-align: center;
    transition: 0.4s ease;
    overflow: hidden;
}

.rule-card:hover {
    transform: translateY(-10px);
    background: rgba(25, 0, 0, 0.8);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8), inset 0 0 20px rgba(255,0,0,0.1);
}

/* Üst Glow Çizgisi */
.rule-glow-top {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
}
.cyan-rule .rule-glow-top { background: #ff0000; box-shadow: 0 0 20px #ff0000; }
.pink-rule .rule-glow-top { background: #cc0000; box-shadow: 0 0 20px #cc0000; }
.purple-rule .rule-glow-top { background: #ff3333; box-shadow: 0 0 20px #ff3333; }

/* İkon Kutusu (Görseldeki gibi sola dayalı) */
.rule-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    align-self: flex-start; /* Görseldeki gibi ikonu sola yaslar */
}

.rule-card:hover .rule-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.1);
}

.rule-card h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.rule-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Mobil Uyum --- */
@media (max-width: 992px) {
    .rules-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta dizilir */
    }
    .rules-title {
        font-size: 2.2rem;
    }
}
/* =========================================
   FOOTER (ALT BİLGİ) BÖLÜMÜ
   ========================================= */
.lex-footer {
    background-color: #03050a; /* Çok koyu uzay mavisi/siyahı */
    position: relative;
    color: #cbd5e1;
    margin-top: 100px; /* Üstteki içeriklerle arasına boşluk koyar */
}

/* Üstteki İnce Gradient Lazer Çizgi */
.footer-top-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ff0000 30%, #ff3333 70%, transparent 100%);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr 1.2fr;
    gap: 40px;
}

/* 1. Sütun: Logo */
.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif; /* Eğer fontun bu değilse silebilirsin */
}
.footer-logo .text-white { color: white; }
.footer-logo .text-pink { color: #ff0000; }

.footer-subtitle {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.social-icons { display: flex; gap: 15px; }
.social-icons a {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #cbd5e1; text-decoration: none;
    transition: 0.3s; font-size: 1.1rem;
}
.social-icons a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px); color: white;
}

/* 2. Sütun: Linkler */
.footer-heading { color: white; font-size: 1.1rem; font-weight: 700; margin-bottom: 25px; }

.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links li a { color: #94a3b8; text-decoration: none; font-size: 0.95rem; transition: 0.3s; }
.footer-links li a:hover { color: white; }
.footer-links li a.text-pink { color: #ff0000; font-weight: 600; }
.footer-links li a.text-pink:hover { color: #ff3333; text-shadow: 0 0 10px rgba(255, 0, 0, 0.5); }

/* 3. Sütun: İletişim */
.contact-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.contact-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.bg-cyan-dark { background: rgba(255, 0, 0, 0.05); border: 1px solid rgba(255, 0, 0, 0.1); }
.bg-pink-dark { background: rgba(255, 0, 0, 0.05); border: 1px solid rgba(255, 0, 0, 0.1); }

.contact-info { display: flex; flex-direction: column; }
.contact-info small { font-size: 0.7rem; color: #64748b; letter-spacing: 1px; margin-bottom: 3px; }
.contact-info strong { color: white; font-size: 0.95rem; font-weight: 600; }

/* 4. Sütun: Katıl Kartı */
.join-card {
    background: rgba(15, 5, 5, 0.4);
    border: 1px solid rgba(255, 0, 0, 0.15);
    border-radius: 16px;
    padding: 25px;
}
.join-card h4 { color: white; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.join-card p { color: #94a3b8; font-size: 0.9rem; line-height: 1.5; margin-bottom: 20px; }

.btn-join {
    display: inline-block; width: 100%; text-align: center;
    padding: 12px 0;
    background: linear-gradient(90deg, #cc0000, #ff0000);
    color: white; text-decoration: none;
    border-radius: 8px; font-weight: 700; font-size: 0.95rem;
    transition: 0.3s; border: none;
}
.btn-join:hover {
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
}

/* Alt Kısım (Copyright) */
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); background: #020308; }
.footer-bottom-container {
    max-width: 1200px; margin: 0 auto; padding: 20px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.85rem; color: #64748b;
}
.footer-bottom-links { display: flex; align-items: center; gap: 10px; }
.footer-bottom-links a { color: #64748b; text-decoration: none; transition: 0.3s; }
.footer-bottom-links a:hover { color: white; }
.dot { color: #334155; }

/* Mobil Uyum */
@media (max-width: 992px) {
    .footer-container { grid-template-columns: 1fr 1fr; } /* Mobilde 2 sütun */
    .footer-bottom-container { flex-direction: column; text-align: center; gap: 10px; }
}
@media (max-width: 576px) {
    .footer-container { grid-template-columns: 1fr; } /* Telefonda tek sütun alt alta */
}
/* =========================================
   AŞAĞI KAYDIRDIKÇA GELME ANİMASYONU
   ========================================= */

/* Nesnenin ekranda yokkenki (bekleme) hali */
.reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.95); /* Biraz aşağıda ve ufak başlar */
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); /* Yağ gibi kayma efekti */
}

/* Nesne ekrana girdiğinde çalışacak aktif hali */
.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Farklı gecikmeler vermek istersen (Kartlar sırayla gelsin diye) */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
/* =========================================
   SSS (FAQ) KUTU TASARIMI VE PÜRÜZSÜZ ANİMASYON
   ========================================= */

.faq-item {
    background: rgba(15, 5, 5, 0.6);
    border: 1px solid rgba(255, 0, 0, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

/* Kutu Açıldığında Çalışacak Stil (faq-open) */
.faq-item.faq-open {
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
    background: rgba(25, 0, 0, 0.8);
}

.faq-item.faq-open .q-prefix { color: #ff0000; }
.faq-item.faq-open .faq-header h3 { color: #ff0000; }

/* İçerik Alanı Animasyonu */
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Yağ gibi kayma süresi */
}

/* Artı ve Eksi İkonu Animasyonu */
.toggle-icon span {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Açılınca yatay çizgi pembe olur */
.faq-item.faq-open .toggle-icon span:nth-child(1) {
    background-color: #ff0000;
}

/* Açılınca dikey çizgi 90 derece dönüp kaybolur (Eksiye döner) */
.faq-item.faq-open .toggle-icon span:nth-child(2) {
    background-color: #ff0000;
    transform: rotate(90deg);
    opacity: 0;
}

/* Custom Select CSS */
.custom-select-container { position: relative; width: 100%; user-select: none; font-family: inherit; }
.custom-select-trigger { background: #0a0a0a; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 14px 20px; color: #fff; font-size: 1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
.custom-select-trigger:hover, .custom-select-container.open .custom-select-trigger { border-color: #ff0000; box-shadow: 0 0 0 4px rgba(255,0,0,0.1); background: #000; }
.custom-select-trigger i { transition: transform 0.3s; font-size: 0.9em; color: #94a3b8; }
.custom-select-container.open .custom-select-trigger i { transform: rotate(180deg); }
.custom-select-options { position: absolute; top: 100%; left: 0; width: 100%; background: #0f111a; border: 1px solid rgba(255, 0, 0, 0.3); border-radius: 12px; margin-top: 8px; z-index: 9999; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.9); }
.custom-select-container.open .custom-select-options { opacity: 1; visibility: visible; transform: translateY(0); }
.custom-option { padding: 15px 20px; color: #cbd5e1; font-size: 1rem; cursor: pointer; transition: 0.2s; border-bottom: 1px solid rgba(255,255,255,0.05); }
.custom-option:last-child { border-bottom: none; }
.custom-option:hover { background: rgba(255, 0, 0, 0.15); color: #fff; padding-left: 25px; }


/* =========================================
   MOBİL PERFORMANS İYİLEŞTİRMELERİ
   ========================================= */
@media (max-width: 768px) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .cinematic-glow, .cinematic-glow-2 {
        display: none !important;
    }
    .poly-wrapper, .bg-parallax-container {
        display: none !important;
    }
    .shooting-stars-container {
        display: none !important;
    }
    .hero-cinematic {
        background: #030303;
    }
}
