        /* --- TEMEL AYARLAR --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #02040a;
            color: white;
            font-family: 'Segoe UI', sans-serif;
           overflow-x: hidden; /* Sadece yan taşmayı engelle */
    overflow-x: hidden; /* Sadece yan taşmayı engelle */
    overflow-y: auto;   /* Dikey kaydırmaya izin ver */
    height: auto;       /* Yüksekliği içeriğe göre ayarla */
    min-height: 100vh;
            width: 100%;
            position: relative;
        }

        /* --- ARKAPLAN KATMANI --- */
        #background-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            /* Hafif degrade ile derinlik */
            background: radial-gradient(circle at 50% 50%, #0b1023 0%, #02040a 100%);
        }

        /* --- BULANIK IŞIKLAR (GLOW) --- */
        .glow-effect {
    position: absolute;
    /* filter: blur(100px);  <-- BU SATIRI SİLDİK, KASMANIN ANA SEBEBİ BU */
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
    /* Blur yerine CSS Gradient geçişi kullanıyoruz, çok daha hızlıdır */
}

/* Sol Üst - Pembe Glow */
.glow-pink {
    width: 60vw;
    height: 60vw;
    top: -20vw;
    left: -20vw;
    /* Radial Gradient ile "doğal" bulanıklık */
    background: radial-gradient(circle, rgba(255, 0, 128, 0.4) 0%, rgba(255, 0, 128, 0) 70%);
}

/* Sağ Alt - Mavi Glow */
.glow-cyan {
    width: 60vw;
    height: 60vw;
    bottom: -20vw;
    right: -20vw;
    /* Radial Gradient ile "doğal" bulanıklık */
    background: radial-gradient(circle, rgba(0, 242, 255, 0.4) 0%, rgba(0, 242, 255, 0) 70%);
}

/* --- YILDIZ CANVAS --- */
canvas#starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* GPU Hızlandırmasını zorla */
    will-change: transform; 
}

        /* --- MODERN NEON ÇİZGİLER (SVG) --- */
        .neon-lines {
            position: absolute;
            width: 100%; /* Genişliği tam ekran tutuyoruz */
            height: 100%;
            pointer-events: none;
            z-index: 2; /* Yıldızların üstünde */
            mix-blend-mode: screen; /* Parlaklığı artırır */
        }

        /* Sol Üst Köşe Konumu */
        .lines-top-left {
            top: 0;
            left: 0;
            /* Sol alttaki eğrinin dikey yansımasını alarak sol üste taşıyoruz */
            transform: scaleY(-1); 
        }

        /* Sağ Alt Köşe Konumu */
        .lines-bottom-right {
            bottom: 0;
            right: 0;
            /* Sol alttaki eğrinin 180 derece dönüşü sağ alta denk gelir */
            transform: rotate(180deg);
        }

        /* Çizgi Stilleri */
        .neon-path {
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* Pembe Çizgi Stili */
        .stroke-pink {
    stroke: url(#gradPink);
    /* filter: drop-shadow(0 0 8px rgba(255, 0, 128, 0.6)); <-- SİL YA DA AZALT */
    filter: drop-shadow(0 0 2px rgba(255, 0, 128, 0.4)); /* Daha hafif gölge */
}

.stroke-cyan {
    stroke: url(#gradCyan);
    /* filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.6)); <-- SİL YA DA AZALT */
    filter: drop-shadow(0 0 2px rgba(0, 242, 255, 0.4)); /* Daha hafif gölge */
}

        /* --- İÇERİK ALANI --- */
        .content {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
            text-align: center;
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 800;
            letter-spacing: -1px;
            background: linear-gradient(to right, #fff, #a5b4fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(255,255,255,0.3);
        }
/* =========================================
   HEADER & NAVBAR (TAM CSS)
   ========================================= */

/* --- 1. HEADER DIŞ KAPLAYICI --- */
.lex-header {
    position: fixed;
    top: 20px; /* Üstten boşluk (Havada durma efekti) */
    left: 0;
    width: 100%;
    z-index: 1000; /* Her şeyin üstünde */
    display: flex;
    justify-content: center;
    padding: 0 20px;
    font-family: 'Segoe UI', sans-serif;
}

/* --- 2. HEADER KUTUSU (Buzlu Cam & Neon Çerçeve) --- */
.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; /* Hap şeklinde */

    /* Glassmorphism Efekti */
    background: rgba(5, 7, 20, 0.75); /* Yarı saydam koyu zemin */
    backdrop-filter: blur(15px); /* Arkayı bulanıklaştır */
    -webkit-backdrop-filter: blur(15px);
    
    /* İnce beyaz iç sınır çizgisi */
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1); 
}

/* Neon Gradient Çerçeve (Pseudo-element tekniği) */
.header-container::before {
    content: '';
    position: absolute;
    inset: -2px; /* Kutudan 2px dışarı taşsın */
    border-radius: 55px; 
    padding: 2px; /* Çizgi kalınlığı */
    /* Soldan sağa: Mavi -> Pembe geçişi */
    background: linear-gradient(90deg, #00f2ff, #ff0080); 
    
    /* Maskeleme ile sadece kenarları göster */
    -webkit-mask: 
       linear-gradient(#fff 0 0) content-box, 
       linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    
    pointer-events: none;
    z-index: -1;
    filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.5)); /* Dış parlama */
}

/* --- 3. LOGO ALANI --- */
.logo {
    display: flex;
    align-items: center;
    gap: 15px; /* İkon ve yazı arası boşluk */
    text-decoration: none;
    height: 100%;
    padding-right: 20px;
}

/* Logo Resim (LA İkonu) */
.logo-img {
    height: 42px; /* İdeal yükseklik */
    width: auto;
    object-fit: contain;
    /* Hafif parlama (isteğe bağlı) */
    filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.2)); 
}

/* Logo Yazısı (Animasyonlu Gradient) */
/* --- LOGO YAZISI (GÜNCELLENDİ) --- */
.logo-text {
    /* Yazı boyutu ve font */
    font-size: 1.8rem;
    font-family: 'Segoe UI', sans-serif;
    
    /* J harfinin kuyruğu için kritik ayarlar: */
    line-height: 1.4; /* Satırı biraz açtık ki 'j' sıkışmasın */
    padding-bottom: 5px; /* Alta biraz pay bıraktık */
    
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
    
    /* Gradient Ayarları */
    background: linear-gradient(to right, #00c6ff 0%, #ff0055 50%, #00c6ff 100%);
    background-size: 200% auto;
    
    /* Yazıyı boya */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    
    /* Animasyon */
    animation: textGradientMove 3s linear infinite reverse;
}

/* Yazı Ağırlıkları */
.logo-text .lex { font-weight: 800; }
.logo-text .ajans { font-weight: 600; }

/* Yazı Animasyonu Keyframe */
@keyframes textGradientMove {
    to { background-position: 200% center; }
}

/* --- 4. NAVİGASYON (MENÜ) --- */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #e2e8f0; /* Hafif gri beyaz */
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

/* Hover Efekti */
.nav-links li a:hover,
.nav-links li a.active {
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.6);
}

/* Aktif Link Alt Çizgisi */
.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #ff0055;
    box-shadow: 0 0 8px #ff0055;
    border-radius: 2px;
}

