* {
    box-sizing: border-box;
}

:root {
    --bg-color: #050509; /* Daha derin, simsiyah bir gece gökyüzü */
    --text-main: #ffffff;
    --text-muted: #8b8e98;
    --neon-pink: #fe0979;
    --neon-cyan: #00f2fe;
    --card-bg: #14151c;

    /* Aurora Işıkları Renkleri (Mute/Yumuşak tonlar) */
    --aurora-1: rgba(0, 242, 254, 0.15); /* Neon Turkuazın şeffaf hali */
    --aurora-2: rgba(127, 0, 255, 0.15); /* Mor */
    --aurora-3: rgba(34, 177, 76, 0.10);  /* Hafif Yeşil */
    --aurora-4: rgba(254, 9, 121, 0.10);  /* Neon Pembenin şeffaf hali */
}

body {
    background-color: var(--bg-color);
    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)
   ========================================= */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -20; /* Yıldızların ve içeriğin arkasında kalması için */

    /* Çoklu Gradient ile Aurora Efekti */
    background:
        radial-gradient(circle at 20% 30%, var(--aurora-1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, var(--aurora-2) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, var(--aurora-3) 0%, transparent 50%),
        radial-gradient(circle at 10% 70%, var(--aurora-4) 0%, transparent 40%);

    background-size: 200% 200%; /* Animasyon için zemini büyütüyoruz */
    animation: auroraMovement 30s ease infinite; /* Yavaşça süzülsün */
    filter: blur(60px); /* Işıkları yumuşatmak için yoğun bulanıklık */
}

/* Aurora Hareket Animasyonu */
@keyframes auroraMovement {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Ana Bölüm (Hero Section) Düzeni */
/* Ana Bölüm (Hero Section) Düzeni - GÜNCELLENDİ */
.hero-section {
    max-width: 1200px;
    margin: 0 auto;
    /* Üstten 140px boşluk (Menünün altında kalmasın diye), Alttan 50px */
    padding: 140px 20px 50px 20px;
    display: flex;
    align-items: center; /* Yazı ve telefon görseli birbirine ortalı dursun */
    justify-content: space-between;
    gap: 50px;
    min-height: auto; /* O koca boşluğu yaratan 100vh komutunu sildik! */
}

/* SOL TARAF - İçerik */
.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.badge span { color: var(--neon-cyan); margin-right: 5px; }

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 0 0 20px 0;
    font-weight: 800;
}

.text-cyan { color: var(--neon-cyan); }
.text-pink { color: var(--neon-pink); text-shadow: 0 0 15px rgba(254, 9, 121, 0.4); }

.hero-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Butonlar */
.buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--neon-pink);
    color: white;
    box-shadow: 0 0 20px rgba(254, 9, 121, 0.4);
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(254, 9, 121, 0.7);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: white;
}

/* Özellik Kartları (Grid) */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.feature-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
}

.feature-card p {
    margin: 5px 0 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* SAĞ TARAF - Telefon Görseli İçin Alan */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Arka plandaki yuvarlak çizgiler için basit bir efekt */
.bg-circles {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(0, 242, 254, 0.1);
    z-index: -1;
}
.bg-circles::after {
    content: '';
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    border-radius: 50%;
    border: 1px solid rgba(254, 9, 121, 0.1);
}
/* =========================================
   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, #00c6ff, #0072ff, #7f00ff);
    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(0, 198, 255, 0.3);
}

.btn-panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 0, 255, 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: radial-gradient(circle at 50% 50%, #0b1023 0%, #02040a 100%);
    pointer-events: none; /* Tıklamaları engellemesin diye */
}

/* Bulanık Işıklar (Glow) */
.glow-effect {
    position: absolute;
    opacity: 0.4;
    pointer-events: none;
}
.glow-pink {
    width: 60vw; height: 60vw; top: -20vw; left: -20vw;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.4) 0%, rgba(255, 0, 128, 0) 70%);
}
.glow-cyan {
    width: 60vw; height: 60vw; bottom: -20vw; right: -20vw;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.4) 0%, rgba(0, 242, 255, 0) 70%);
}