/* --- 5. SAĞ TARAF AKSİYONLARI --- */
.header-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Creator Giriş Butonu */
.btn-creator {
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    /* Buton Gradienti */
    background: linear-gradient(90deg, #00c6ff, #ff0080);
    background-size: 200% auto;
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.3);
    transition: all 0.3s ease;
}

.btn-creator:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.5);
    background-position: right center; /* Renk akışı */
}

/* Mobil Menü İkonu (Varsayılan Gizli) */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* --- 6. RESPONSIVE (MOBİL) AYARLARI --- */
@media (max-width: 992px) {
    /* Mobilde menüyü ve butonu gizle */
    .nav-links, 
    .btn-creator {
        display: none; 
    }
    
    /* Hamburger menüyü göster */
    .hamburger-menu {
        display: flex;
    }

    /* Mobilde Header Boyutu */
    .header-container {
        padding: 0 20px;
        height: 60px;
    }

    /* Logo Küçültme */
    .logo-img {
        height: 32px;
    }
    .logo-text {
        font-size: 1.4rem;
    }
}
/* === KARİYER SECTION TASARIMI === */
.career-section {
    padding: 100px 20px;
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden; /* Taşan halkaları gizle */
}

.career-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 5;
}

/* --- SOL TARAF --- */
.career-content {
    flex: 1;
    max-width: 600px;
}

/* Rozet */
.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 25px;
}

.partner-badge .dot {
    width: 8px;
    height: 8px;
    background-color: #00f2ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00f2ff;
}

/* Başlık */
.career-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
}

.highlight-text {
    background: linear-gradient(90deg, #00c6ff, #ff0080);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

/* Alt Çizgi Efekti (Referanstaki gibi) */
.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 0, 128, 0.3);
    z-index: -1;
    transform: skewX(-15deg);
}

.career-desc {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 35px;
}

.highlight-blue {
    color: #00f2ff;
    font-weight: 600;
}

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

.btn-primary-glow {
    background: linear-gradient(90deg, #ff0055, #ff4081);
    color: white;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.4);
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 85, 0.6);
}

.btn-secondary-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00f2ff;
}

/* --- İSTATİSTİK GRID (KARTLAR) --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 sütunlu yapı */
    gap: 20px;
}

.stat-card {
    background: rgba(20, 25, 45, 0.6); /* Daha koyu şeffaf */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 242, 255, 0.5);
    background: rgba(20, 25, 45, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.stat-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin: 0;
}

.stat-info p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 5px 0 0 0;
}


/* --- SAĞ TARAF (GÖRSEL) --- */
.career-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

/* Arkadaki Büyük Parlama */
.visual-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.3) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(60px);
}

.floating-hero {
    width: 100%;
    max-width: 500px;
    object-fit: contain;
    animation: floatHero 6s ease-in-out infinite;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
}

/* Dekoratif Halkalar */
.orbit-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.ring-1 {
    width: 400px;
    height: 400px;
    border-top-color: #ff0055;
    animation: spinRight 20s linear infinite;
}

.ring-2 {
    width: 550px;
    height: 550px;
    border-bottom-color: #00f2ff;
    animation: spinLeft 25s linear infinite;
}

@keyframes floatHero {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes spinRight { to { transform: rotate(360deg); } }
@keyframes spinLeft { to { transform: rotate(-360deg); } }


/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .career-container {
        flex-direction: column;
        text-align: center;
    }
    
    .career-content {
        max-width: 100%;
    }

    .career-actions {
        justify-content: center;
    }

    .stats-grid {
        text-align: left; /* Kart içleri sola dayalı kalsın */
    }
}
/* === IPHONE OYUNLAŞTIRMA & MAĞAZA EKRANI === */

.gamification-screen {
    background: linear-gradient(160deg, #1a103c 0%, #050505 100%); /* Mor-Siyah Uzay Teması */
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    overflow-y: auto; /* İçerik taşarsa kaydır */
}

/* Scrollbar Gizle */
.gamification-screen::-webkit-scrollbar { display: none; }

/* Puan Kartı (Neon Mor) */
.points-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.points-info .label { font-size: 0.8rem; color: #d8b4fe; }
.points-info .amount { font-size: 2.2rem; margin: 5px 0; font-weight: 800; color: white; }
.points-info .currency { font-size: 1rem; color: #a78bfa; }

.level-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: #ffb703;
    color: #000;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(255, 183, 3, 0.5);
}

/* XP Bar */
.xp-bar-container { margin-top: 15px; }
.xp-info { display: flex; justify-content: space-between; font-size: 0.7rem; color: #ccc; margin-bottom: 5px; }
.xp-track { width: 100%; height: 6px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
.xp-fill { height: 100%; background: linear-gradient(90deg, #00f2ff, #7c3aed); border-radius: 10px; }

/* Aktif Etkinlik Kutusu */
.active-event-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.event-header { display: flex; justify-content: space-between; margin-bottom: 5px; }
.event-tag { font-size: 0.65rem; color: #ff0055; font-weight: 800; background: rgba(255, 0, 85, 0.1); padding: 2px 6px; border-radius: 4px; }
.timer { font-size: 0.7rem; color: #94a3b8; }

.event-title { font-size: 1rem; margin: 5px 0; font-weight: 600; padding-right: 50px; }
.event-desc { font-size: 0.75rem; color: #cbd5e1; margin: 0; }

/* Dairesel İlerleme (Sağda) */
.progress-circle {
    position: absolute;
    right: 15px; bottom: 15px;
    width: 45px; height: 45px;
    border-radius: 50%;
    border: 3px solid #00f2ff;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700;
    background: rgba(0, 242, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
}

/* Ödül Mağazası Grid */
.rewards-section { flex: 1; }
.rewards-section .section-title {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 10px; font-size: 0.9rem; font-weight: 600; color: #e2e8f0;
}
.rewards-section .section-title a { font-size: 0.75rem; color: #00f2ff; text-decoration: none; }

.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: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.2s;
}

.reward-item:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }

.item-img { font-size: 2rem; margin-bottom: 5px; filter: drop-shadow(0 0 10px rgba(255,255,255,0.3)); }
.item-info h5 { font-size: 0.8rem; margin: 0; font-weight: 600; }
.item-info .price { font-size: 0.7rem; color: #00f2ff; font-weight: 700; }

.btn-claim {
    margin-top: 8px;
    width: 100%;
    border: none;
    background: #7c3aed;
    color: white;
    font-size: 0.7rem;
    padding: 5px;
    border-radius: 6px;
    cursor: pointer;
}
.btn-claim:hover { background: #6d28d9; }
.btn-claim.locked { background: #333; color: #777; cursor: not-allowed; }
/* === GERÇEKÇİ IPHONE 15 PRO KASASI === */

.iphone-frame {
    width: 320px;       /* Telefon Genişliği */
    height: 650px;      /* Telefon Yüksekliği */
    background: #1e1e1e; /* Kasa rengi (Titanium Grey) */
    border-radius: 55px; /* Köşe yuvarlaklığı */
    position: relative;
    z-index: 10;
    
    /* Çerçeve ve Gölgelendirme (3D Efekti) */
    box-shadow: 
        inset 0 0 0 2px #444,     /* İç metal hat */
        inset 0 0 0 6px #000,     /* Ekran çerçevesi (Bezel) */
        0 0 0 4px #2a2a2a,        /* Dış kasa kenarı */
        0 20px 50px rgba(0,0,0,0.6); /* Derin gölge */
        
    padding: 12px; /* Ekranın kasadan uzaklığı (Bezel kalınlığı) */
}

/* --- Fiziksel Tuşlar (Sol ve Sağ Yanlar) --- */
.btn-side {
    position: absolute;
    background: #2a2a2a;
    border-radius: 4px;
    width: 4px;
    box-shadow: inset -1px 0 2px rgba(0,0,0,0.5);
}

/* Sol Taraf: Sessize Alma ve Ses Tuşları */
.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; }

/* Sağ Taraf: Güç Tuşu */
.btn-power { top: 180px; right: -4px; height: 90px; }


/* --- İç Ekran Alanı --- */
.iphone-screen {
    width: 100%;
    height: 100%;
    background: black;
    border-radius: 44px; /* Ekran köşe yuvarlaklığı */
    overflow: hidden;    /* Taşan içerikleri kes */
    position: relative;
    /* İçerik düzeni */
    display: flex;
    flex-direction: column;
}


/* --- Dinamik Ada (Dynamic Island) --- */
.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;
    justify-content: center;
    align-items: center;
    /* Adanın etrafını hafifçe belli et */
    box-shadow: 0 0 0 1px rgba(255,255,255,0.1); 
}

.camera-lens {
    width: 12px;
    height: 12px;
    background: #1a1b26; /* Lens yansıması */
    border-radius: 50%;
    margin-left: 40px; /* Kamerayı sağa it */
    box-shadow: inset 0 0 4px rgba(255,255,255,0.2);
}


/* --- Alt Home Çubuğu --- */
.home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: white;
    border-radius: 10px;
    opacity: 0.8;
    z-index: 100;
}


/* --- Gamification İçerik Düzeltmeleri (Telefona Uydurma) --- */
.gamification-screen {
    /* Padding'i artır ki çentik ve home barın altında kalmasın */
    padding: 50px 20px 30px 20px !important; 
    background: linear-gradient(160deg, #100a26 0%, #000 100%);
}

/* Üst barı çentiğin altına itelim */
.dash-header {
    margin-top: 5px; 
}
/* === BAŞVURU SECTION TASARIMI === */
.application-section {
    padding: 100px 20px;
    position: relative;
    display: flex;
    justify-content: center;
}

/* Arka planda hafif mor/pembe parlama */
.bg-glow-decoration {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.app-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    gap: 60px;
    align-items: flex-start; /* Yukarı hizalı */
}

/* --- SOL TARAF (BİLGİ) --- */
/* === BAŞVURU SECTION V2 (CYBER PANEL) === */
.application-section-v2 {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

/* Merkezi Arkaplan Parlaması */
.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;
}

/* --- Başlık Alanı --- */
.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.7rem;
    letter-spacing: 2px;
    color: #00f2ff;
    margin-bottom: 15px;
    display: inline-block;
}

.cyber-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 10px;
}
.neon-text {
    color: #ff0055;
    text-shadow: 0 0 20px rgba(255, 0, 85, 0.5);
}

.cyber-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* --- ANA PANEL (Tek Parça) --- */
.cyber-panel {
    display: flex;
    background: rgba(10, 15, 30, 0.6);
    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 */
.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;
}

.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; }
.status-dot.yellow { background: #ffaa00; color: #ffaa00; }

.tech-text { display: flex; flex-direction: column; }
.tech-text strong { color: white; font-size: 0.95rem; font-weight: 600; }
.tech-text span { color: #94a3b8; font-size: 0.85rem; }

.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 */
.panel-form {
    width: 65%;
    padding: 50px;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.full-width { margin-bottom: 30px; }

/* INPUT STİLİ (Altı Çizgili - Cyberpunk) */
.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;
}

/* Focus Efekti (Label yukarı kayar) */
.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%;
}

/* Dosya Yükleme */
.tech-upload { margin-bottom: 30px; }
.upload-area {
    border: 1px dashed rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}
.upload-area:hover { border-color: #ff0055; background: rgba(255, 0, 85, 0.05); }
.upload-area .text { color: #e2e8f0; font-weight: 500; }
.upload-area .sub-text { color: #64748b; font-size: 0.8rem; }

/* Alt Kısım */
.tech-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tech-checkbox label { color: #94a3b8; font-size: 0.85rem; cursor: pointer; }
.tech-checkbox input { accent-color: #00f2ff; margin-right: 8px; }

.btn-cyber-submit {
    background: #ff0055;
    color: white;
    border: none;
    padding: 15px 40px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-cyber-submit:hover {
    background: #d40045;
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.4);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .cyber-panel { flex-direction: column; }
    .panel-sidebar, .panel-form { width: 100%; }
    .panel-sidebar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .tech-grid { grid-template-columns: 1fr; }
    .tech-footer { flex-direction: column; gap: 20px; }
    .btn-cyber-submit { width: 100%; }
}
/* === VİZYON & MİSYON SECTION TASARIMI === */
.vision-mission-section {
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    perspective: 1000px; /* 3D derinlik için şart */
}

/* Arkaplan Dijital Grid (Zemin Efekti) */
.digital-grid-bg {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 80%;
    background-image: 
        linear-gradient(rgba(0, 242, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg); /* Zemini yatır */
    z-index: -1;
    mask-image: linear-gradient(to top, black, transparent); /* Ufukta kaybolsun */
    -webkit-mask-image: linear-gradient(to top, black, transparent);
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* --- Başlık Alanı --- */
.vision-header { margin-bottom: 80px; }

.vision-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #00f2ff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.vision-title {
    font-size: 3rem;
    color: white;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-glow {
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.vision-subtitle {
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* --- HOLOGRAFİK KARTLAR (WRAPPER) --- */
.hologram-cards-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
}

/* Kart Temel Yapısı */
.holo-card {
    position: relative;
    width: 320px;
    transition: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-inner {
    background: rgba(15, 23, 42, 0.6); /* Glassmorphism */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: left;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* Parlama efekti için iç gölge */
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5); 
}

/* Hover Efekti (Kartın Kenarları Parlar) */
.holo-card:hover .card-inner {
    border-color: rgba(0, 242, 255, 0.4);
    box-shadow: 
        inset 0 0 20px rgba(0, 242, 255, 0.1),
        0 20px 40px rgba(0,0,0,0.5);
    transform: translateY(-10px);
}

/* İkon Kutusu */
.card-icon-box {
    width: 60px; height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
}

/* Ana İkon (Orta Kart) Farklı Renk */
.main-icon { background: rgba(255, 0, 85, 0.1); color: #ff0055; }
.main-icon .icon-pulse { border-color: rgba(255, 0, 85, 0.5); }

/* İkonun etrafındaki halka (Pulse Animasyonu) */
.icon-pulse {
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 20px;
    animation: pulseBorder 2s infinite;
}

@keyframes pulseBorder {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 0; }
}

.holo-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.holo-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- KONUMLANDIRMA (3D Etkisi) --- */

/* Sol ve Sağ Kartlar: Biraz geride, daha küçük ve daha koyu */
.card-left, .card-right {
    transform: scale(0.9) translateY(20px);
    opacity: 0.8;
    z-index: 1;
}

.card-left .card-inner { border-top: 2px solid rgba(0, 242, 255, 0.2); }
.card-right .card-inner { border-top: 2px solid rgba(0, 242, 255, 0.2); }

/* Orta Kart: Önde, büyük ve parlak */
.card-center {
    transform: scale(1.1);
    z-index: 2;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.card-center .card-inner {
    background: rgba(20, 30, 50, 0.8); /* Biraz daha opak */
    border: 1px solid rgba(255, 0, 85, 0.3); /* Pembe Çerçeve */
}

/* Hover durumunda yan kartların öne çıkması */
.card-left:hover, .card-right:hover {
    transform: scale(1) translateY(0);
    opacity: 1;
    z-index: 3; /* Hover olunca en öne geçsin */
}

/* Kartın altındaki hologram gölgesi */
.card-shadow {
    position: absolute;
    bottom: -20px; left: 10%; width: 80%; height: 10px;
    background: radial-gradient(ellipse at center, rgba(0, 242, 255, 0.4), transparent 70%);
    filter: blur(10px);
    opacity: 0.6;
}
.card-center .card-shadow { background: radial-gradient(ellipse at center, rgba(255, 0, 85, 0.4), transparent 70%); }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hologram-cards-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    
    .card-left, .card-center, .card-right {
        transform: scale(1) !important; /* Mobilde hepsi eşit olsun */
        width: 100%;
        max-width: 350px;
    }
    
    .card-center { order: -1; } /* Mobilde Misyon en üstte görünsün */
}
/* === HİZMETLER (SERVICES) SECTION === */
.services-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

/* Arka Planda Hafif Devre Deseni */
.circuit-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- BAŞLIK --- */
.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-pill {
    display: inline-block;
    background: rgba(0, 242, 255, 0.1);
    color: #00f2ff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.services-title {
    font-size: 3rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.neon-highlight {
    color: transparent;
    -webkit-text-stroke: 1px #ff0055;
    text-shadow: 0 0 20px rgba(255, 0, 85, 0.5);
    position: relative;
}
/* Dolgu efekti */
.neon-highlight::before {
    content: 'Hizmetlerimiz';
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    color: #ff0055;
    opacity: 0.5;
    filter: blur(5px);
}

.services-subtitle { color: #94a3b8; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* --- GRID YAPISI --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* --- HİZMET MODÜLÜ (KART) --- */
.service-module {
    position: relative;
    background: rgba(10, 15, 30, 0.6);
    border-radius: 24px;
    /* Kartın kendisine border vermiyoruz, içerdeki div ile yapacağız */
    padding: 2px; /* Border kalınlığı */
    overflow: hidden;
    transition: 0.4s ease;
}

/* Hareketli Neon Çerçeve (Gradient) */
.module-border {
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(transparent, transparent, transparent, #00f2ff);
    animation: rotateBorder 4s linear infinite;
    opacity: 0; /* Başlangıçta gizli */
    transition: 0.4s;
}

.service-module:hover .module-border { opacity: 1; }
.service-module:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* İçerik Alanı */
.module-content {
    background: #0b0f19; /* Kartın asıl zemini */
    border-radius: 22px;
    padding: 30px;
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

/* Üst Kısım: İkon ve Badge */
.module-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.icon-core {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.service-module:hover .icon-core {
    background: rgba(0, 242, 255, 0.1);
    border-color: #00f2ff;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.status-badge {
    font-size: 0.7rem; font-weight: 700;
    padding: 6px 12px; border-radius: 8px;
    letter-spacing: 0.5px;
}
.status-badge.success { background: rgba(0, 255, 136, 0.1); color: #00ff88; border: 1px solid rgba(0, 255, 136, 0.2); }
.status-badge.purple { background: rgba(124, 58, 237, 0.1); color: #a78bfa; border: 1px solid rgba(124, 58, 237, 0.2); }
.status-badge.neon { background: rgba(255, 0, 85, 0.1); color: #ff0055; border: 1px solid rgba(255, 0, 85, 0.2); }

/* Metinler */
.module-content h3 {
    color: white; font-size: 1.4rem; margin-bottom: 15px; font-weight: 700;
}

.module-content p {
    color: #94a3b8; font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; flex-grow: 1;
}

.details-link {
    color: white; text-decoration: none; font-size: 0.9rem; font-weight: 600;
    display: inline-flex; align-items: center; gap: 5px; opacity: 0.7; transition: 0.3s;
}
.details-link:hover { opacity: 1; color: #00f2ff; gap: 10px; }
/* === VİZYON & MİSYON V2 (CRYSTAL STYLE) === */
.vision-section-v2 {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

/* Arka Plandaki Dev Gezegen Gölgesi */
.planet-bg {
    position: absolute;
    bottom: -30%; left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(0, 242, 255, 0.15), transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Başlık Stili --- */
.vision-header-v2 {
    text-align: center;
    margin-bottom: 70px;
}

.header-tag {
    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;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.vision-title-v2 {
    font-size: 2.8rem;
    color: white;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text-v2 {
    background: linear-gradient(90deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vision-desc-v2 {
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* --- KRİSTAL KARTLAR (GRID) --- */
.crystal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.crystal-card {
    background: linear-gradient(180deg, rgba(20, 25, 45, 0.7) 0%, rgba(10, 15, 30, 0.9) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

/* Hover Efekti: Kart Yukarı Kalkar */
.crystal-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(180deg, rgba(30, 40, 60, 0.8) 0%, rgba(15, 20, 35, 1) 100%);
}

/* --- Üst Neon Çubuk (Renkli Şerit) --- */
.card-top-bar {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: white; /* Varsayılan */
    box-shadow: 0 0 15px currentColor;
}

/* Renk Varyasyonları */
.cyan-glow .card-top-bar { background: #00f2ff; box-shadow: 0 0 20px #00f2ff; }
.pink-glow .card-top-bar { background: #ff0055; box-shadow: 0 0 20px #ff0055; }
.purple-glow .card-top-bar { background: #a855f7; box-shadow: 0 0 20px #a855f7; }

/* Kartın Altına Hafif Renkli Gölge */
.crystal-card.cyan-glow:hover { box-shadow: 0 20px 40px rgba(0, 242, 255, 0.15); border-color: rgba(0, 242, 255, 0.3); }
.crystal-card.pink-glow:hover { box-shadow: 0 20px 40px rgba(255, 0, 85, 0.15); border-color: rgba(255, 0, 85, 0.3); }
.crystal-card.purple-glow:hover { box-shadow: 0 20px 40px rgba(168, 85, 247, 0.15); border-color: rgba(168, 85, 247, 0.3); }

/* --- İkon Alanı --- */
.card-icon-area {
    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;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.crystal-card:hover .card-icon-area {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.1);
}

/* İkon Renkleri */
.cyan-glow .icon { text-shadow: 0 0 10px rgba(0, 242, 255, 0.5); }
.pink-glow .icon { text-shadow: 0 0 10px rgba(255, 0, 85, 0.5); }
.purple-glow .icon { text-shadow: 0 0 10px rgba(168, 85, 247, 0.5); }

/* Metinler */
.crystal-card h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.crystal-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}
/* === SIKÇA SORULAN SORULAR (FAQ) === */
.faq-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.faq-bg-glow {
    position: absolute;
    right: -10%; top: 20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.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 sabit kalsın */
}

.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% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.faq-title {
    font-size: 3rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text-faq {
    background: linear-gradient(90deg, #ff0055, #ff4081);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.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 (LISTE) --- */
.faq-list {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(15, 23, 42, 0.6); /* Koyu Glass */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Aktif Durum (Tıklanınca) */
.faq-item.active {
    border-color: rgba(0, 242, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
    background: rgba(20, 30, 50, 0.8);
}

.faq-header {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.q-prefix {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 700;
    margin-right: 20px;
    font-family: monospace;
}
.faq-item.active .q-prefix { color: #00f2ff; }

.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; }

/* Toggle İ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;
}

/* Yatay Çizgi */
.toggle-icon span:nth-child(1) { width: 100%; height: 2px; }
/* Dikey Çizgi */
.toggle-icon span:nth-child(2) { width: 2px; height: 100%; }

/* Aktif olunca + işaretini X yap veya eksi yap */
.faq-item.active .toggle-icon span:nth-child(1) { background-color: #ff0055; transform: rotate(180deg); }
.faq-item.active .toggle-icon span:nth-child(2) { background-color: #ff0055; transform: rotate(90deg); opacity: 0; } /* Dikey kaybolsun, sadece tire kalsın istersen */
/* Eğer X olsun istiyorsan üsttekini: transform: rotate(90deg); opacity: 1; yap */

/* Cevap Alanı */
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-content {
    padding: 0 25px 25px 70px; /* Soldan boşluk bırakarak hizala */
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .faq-container { flex-direction: column; }
    .faq-info { position: static; margin-bottom: 40px; }
    .faq-content { padding-left: 25px; } /* Mobilde hizayı düzelt */
}
/* === FOOTER TASARIMI === */
.lex-footer {
    position: relative;
    background: #05070a; /* Çok koyu zemin */
    margin-top: 100px;
    padding-top: 60px;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

/* Üst Neon Çizgi (Gradient) */
.footer-neon-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, #00f2ff, #ff0055, transparent);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr; /* Kolon genişlikleri */
    gap: 40px;
    margin-bottom: 60px;
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* --- KOLON 1: MARKA --- */
.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}
.footer-logo .highlight {
    background: linear-gradient(90deg, #00c6ff, #ff0055);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; text-decoration: none; font-size: 1.1rem;
    transition: 0.3s;
}

.social-btn:hover {
    background: rgba(0, 242, 255, 0.1);
    border-color: #00f2ff;
    color: #00f2ff;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
    transform: translateY(-3px);
}

/* --- KOLON 2: LİNKLER --- */
.footer-menu {
    list-style: none; padding: 0; margin: 0;
}

.footer-menu li { margin-bottom: 12px; }

.footer-menu a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
    display: inline-block;
}

.footer-menu a:hover {
    color: #00f2ff;
    transform: translateX(5px);
}

.active-link { color: #ff0055 !important; font-weight: 600; }

/* --- KOLON 3: İLETİŞİM --- */
.contact-list { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
    display: flex; align-items: center; gap: 15px;
}

.icon-box {
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: #00f2ff;
}

.contact-item .info { display: flex; flex-direction: column; }
.contact-item .label { font-size: 0.75rem; color: #64748b; text-transform: uppercase; }
.contact-item .value { color: white; font-size: 0.95rem; font-weight: 500; text-decoration: none; transition: 0.3s; }
.contact-item .value:hover { color: #00f2ff; }

/* --- KOLON 4: CTA (KATIL) --- */
.footer-col.cta-col {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-col p { color: #cbd5e1; font-size: 0.9rem; margin-bottom: 20px; }

.btn-footer-cta {
    display: flex; justify-content: space-between; align-items: center;
    background: linear-gradient(90deg, #00c6ff, #ff0080);
    padding: 12px 20px;
    border-radius: 12px;
    color: white; text-decoration: none; font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.3);
}

.btn-footer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 128, 0.5);
}

/* --- ALT ÇUBUK --- */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
}

.legal-links a {
    color: #94a3b8; text-decoration: none; transition: 0.3s;
}
.legal-links a:hover { color: white; }
.separator { margin: 0 10px; opacity: 0.3; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr; /* Mobilde tek kolon */
        gap: 50px;
        text-align: center;
    }
    
    .footer-col.cta-col { text-align: left; } /* CTA kutusu sola yaslı kalsın */
    .social-links { justify-content: center; }
    .contact-item { justify-content: center; } /* İletişim de ortalansın istersen, değilse flex-start yap */
    .contact-item { justify-content: flex-start; text-align: left; } /* Düzeltme: Mobilde iletişim sola yaslı daha iyi */
    
    .bottom-container {
        flex-direction: column;
        gap: 15px;
    }
}
/* --- BU SAYFAYA ÖZEL EK CSS --- */
        /* Bunu style.css'e de ekleyebilirsin ama burada da çalışır */
        
        /* Grid Yapısı */
        .creators-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        /* --- Creator Kart Tasarımı --- */
        .creator-card {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            padding: 25px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            backdrop-filter: blur(10px);
        }

        /* Hover Efektleri */
        .creator-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 242, 255, 0.3);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 
                        inset 0 0 20px rgba(0, 242, 255, 0.05);
        }

        /* Neon Çerçeve Animasyonu (Border) */
        .creator-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; height: 2px;
            background: linear-gradient(90deg, transparent, #00f2ff, #ff0055, transparent);
            transform: translateX(-100%);
            transition: 0.5s;
        }
        .creator-card:hover::before {
            transform: translateX(100%);
        }

        /* Profil Resmi */
        .profile-wrapper {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            position: relative;
        }
        
        .profile-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(255,255,255,0.1);
            transition: 0.3s;
        }
        
        .creator-card:hover .profile-img {
            border-color: #00f2ff;
            box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
        }

        /* Platform Rozeti (TikTok simgesi vb.) */
        .platform-badge {
            position: absolute;
            bottom: 0; right: 0;
            background: #000;
            border-radius: 50%;
            padding: 5px;
            border: 1px solid #333;
            width: 30px; height: 30px;
            display: flex; align-items: center; justify-content: center;
            font-size: 14px;
        }

        /* İsim ve Kullanıcı Adı */
        .creator-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 5px;
        }
        
        .creator-username {
            font-size: 0.9rem;
            color: #94a3b8;
            font-family: monospace;
            background: rgba(255,255,255,0.05);
            padding: 2px 8px;
            border-radius: 6px;
            display: inline-block;
            margin-bottom: 20px;
        }
        .creator-username::before { content: '@'; color: #ff0055; }

        /* Sosyal Medya İkonları */
        .social-row {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .sm-link {
            width: 35px; height: 35px;
            border-radius: 8px;
            background: rgba(255,255,255,0.05);
            display: flex; align-items: center; justify-content: center;
            color: #fff; text-decoration: none;
            transition: 0.3s;
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .sm-link:hover { transform: translateY(-3px); }
        .sm-link.tiktok:hover { background: #000; border-color: #00f2ff; text-shadow: 2px 2px 0px #ff0055; }
        .sm-link.insta:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; }
        .sm-link.youtube:hover { background: #ff0000; border-color: #ff0000; }
        .sm-link.twitch:hover { background: #6441a5; border-color: #6441a5; }

        /* Buton */
        .btn-view-profile {
            background: linear-gradient(90deg, rgba(0,242,255,0.1), rgba(255,0,85,0.1));
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff;
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-view-profile:hover {
            background: linear-gradient(90deg, #00f2ff, #ff0055);
            border-color: transparent;
            box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
        }

        /* --- MODAL (POPUP) STİLİ --- */
        .creator-modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
            z-index: 9999;
            display: none; justify-content: center; align-items: center;
            opacity: 0; transition: 0.3s;
        }
        .creator-modal-overlay.active { display: flex; opacity: 1; }

        .creator-modal {
            background: #0f172a;
            border: 1px solid rgba(0, 242, 255, 0.3);
            width: 90%; max-width: 500px;
            border-radius: 20px;
            padding: 40px;
            position: relative;
            text-align: center;
            box-shadow: 0 0 50px rgba(0,0,0,0.8);
            transform: scale(0.8); transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .creator-modal-overlay.active .creator-modal { transform: scale(1); }

        .modal-close {
            position: absolute; top: 15px; right: 20px;
            font-size: 30px; color: #64748b; cursor: pointer;
            transition: 0.3s;
        }
        .modal-close:hover { color: #fff; transform: rotate(90deg); }

        .modal-img {
            width: 150px; height: 150px; border-radius: 50%;
            border: 4px solid #00f2ff;
            margin-bottom: 20px;
            box-shadow: 0 0 30px rgba(0, 242, 255, 0.3);
            object-fit: cover;
        }
        
        .stat-box {
            display: flex; justify-content: center; gap: 30px; margin: 25px 0;
            background: rgba(255,255,255,0.03); padding: 15px; border-radius: 12px;
        }
        .stat-item h4 { color: #fff; font-size: 1.2rem; margin: 0; }
        .stat-item span { color: #94a3b8; font-size: 0.8rem; }
        
        /* Logo Yazı Stili - Sert ve Teknolojik */
.logo-text {
    font-family: 'Orbitron', sans-serif; /* Ethnocentric tarzı font */
    font-weight: 900; /* En kalın hali */
    font-size: 24px;  /* Boyutu isteğine göre ayarla */
    text-transform: uppercase; /* Hepsini BÜYÜK HARF yapar (daha sert durur) */
    letter-spacing: 2px; /* Harfler arasını biraz açar */
    display: flex;
    align-items: center;
    gap: 5px; /* Lex ve Ajans arası boşluk */
}

/* Lex Kısmı */
.logo-text .lex {
    color: #ffffff; /* Beyaz renk (Değiştirebilirsin) */
}

/* Ajans Kısmı */
.logo-text .ajans {
    color: #8b5cf6; /* Temana uygun mor renk (Değiştirebilirsin) */
}
/* =========================================
   BLOG SİSTEMİ (COSMIC STYLE)
   ========================================= */

/* Blog Grid Düzeni */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Blog Kartı Görseli */
.blog-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.crystal-card:hover .blog-thumb {
    border-color: #00f2ff;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

/* Blog Detay Sayfası */
.blog-detail-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(10, 15, 30, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

/* Detay Sayfası Üst Neon Çizgi */
.blog-detail-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, #00f2ff, #ff0055);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

.blog-meta {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.blog-meta span i { margin-right: 5px; color: #00f2ff; }

/* Detay İçerik Okunabilirliği */
.blog-content {
    color: #e2e8f0;
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-content h2, .blog-content h3 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-content p { margin-bottom: 20px; }

.blog-content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.blog-content ul { margin-bottom: 20px; padding-left: 20px; }
.blog-content li { margin-bottom: 10px; color: #cbd5e1; }

.btn-back {
    display: inline-block;
    margin-top: 30px;
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
}
.btn-back:hover { color: #00f2ff; transform: translateX(-5px); }

/* Mobil Uyum */
@media (max-width: 768px) {
    .blog-detail-container { padding: 20px; }
    .blog-content { font-size: 1rem; }
}
/* Arka plan ve glow efektleri tıklamayı engellemesin */
#background-wrapper, 
.glow-effect, 
#particles-js {
    pointer-events: none !important;
    z-index: -1 !important;
}

/* Blog kartlarını öne çıkaralım */
.crystal-card {
    position: relative;
    z-index: 10; /* Kartlar her zaman efektlerin üstünde olsun */
    cursor: pointer;
}

/* Kartın içindeki linkin tüm alanı kaplamasını garanti edelim */
.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    width: 100%;
}
/* =========================================
   YORUMLAR (REVIEWS) BÖLÜMÜ
   ========================================= */

/* Yorumlar Izgarası (Grid) */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Yorum Kartı Özel Ayarları (Crystal Card üzerine ek) */
.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    cursor: default; /* Tıklanabilir hissi vermesin */
}

/* Kartın Üst Kısmı: Profil ve İsim */
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2); /* Neon glow */
    transition: transform 0.3s ease;
}

.review-card:hover .review-avatar {
    transform: scale(1.1);
    border-color: #00f2ff;
}

.review-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
}

/* Yıldızlar */
.review-stars {
    margin-top: 5px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.star-filled { color: #f59e0b; text-shadow: 0 0 10px rgba(245, 158, 11, 0.4); }
.star-empty { color: #475569; }

/* Yorum Metni Alanı */
.review-body {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-grow: 1; /* Kart uzarsa metin alanı da uzasın */
    position: relative;
}

.quote-icon {
    color: #00f2ff;
    opacity: 0.5;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: block;
}

.review-text {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* Tarih Kısmı */
.review-date {
    margin-top: 15px;
    text-align: right;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }
}
/* =========================================
   NEON GLASS REVIEWS (REFERANS TASARIM)
   ========================================= */

.glass-reviews-section {
    padding: 100px 20px;
    position: relative;
    z-index: 10;
}

.glass-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px; /* Kartlar arası boşluk geniş olmalı */
    margin-top: 60px;
    padding: 20px;
}

/* Kapsayıcı (Kartın kendisi) */
.glass-card-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
    transition: 0.4s ease;
}

/* Arkadaki Eğik Renkli Şekil */
.neon-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 65%; /* Karttan biraz dar */
    border-radius: 20px;
    transform: skewX(-10deg); /* O eğik görüntüyü veren kod */
    z-index: 0;
    opacity: 0.8;
    transition: 0.4s ease;
    filter: blur(8px); /* Hafif yayılma efekti */
}

/* Renk Varyasyonları */
.shape-orange {
    background: linear-gradient(135deg, #ff0055, #ff9900);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.4);
}

.shape-blue {
    background: linear-gradient(135deg, #cc00ff, #00f2ff);
    box-shadow: 0 10px 30px rgba(204, 0, 255, 0.4);
}

.shape-green {
    background: linear-gradient(135deg, #00f2ff, #00ff88);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

/* Ön Plandaki Cam Kart */
.glass-content {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 30px 0; /* Şeklin alttan üstten taşması için */
    background: rgba(255, 255, 255, 0.05); /* Çok şeffaf beyaz */
    backdrop-filter: blur(20px); /* BUZLU CAM EFEKTİ */
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Profil Alanı */
.glass-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.glass-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.2);
}

.glass-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.glass-stars {
    font-size: 0.9rem;
    color: #ffd700; /* Altın yıldız */
    margin-top: 5px;
}

/* Yorum Metni */
.glass-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* Hover Efekti */
.glass-card-wrapper:hover .neon-shape {
    transform: skewX(-5deg) scale(1.05); /* Hoverda biraz düzelir ve büyür */
    opacity: 1;
    filter: blur(15px); /* Parlama artar */
}

.glass-card-wrapper:hover .glass-content {
    border-color: rgba(255,255,255,0.3);
}
/* =========================================
   NEON GLASS KARTLAR (REFERANS TASARIM)
   ========================================= */

.glass-reviews-section {
    padding: 80px 20px;
    position: relative;
    z-index: 5;
}

/* KARTLARI YAN YANA DİZEN GRID YAPISI */
.glass-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Mobilde 1, PC'de 3 yan yana */
    gap: 50px; /* Kartlar arası boşluk */
    margin-top: 50px;
    padding: 20px;
}

/* KARTIN DIŞ KAPLAYICISI */
.glass-card-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px; /* Kart yüksekliği */
    transition: 0.4s ease;
}

/* 1. ARKADAKİ EĞİK NEON ŞEKİL (Referans Resimdeki Renkli Kısım) */
.neon-shape {
    position: absolute;
    width: 65%; /* Karttan biraz daha dar olsun ki yanlardan taşmasın */
    height: 100%;
    top: 0;
    border-radius: 20px;
    transform: skewX(-12deg); /* Şekli eğer (Eğik görüntü) */
    z-index: 0;
    opacity: 0.8;
    filter: blur(15px); /* Hafif neon parlaması */
    transition: 0.4s ease;
}

/* Renk Varyasyonları (Sırayla değişecek) */
.shape-orange {
    background: linear-gradient(135deg, #ff4d4d, #f9cb28); /* Kırmızı-Turuncu */
    box-shadow: 0 10px 30px rgba(255, 77, 77, 0.4);
}

.shape-blue {
    background: linear-gradient(135deg, #7928ca, #ff0080); /* Mor-Pembe */
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
}

.shape-green {
    background: linear-gradient(135deg, #00f260, #0575e6); /* Yeşil-Mavi */
    box-shadow: 0 10px 30px rgba(0, 242, 96, 0.4);
}

/* 2. ÖNDEKİ BUZLU CAM KART */
.glass-content {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 20px 0; /* Arkadaki şekil alttan üstten hafif taşsın */
    background: rgba(255, 255, 255, 0.05); /* Çok şeffaf beyaz */
    backdrop-filter: blur(25px); /* BUZLU CAM EFEKTİ */
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.3s;
}

/* Profil ve İsim Alanı */
.glass-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.glass-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.glass-stars {
    font-size: 0.8rem;
    color: #fbbf24; /* Altın rengi */
    margin-top: 4px;
    letter-spacing: 2px;
}

/* Yorum Metni */
.glass-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-style: italic;
    margin: 0;
}

/* Hover Efektleri */
.glass-card-wrapper:hover .neon-shape {
    transform: skewX(-5deg) scale(1.05); /* Hoverda biraz düzelir ve büyür */
    opacity: 1;
    filter: blur(20px);
}

.glass-card-wrapper:hover .glass-content {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}
/* =========================================
   NEON GLASS KARTLAR (SABİT DİKEY TASARIM)
   ========================================= */

.glass-reviews-section {
    padding: 80px 20px;
    position: relative;
    z-index: 5;
}

/* Flexbox ile kartları ortala ve yan yana diz */
.glass-reviews-grid {
    display: flex;
    flex-wrap: wrap; /* Sığmazsa alt satıra geç */
    justify-content: center; /* Ortada topla */
    gap: 40px; /* Kartlar arası boşluk */
    margin-top: 50px;
    padding: 20px;
}

/* KARTIN KENDİSİ (SABİT GENİŞLİK - ARTIK ESNEMEZ) */
.glass-card-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 320px; /* SABİT GENİŞLİK: Kart hep bu boyda kalır */
    height: 400px; /* Yükseklik */
    flex-shrink: 0; /* Küçülmesini engelle */
    transition: 0.4s ease;
}

/* 1. ARKADAKİ EĞİK NEON ŞEKİL */
.neon-shape {
    position: absolute;
    width: 70%; /* Kartın arkasında ince uzun durur */
    height: 90%;
    border-radius: 20px;
    transform: skewX(-10deg); /* Hafif eğiklik */
    z-index: 0;
    opacity: 0.8;
    filter: blur(15px);
    transition: 0.4s ease;
}

/* Renkler */
.shape-orange {
    background: linear-gradient(135deg, #ff4d4d, #f9cb28);
    box-shadow: 0 10px 30px rgba(255, 77, 77, 0.4);
}
.shape-blue {
    background: linear-gradient(135deg, #7928ca, #ff0080);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
}
.shape-green {
    background: linear-gradient(135deg, #00f260, #0575e6);
    box-shadow: 0 10px 30px rgba(0, 242, 96, 0.4);
}

/* 2. ÖNDEKİ BUZLU CAM KART */
.glass-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center; /* İçeriği ortala */
    text-align: center; /* Yazıları ortala */
    transition: 0.3s;
}

/* Profil Alanı */
.glass-header {
    display: flex;
    flex-direction: column; /* Alt alta diz (Profil fotosu üstte, isim altta) */
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.glass-avatar {
    width: 70px; /* Biraz büyüttük */
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.glass-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 5px 0 0 0;
    color: #fff;
}

.glass-stars {
    font-size: 0.85rem;
    color: #fbbf24;
    letter-spacing: 2px;
}

/* Yorum Metni */
.glass-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.glass-body p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-style: italic;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* 5 satırdan fazlasını kes */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hover Efektleri */
.glass-card-wrapper:hover .neon-shape {
    transform: skewX(-5deg) scale(1.05);
    opacity: 1;
    filter: blur(20px);
}

.glass-card-wrapper:hover .glass-content {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}
/* =========================================
   NEON GLASS REVIEWS (SENİN GÖNDERDİĞİN TASARIM)
   ========================================= */

.neon-reviews-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

.neon-box {
    position: relative;
    width: 320px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 30px;
    transition: 0.5s;
}

/* ARKADAKİ EĞİK RENKLİ ŞEKİL */
.neon-box::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 50px;
    width: 50%;
    height: 100%;
    text-decoration: none;
    background: #fff;
    border-radius: 8px;
    transform: skewX(15deg);
    transition: 0.5s;
}

/* ARKADAKİ BULANIK PARLAMA (NEON EFFECT) */
.neon-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 50%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    transform: skewX(15deg);
    transition: 0.5s;
    filter: blur(30px); /* Parlamayı yapan kod */
}

/* HOVER EFEKTİ */
.neon-box:hover:before,
.neon-box:hover:after {
    transform: skewX(0deg);
    left: 20px;
    width: calc(100% - 90px);
}

/* --- RENKLER (Sırasıyla Otomatik Gelecek) --- */

/* 1. Renk: Sarı/Pembe */
.neon-box.color-1::before,
.neon-box.color-1::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

/* 2. Renk: Mavi/Pembe */
.neon-box.color-2::before,
.neon-box.color-2::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

/* 3. Renk: Yeşil/Mavi */
.neon-box.color-3::before,
.neon-box.color-3::after {
    background: linear-gradient(315deg, #4dff03, #00d0ff);
}

/* KÖŞELERDEKİ HAREKETLİ IŞIKLAR (SPAN) */
.neon-box span {
    display: block;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 5;
    pointer-events: none;
}

.neon-box span::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: 0.1s;
    animation: animate 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.neon-box:hover span::before {
    top: -50px; left: 50px;
    width: 100px; height: 100px;
    opacity: 1;
}

.neon-box span::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 100%; height: 100%;
    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);
    animation-delay: -1s;
}

.neon-box:hover span::after {
    bottom: -50px; right: 50px;
    width: 100px; height: 100px;
    opacity: 1;
}

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

/* --- İÇERİK KUTUSU (BUZLU CAM) --- */
.neon-content {
    position: relative;
    left: 0;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1;
    transform: 0.5s;
    color: #fff;
    width: 100%; /* İçeriğin düzgün durması için */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.neon-box:hover .neon-content {
    left: -25px;
    padding: 60px 40px;
}

/* BAŞLIK (İsim) */
.neon-content h2 {
    font-size: 1.8em;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

/* YORUM METNİ */
.neon-content p {
    font-size: 1.1em;
    margin-bottom: 10px;
    line-height: 1.4em;
    color: #e2e8f0;
}

/* PROFİL VE YILDIZ ALANI */
.neon-meta {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.neon-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.5);
}

.neon-stars {
    color: #ffd700; /* Altın Yıldız */
    font-size: 0.9rem;
    letter-spacing: 2px;
}
/* =========================================
   USER'S CUSTOM NEON DESIGN (BİREBİR KOPYA)
   ========================================= */

.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;  /* SABİT GENİŞLİK */
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 30px;
  transition: 0.5s;
}

/* ARKADAKİ NET ŞEKİL */
.custom-box::before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 50px;
  width: 50%;
  height: 100%;
  text-decoration: none;
  background: #fff;
  border-radius: 8px;
  transform: skewX(15deg);
  transition: 0.5s;
}

/* ARKADAKİ BULANIK PARLAMA (GLOW) */
.custom-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  width: 50%;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  transform: skewX(15deg);
  transition: 0.5s;
  filter: blur(30px); /* Sadece burası bulanık */
}

/* HOVER EFEKTİ */
.custom-box:hover:before,
.custom-box:hover:after {
  transform: skewX(0deg);
  left: 20px;
  width: calc(100% - 90px);
}

/* RENKLER */
/* 1. Renk */
.custom-box.color-1::before,
.custom-box.color-1::after {
  background: linear-gradient(315deg, #ffbc00, #ff0058);
}

/* 2. Renk */
.custom-box.color-2::before,
.custom-box.color-2::after {
  background: linear-gradient(315deg, #03a9f4, #ff0058);
}

/* 3. Renk */
.custom-box.color-3::before,
.custom-box.color-3::after {
  background: linear-gradient(315deg, #4dff03, #00d0ff);
}

/* HAREKETLİ IŞIKLAR (SPAN) */
.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 {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: 0.1s;  
  animation: animate 2s ease-in-out infinite;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.custom-box:hover span::before {
  top: -50px; left: 50px;
  width: 100px; height: 100px;
  opacity: 1;
}

.custom-box span::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 100%; height: 100%;
  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);
  animation-delay: -1s;
}

.custom-box:hover span::after {
  bottom: -50px; right: 50px;
  width: 100px; height: 100px;
  opacity: 1;
}

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

/* İÇERİK KUTUSU (BUZLU CAM) */
.custom-content {
  position: relative;
  left: 0;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px); /* Sadece arka planı buzlar */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1;
  transform: 0.5s;
  color: #fff;
  /* İçeriği ortalamak için eklemeler */
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  min-height: 250px; 
  width: 100%;
}

.custom-box:hover .custom-content {
  left: -25px;
  padding: 60px 40px;
}

.custom-content h2 {
  font-size: 2em;
  color: #fff;
  margin-bottom: 10px;
}

.custom-content p {
  font-size: 1.1em;
  margin-bottom: 10px;
  line-height: 1.4em;
  color: #e2e8f0;
}

.custom-content a {
  display: inline-block;
  font-size: 1.1em;
  color: #111;
  background: #fff;
  padding: 10px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 5px;
}

.custom-content a:hover {
  background: #ffcf4d;
  border: 1px solid rgba(255, 0, 88, 0.4);
  box-shadow: 0 1px 15px rgba(1, 1, 1, 0.2);
}

/* Profil Resmi için Ek Stil */
.custom-avatar {
    width: 60px; height: 60px; border-radius: 50%; object-fit: cover;
    margin-bottom: 15px; border: 2px solid rgba(255,255,255,0.5);
}
/* =========================================
   NEON KARTLAR (KÜÇÜLTÜLMÜŞ & ORİJİNAL BLUR)
   ========================================= */

.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;
  /* --- BOYUTLARI KÜÇÜLTTÜM --- */
  width: 290px;  /* Eskiden 320px idi */
  height: 350px; /* Eskiden 400px idi */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 20px; /* Kenar boşluklarını da biraz kıstım */
  transition: 0.5s;
}

/* ARKADAKİ NET ŞEKİL */
.custom-box::before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 40px; /* Küçüldüğü için biraz sola çektim */
  width: 50%;
  height: 100%;
  text-decoration: none;
  background: #fff;
  border-radius: 8px;
  transform: skewX(15deg);
  transition: 0.5s;
}

/* ARKADAKİ BULANIK PARLAMA (GLOW) */
.custom-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  width: 50%;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  transform: skewX(15deg);
  transition: 0.5s;
  filter: blur(30px); /* Sadece arkadaki ışık bulanık */
}

/* HOVER EFEKTİ */
.custom-box:hover:before,
.custom-box:hover:after {
  transform: skewX(0deg);
  left: 15px;
  width: calc(100% - 30px);
}

/* RENKLER */
.custom-box.color-1::before, .custom-box.color-1::after {
  background: linear-gradient(315deg, #ffbc00, #ff0058);
}
.custom-box.color-2::before, .custom-box.color-2::after {
  background: linear-gradient(315deg, #03a9f4, #ff0058);
}
.custom-box.color-3::before, .custom-box.color-3::after {
  background: linear-gradient(315deg, #4dff03, #00d0ff);
}

/* HAREKETLİ IŞIKLAR (SPAN) */
.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 {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: 0.1s;  
  animation: animate 2s ease-in-out infinite;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.custom-box:hover span::before {
  top: -40px; left: 40px;
  width: 80px; height: 80px;
  opacity: 1;
}

.custom-box span::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 100%; height: 100%;
  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);
  animation-delay: -1s;
}

.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); }
}

/* İÇERİK KUTUSU (BUZLU CAM) */
.custom-content {
  position: relative;
  left: 0;
  padding: 20px 25px; /* İç boşluğu biraz azalttım */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px); /* Sadece kutunun zeminini buzlar */
  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;
  justify-content: center;
  width: 100%;
  height: auto;
  min-height: 220px; /* Minimum yükseklik */
}

.custom-box:hover .custom-content {
  left: -20px;
  padding: 40px 25px; /* Hoverda genişleme */
}

.custom-content h2 {
  font-size: 1.5em; /* Yazı fontunu bir tık küçülttüm */
  color: #fff;
  margin-bottom: 8px;
}

.custom-content p {
  font-size: 0.95em;
  margin-bottom: 10px;
  line-height: 1.4em;
  color: #e2e8f0;
}

/* Profil Resmi */
.custom-avatar {
    width: 55px; height: 55px; 
    border-radius: 50%; 
    object-fit: cover;
    margin-bottom: 12px; 
    border: 2px solid rgba(255,255,255,0.5);
}