/* 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(0, 242, 255, 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 Pembe Çizgi */
.line-pink-left {
    background: linear-gradient(90deg, transparent 10%, #ff0080 50%, transparent 90%);
    transform: rotate(25deg); /* Açıyı biraz daha dikleştirdik */
    box-shadow: 0 0 15px #ff0080, 0 0 30px #ff0080;
}

/* Sağdan aşağı inen Mavi Çizgi */
.line-blue-right {
    background: linear-gradient(90deg, transparent 10%, #00f2ff 50%, transparent 90%);
    transform: rotate(-25deg); /* Açıyı biraz daha dikleştirdik */
    box-shadow: 0 0 15px #00f2ff, 0 0 30px #00f2ff;
}
/* =========================================
   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(0, 242, 255, 0.15),
        -20px 20px 40px rgba(254, 9, 121, 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, #00f2ff, #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 #00f2ff;
    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 #00f2ff); /* 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 #00f2ff;
}

/* 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, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #00f2ff;
    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(0, 242, 255, 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: center;
    flex-wrap: wrap;
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

.custom-box {
    position: relative;
    width: 320px;
    height: 420px; /* İçeriğin sığması için biraz yükselttik */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 20px;
    transition: 0.5s;
}

/* Arkadaki Eğik Neon Şekil */
.custom-box::before {
    content: ' ';
    position: absolute;
    top: 0; left: 40px; width: 50%; height: 100%;
    border-radius: 8px;
    transform: skewX(15deg);
    transition: 0.5s;
}

/* Arkadaki Neon Parlama (Glow) */
.custom-box::after {
    content: '';
    position: absolute;
    top: 0; left: 40px; width: 50%; height: 100%;
    border-radius: 8px;
    transform: skewX(15deg);
    transition: 0.5s;
    filter: blur(30px);
}

/* HOVER DURUMU (Şekil Düzelir ve Büyür) */
.custom-box:hover:before,
.custom-box:hover:after {
    transform: skewX(0deg);
    left: 15px;
    width: calc(100% - 30px);
}

/* Kart Renkleri */
.custom-box.color-1::before, .custom-box.color-1::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058); /* Zeynep Kartı */
}
.custom-box.color-2::before, .custom-box.color-2::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058); /* Eray Kartı */
}

/* Uçuşan Kareler Animasyonu */
.custom-box span {
    display: block; position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 5; pointer-events: none;
}
.custom-box span::before, .custom-box span::after {
    content: ''; position: absolute;
    width: 0; height: 0; border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0; transition: 0.5s;
    animation: animate 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.custom-box span::before { top: 0; left: 0; }
.custom-box span::after { bottom: 0; right: 0; animation-delay: -1s; }

/* Üzerine gelince kareler uçar */
.custom-box:hover span::before { top: -40px; left: 40px; width: 80px; height: 80px; opacity: 1; }
.custom-box:hover span::after { bottom: -40px; right: 40px; width: 80px; height: 80px; opacity: 1; }

@keyframes animate {
    0%, 100% { transform: translateY(10px); }
    50% { transform: translate(-10px); }
}

/* --- KARTIN İÇERİĞİ (BUZLU CAM) --- */
.custom-content {
    position: relative;
    left: 0;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px); /* Arkayı harika flulaştırır */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1;
    transform: 0.5s;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center; /* İçeriği ortala */
    text-align: center;
    width: 100%;
    height: 100%;
}

.custom-box:hover .custom-content {
    left: -20px;
    padding: 30px 25px;
}

/* Yuvarlak İsim Baş Harfi Avatarı */
.avatar-circle {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.custom-content h2 {
    font-size: 1.3rem;
    color: #fff;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.custom-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1; /* Yazının uzunluğuna göre yıldızları en alta iter */
}

/* 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 SECTION (Ana Sayfa Girişi) MOBİL AYARI */
    .hero-section {
        flex-direction: column; /* Yazıları ve telefonu alt alta al */
        text-align: center; /* Mobilde yazılar ortalı daha şık durur */
        padding: 120px 20px 50px 20px;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 2.4rem; /* Başlığı mobilde küçült */
    }

    .hero-content p {
        margin: 0 auto 30px auto; /* Paragrafı ortala */
    }

    .buttons {
        justify-content: center; /* Butonları ortala */
        flex-wrap: wrap; /* Sığmazsa alt alta geçsinler */
    }

    .features-grid {
        max-width: 400px;
        margin: 0 auto;
    }

    /* CSS Telefonu Mobilde Küçültme */
    .floating-phone {
        transform: scale(0.85); /* Telefonu %15 küçült ki ekrana tam sığsın */
        animation: none; /* Mobilde süzülme animasyonu ekranı yormasın diye kapattık */
    }


    /* 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: #00f2ff;
    text-shadow: 0 0 15px #00f2ff;
}

.mobile-btn {
    margin-top: 10px;
    padding: 12px 35px;
    background: linear-gradient(90deg, #00c6ff, #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, #00f2ff);
    -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, #00c6ff, #ff0080);
    box-shadow: 0 0 15px rgba(0, 198, 255, 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, #00c6ff); /* 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 (PARTNERS) BÖLÜMÜ
   ========================================= */

.partners-section {
    padding: 80px 20px;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
}

/* Dış Kaplayıcı (Görseldeki o geniş koyu kutu) */
.partners-container {
    width: 100%;
    max-width: 1000px;
    background: rgba(10, 15, 30, 0.4); /* Koyu, yarı saydam zemin */
    border: 1px solid rgba(255, 255, 255, 0.05); /* Çok ince beyaz sınır */
    border-radius: 20px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5); /* Hafif gölge */
    backdrop-filter: blur(10px); /* Arkadaki lazerleri flulaştırır */
}

/* Üstteki Yazılı Rozet */
.partners-badge {
    border: 1px solid rgba(0, 242, 255, 0.3);
    color: #00f2ff;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 60px;
    background: rgba(0, 242, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
}

/* Ortaklar Izgarası */
.partners-list {
    display: flex;
    justify-content: center;
    gap: 60px; /* Birden fazla ortak olursa aralarındaki boşluk */
    flex-wrap: wrap;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: 0.3s;
    cursor: pointer;
}

.partner-item:hover {
    transform: translateY(-5px); /* Üzerine gelince hafif yukarı kalkar */
}

/* Yuvarlak Çift Çizgili Logo Çerçevesi */
.partner-logo-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid white; /* İçteki beyaz çizgi */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* Dıştaki turkuaz neon çizgi (Box-shadow hilesi ile yapıldı) */
    box-shadow: 0 0 0 4px rgba(0, 242, 255, 0.6);
    background: #05070a; /* Logonun içi tam siyah dursun diye */
    overflow: hidden;
    transition: 0.3s;
}

.partner-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(0.95); /* Logoyu biraz küçülterek köşelerinin kırpılmasını engelliyoruz */
}

.partner-item:hover .partner-logo-circle {
    box-shadow: 0 0 0 4px #00f2ff, 0 0 20px rgba(0, 242, 255, 0.6);
    border-color: #00f2ff;
}

/* LB Yazısı (Saf CSS Logo) */
.lb-logo {
    font-size: 3rem;
    color: white;
    font-weight: 900;
    font-family: 'Orbitron', 'Segoe UI', sans-serif;
    letter-spacing: -3px; /* L ve B harflerini birbirine yaklaştırır */
}

/* Altındaki Lexa Bilişim Yazısı */
.partner-name {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: 0.3s;
}

.partner-item:hover .partner-name {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
/* İŞ ORTAKLARI MOBİL AYARI */
.partners-container {
    padding: 40px 15px; /* Mobilde iç boşluğu kıstık */
}
.partners-badge {
    font-size: 0.7rem;
    padding: 8px 15px;
    text-align: center;
}
/* =========================================
   BAŞVURU FORMU ÖZEL KUTULARI (Koyu Kutu Tasarımları)
   ========================================= */

/* Telefon Numarası Grubu */
.phone-input-group {
    display: flex;
    gap: 10px;
    align-items: flex-end; /* Çizgili inputlarla aynı hizada dursun diye */
}

.country-code {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #00ff88;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Koyu Kutu Inputlar (Tarih, Seçim ve Telefon için) */
.dark-box-input {
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: 0.3s;
    font-family: inherit;
    display: block;
}

.dark-box-input:focus {
    border-color: #00f2ff;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
}

/* Kutu Inputları İçin Etiketler (Label) */
.box-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 100%;
}

.box-label {
    color: #00ff88;
    font-size: 0.75rem;
    padding-left: 5px;
}

/* Chrome/Safari için Tarih Seçici İkonunu Beyaz Yapma */
.dark-box-input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* TikTok Bilgi Kutusu (Koyu Yeşil Zemin) */
.tiktok-info-box {
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.2);
    color: #cbd5e1;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tiktok-info-box strong {
    color: white;
}/* =========================================
   BAŞVURU FORMU ÖZEL KUTULARI (Koyu Kutu Tasarımları)
   ========================================= */

.phone-input-group {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.country-code {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #00ff88;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-box-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: 0.3s;
    font-family: inherit;
}

.dark-box-input:focus {
    border-color: #00f2ff;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
}

.box-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.box-label {
    color: #00ff88;
    font-size: 0.75rem;
    padding-left: 5px;
}

.dark-box-input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.tiktok-info-box {
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.2);
    color: #cbd5e1;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tiktok-info-box strong {
    color: white;
}
/* =========================================
   KAYIP İSKELET: CYBER PANEL ANA TASARIMI
   ========================================= */

.application-section-v2 {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.center-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 600px;
    background: radial-gradient(ellipse at center, rgba(0, 242, 255, 0.15), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.cyber-container {
    max-width: 1100px;
    margin: 0 auto;
}

.cyber-header { text-align: center; margin-bottom: 50px; }

.cyber-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 15px; border-radius: 4px;
    font-size: 0.75rem; letter-spacing: 2px;
    color: #00f2ff; margin-bottom: 15px;
    display: inline-block;
}

.cyber-title { font-size: 3rem; color: white; margin-bottom: 10px; font-weight: 800; }
.neon-text { color: #ff0055; text-shadow: 0 0 20px rgba(255, 0, 85, 0.5); }
.cyber-subtitle { color: #94a3b8; font-size: 1.1rem; max-width: 800px; margin: 0 auto; }

/* Koyu Cam Panel */
.cyber-panel {
    display: flex;
    background: rgba(10, 15, 30, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 242, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Sol Taraf Bilgi Alanı */
.panel-sidebar {
    width: 35%;
    background: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex; flex-direction: column; justify-content: space-between;
}

.sidebar-title { font-size: 0.8rem; color: #64748b; letter-spacing: 1px; margin-bottom: 30px; font-weight: 700; }
.tech-list { display: flex; flex-direction: column; gap: 25px; }
.tech-item { display: flex; gap: 15px; }

.status-dot { width: 8px; height: 8px; border-radius: 50%; margin-top: 6px; box-shadow: 0 0 8px currentColor; }
.status-dot.green { background: #00ff88; color: #00ff88; }

.tech-text { display: flex; flex-direction: column; }
.tech-text strong { color: white; font-size: 0.95rem; font-weight: 600; margin-bottom: 5px; }
.tech-text span { color: #94a3b8; font-size: 0.85rem; line-height: 1.4; }

.security-note {
    margin-top: 40px; display: flex; gap: 10px; align-items: center;
    font-size: 0.75rem; color: #64748b;
    background: rgba(255,255,255,0.03); padding: 10px; border-radius: 8px;
}

/* Sağ Taraf Form Alanı */
.panel-form { width: 65%; padding: 50px; }
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 30px; }

/* Çizgili Input Efektleri */
.input-wrap { position: relative; }
.input-wrap input {
    width: 100%; background: transparent; border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0; color: white; font-size: 1rem; outline: none; transition: 0.3s;
}
.input-wrap label {
    position: absolute; top: 10px; left: 0; color: #64748b;
    pointer-events: none; transition: 0.3s; font-size: 0.9rem;
}
.input-wrap input:focus ~ label, .input-wrap input:valid ~ label {
    top: -15px; font-size: 0.75rem; color: #00f2ff;
}
.input-wrap .focus-border {
    position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: #00f2ff; transition: 0.4s; box-shadow: 0 0 10px #00f2ff;
}
.input-wrap input:focus ~ .focus-border { width: 100%; }

/* Form Altı Buton ve Onay */
.tech-footer { display: flex; justify-content: space-between; align-items: center; }
.tech-checkbox label { color: #94a3b8; font-size: 0.85rem; cursor: pointer; display: flex; align-items: center; }
.tech-checkbox input { accent-color: #00f2ff; margin-right: 8px; width: 16px; height: 16px; }

.btn-cyber-submit {
    background: #ff0055; color: white; border: none;
    padding: 15px 40px; font-weight: 700; font-size: 0.9rem; letter-spacing: 1px;
    cursor: pointer; transition: 0.3s;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.btn-cyber-submit:hover {
    background: #d40045; transform: scale(1.02); box-shadow: 0 0 20px rgba(255, 0, 85, 0.4);
}

/* Mobilde Üst Üste Binmemesi İçin */
@media (max-width: 992px) {
    .cyber-panel { flex-direction: column; }
    .panel-sidebar, .panel-form { width: 100%; padding: 30px 20px; box-sizing: border-box; }
    .panel-sidebar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .tech-grid { grid-template-columns: 1fr; gap: 20px; width: 100%; }
    .tech-footer { flex-direction: column; gap: 25px; align-items: center; text-align: center; }
    .btn-cyber-submit { width: 100%; text-align: center; padding: 18px; }
    .cyber-title { font-size: 2.2rem; }
    .cyber-subtitle { font-size: 1rem; }
}

@media (max-width: 480px) {
    .cyber-title { font-size: 1.8rem; }
    .application-section-v2 { padding: 60px 10px; }
    .cyber-header { margin-bottom: 30px; }
    .panel-sidebar { padding: 25px 15px; }
    .panel-form { padding: 25px 20px; }
    .tech-list { gap: 15px; }
    .tech-text strong { font-size: 0.85rem; }
    .tech-text span { font-size: 0.75rem; }
    .phone-input-group { flex-direction: row; gap: 8px; width: 100%; }
    .dark-box-input { font-size: 0.85rem; padding: 12px 10px; }
}
/* =========================================
   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(0, 242, 255, 0.05);
    border: 1px solid rgba(0, 242, 255, 0.2);
    color: #00f2ff;
    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, 20, 35, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    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(20, 25, 45, 0.8);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* 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: #00f2ff; box-shadow: 0 0 20px #00f2ff; }
.about-card.pink .card-top-line { background: #ff0055; box-shadow: 0 0 20px #ff0055; }
.about-card.purple .card-top-line { background: #a855f7; box-shadow: 0 0 20px #a855f7; }

/* İ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(0, 242, 255, 0.05);
    border: 1px solid rgba(0, 242, 255, 0.2);
    color: #00f2ff;
    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, 20, 35, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    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(20, 25, 45, 0.8);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Üst Glow Çizgisi */
.card-glow-top {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
}
.cyan-card .card-glow-top { background: #00f2ff; box-shadow: 0 0 20px #00f2ff; }
.pink-card .card-glow-top { background: #ff0055; box-shadow: 0 0 20px #ff0055; }
.purple-card .card-glow-top { background: #a855f7; box-shadow: 0 0 20px #a855f7; }

/* 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(0, 255, 136, 0.1); color: #00ff88; border: 1px solid rgba(0, 255, 136, 0.2); }
.card-v2-status.purple { background: rgba(168, 85, 247, 0.1); color: #a855f7; border: 1px solid rgba(168, 85, 247, 0.2); }
.card-v2-status.red { background: rgba(255, 0, 85, 0.1); color: #ff0055; border: 1px solid rgba(255, 0, 85, 0.2); }

/* --- 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(0, 242, 255, 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, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #00f2ff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.pulsing-dot {
    width: 8px; height: 8px;
    background: #00f2ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00f2ff;
    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(0, 242, 255, 0.1), rgba(0, 0, 0, 0));
    border-left: 4px solid #00f2ff;
    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: #00f2ff; }

/* --- 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, 20, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    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(0, 242, 255, 0.5); /* Turkuaz Çerçeve */
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
    background: rgba(20, 25, 45, 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: #00f2ff; }

/* 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: #00f2ff; }

/* 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: #ff0055; }
.faq-item.active .toggle-icon span:nth-child(2) { background-color: #ff0055; 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(0, 242, 255, 0.05);
    border: 1px solid rgba(0, 242, 255, 0.2);
    color: #00f2ff;
    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, #a5b4fc, #e2e8f0);
    -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, 20, 35, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    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(20, 25, 45, 0.8);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Üst Glow Çizgisi */
.rule-glow-top {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
}
.cyan-rule .rule-glow-top { background: #00f2ff; box-shadow: 0 0 20px #00f2ff; }
.pink-rule .rule-glow-top { background: #ff0055; box-shadow: 0 0 20px #ff0055; }
.purple-rule .rule-glow-top { background: #a855f7; box-shadow: 0 0 20px #a855f7; }

/* İ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%, #00f2ff 30%, #ff0055 70%, transparent 100%);
    box-shadow: 0 0 15px rgba(0, 242, 255, 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: #ff0055; }

.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: #ff0055; font-weight: 600; }
.footer-links li a.text-pink:hover { color: #ff3377; text-shadow: 0 0 10px rgba(255, 0, 85, 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(0, 242, 255, 0.05); border: 1px solid rgba(0, 242, 255, 0.1); }
.bg-pink-dark { background: rgba(255, 0, 85, 0.05); border: 1px solid rgba(255, 0, 85, 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, 20, 35, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    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, #00c6ff, #ff0080);
    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, 128, 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, 20, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    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(0, 242, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
    background: rgba(20, 25, 45, 0.8);
}

.faq-item.faq-open .q-prefix { color: #00f2ff; }
.faq-item.faq-open .faq-header h3 { color: #00f2ff; }

/* İç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: #ff0055;
}

/* 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: #ff0055;
    transform: rotate(90deg);
    opacity: 0;
}
