@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #8a2be2;
    --primary-glow: rgba(138, 43, 226, 0.5);
    --bg-dark: #050505;
    --bg-card: #0a0a0a;
    --text-white: #ffffff;
    --text-gray: #a1a1a1;
    --nav-bg: rgba(10, 10, 10, 0.85);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background-color: var(--bg-dark); color: var(--text-white); overflow-x: hidden; min-height: 100vh; display: flex; flex-direction: column; }

/* CANVAS */
#voidCanvas, #mouseCanvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
#voidCanvas { z-index: -2; }
#mouseCanvas { z-index: -1; }

/* --- LOADING SCREEN --- */
/* --- LOADER WRAPPER GÜNCELLEME --- */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    /* Navbar'ın z-index'i 100000 civarıysa burayı daha da artır */
    z-index: 999999; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    pointer-events: all; /* Loader açıkken arkaya tıklanmasın */
}

/* Navbar'ın varsayılan z-index'ini kontrol et */
.navbar3-container {
    z-index: 100000; /* Loader'dan daha düşük olmalı */
}
.loader-logo { width: 80px; margin-bottom: 20px; animation: pulse 1.5s infinite; }
.spinner { width: 40px; height: 40px; border: 3px solid rgba(138, 43, 226, 0.3); border-radius: 50%; border-top-color: var(--primary); animation: spin 1s ease-in-out infinite; }
body.loaded #loader-wrapper { transform: translateY(-100%); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0% { opacity: 0.7; transform: scale(0.95); } 50% { opacity: 1; transform: scale(1); } 100% { opacity: 0.7; transform: scale(0.95); } }


/* NAV LINKLERI ORTALAMA & ANIMASYON */
.nav-links {
    position: absolute; left: 50%; transform: translateX(-50%); /* Tam ortala */
    display: flex; gap: 40px; align-items: center;
}

.nav-item {
    color: var(--text-gray); text-decoration: none;
    font-size: 0.95rem; font-weight: 500;
    position: relative; padding: 5px 0;
    transition: color 0.3s;
}

.nav-item:hover { color: var(--text-white); }

/* ALT CIZGI ANIMASYONU (Soldan Sağa) */
.nav-item::after {
    content: ''; position: absolute; width: 100%; height: 2px;
    bottom: 0; left: 0;
    background-color: var(--primary);
    transform: scaleX(0); transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-item:hover::after {
    transform: scaleX(1); transform-origin: bottom left;
}

.nav-btn {
    background: var(--primary); color: white !important;
    padding: 10px 25px; border-radius: 30px;
    font-weight: 600 !important; text-decoration: none;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
    transition: 0.3s;
}
.nav-btn:hover { background: #9d4edd; box-shadow: 0 0 25px rgba(138, 43, 226, 0.6); }

/* MAIN & HERO */
main { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding-top: 150px; padding-bottom: 50px; }
.hero h1 { font-size: 4rem; font-weight: 800; letter-spacing: -2px; margin-bottom: 20px; line-height: 1.1; }
.hero span { color: var(--primary); text-shadow: 0 0 40px rgba(138, 43, 226, 0.4); }
.hero p { color: var(--text-gray); font-size: 1.1rem; max-width: 600px; margin-bottom: 40px; }

/* PARTNERS */
.partners-section { background: var(--bg-card); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 30px 0; overflow: hidden; white-space: nowrap; }
.partners-track { display: inline-flex; animation: scroll 30s linear infinite; }
.partner-logo { width: 200px; padding: 0 20px; display: flex; justify-content: center; align-items: center; }
.partner-logo img { max-width: 100%; max-height: 50px; filter: grayscale(100%) opacity(0.5); transition: 0.3s; }
.partner-logo img:hover { filter: grayscale(0%) opacity(1); }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- FOOTER & BIG HEADER --- */
footer {
    background: #020202; padding: 100px 5% 30px;
    border-top: 1px solid rgba(255,255,255,0.05); margin-top: auto;
    position: relative; overflow: hidden;
}

/* BIG HEADER (ARKADAKI DEV YAZI) */
.footer-big-text {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw; /* Ekran genişliğine göre devasa */
    font-weight: 900; color: rgba(255, 255, 255, 0.02); /* Çok silik */
    z-index: 0; pointer-events: none; white-space: nowrap;
    user-select: none;
}

.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px; max-width: 1400px; margin: 0 auto 50px;
    position: relative; z-index: 1; /* Yazının üstünde dursun */
}

.footer-brand .brand-header { display: flex; align-items: center; margin-bottom: 20px; }
.footer-brand h2 { font-size: 2rem; letter-spacing: -1px; margin: 0; }
.footer-brand p { color: var(--text-gray); line-height: 1.6; font-size: 0.95rem; max-width: 300px; }
.footer-col h4 { color: var(--text-white); margin-bottom: 20px; font-size: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--text-gray); text-decoration: none; transition: 0.3s; font-size: 0.95rem; }
.footer-col a:hover { color: var(--primary); padding-left: 5px; }

/* SVG FIX */
/* --- SOCIAL ICON HOVER EFEKTLERİ (Marka Renkleri & Parlama) --- */

/* Genel Sosyal İkon Stili (Mevcut olanın üzerine yazar veya günceller) */
/* --- SOSYAL MEDYA İKONLARI VE ÖZEL PARLAMA EFEKTLERİ --- */

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    font-size: 20px; /* İkon boyutu */
    color: #a1a1a1; /* Başlangıç rengi (gri) */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Zıplama efekti */
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hover Genel */
.social-icon:hover {
    transform: translateY(-5px);
    background: transparent;
    border-color: transparent;
}

/* --- PLATFORMA ÖZEL RENKLER & GLOW (PARLAMA) --- */

/* Instagram: Pembe/Turuncu Parlama */
.social-icon.instagram:hover {
    color: #E1306C;
    text-shadow: 0 0 15px rgba(225, 48, 108, 0.7);
    filter: drop-shadow(0 0 5px rgba(225, 48, 108, 0.4));
}

/* Discord: Blurple Parlama */
.social-icon.discord:hover {
    color: #5865F2;
    text-shadow: 0 0 15px rgba(88, 101, 242, 0.7);
    filter: drop-shadow(0 0 5px rgba(88, 101, 242, 0.4));
}

/* GitHub: Beyaz Parlama */
.social-icon.github:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
}

/* YouTube: Kırmızı Parlama */
.social-icon.youtube:hover {
    color: #FF0000;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.4));
}
.footer-bottom {
    text-align: center; padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #444; font-size: 0.85rem; position: relative; z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    nav { padding: 0 20px; }
    .nav-links { display: none; } /* Mobilde gizle */
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 0 auto; }
    .social-links { justify-content: center; }
    .footer-brand .brand-header { justify-content: center; }
}



/* =========================================
   NAV2 SİSTEMİ (FIX & ESTETİK)
   ========================================= */

/* Kapsül Navbar (Masaüstü & Mobil Kapsayıcı) */
.nav2-container {
    position: fixed;
    top: 20px;
    /* Ortalamayı Margin ile yapıyoruz ki fixed child bozulmasın */
    left: 0; right: 0; margin: 0 auto;
    
    width: 90%;
    max-width: 1200px;
    height: 70px;
    
    /* Buzlu Cam */
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    z-index: 2000; /* En üstte */
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.nav2-logo img { height: 35px; vertical-align: middle; }

/* Masaüstü Linkler */
.nav2-links { display: flex; gap: 40px; }
.nav2-item {
    color: #a1a1a1; text-decoration: none; font-weight: 500; position: relative; transition: 0.3s;
}
.nav2-item:hover { color: white; }
.nav2-item::after {
    content: ''; position: absolute; width: 100%; height: 2px; bottom: -5px; left: 0;
    background: #8a2be2; transform: scaleX(0); transition: 0.3s; transform-origin: right;
}
.nav2-item:hover::after { transform: scaleX(1); transform-origin: left; }

/* Buton */
.nav2-btn {
    background: #8a2be2; color: white !important; padding: 10px 25px;
    border-radius: 30px; font-weight: 600; text-decoration: none;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4); transition: 0.3s;
}
.nav2-btn:hover { background: #9d4edd; box-shadow: 0 0 25px rgba(138, 43, 226, 0.6); }

/* Hamburger */
.nav2-hamburger { display: none; cursor: pointer; }
.nav2-hamburger .bar {
    display: block; width: 25px; height: 3px; margin: 5px auto;
    background: white; transition: 0.3s; border-radius: 3px;
}

/* --- MOBİL MENÜ (PERDE) --- */
.nav2-mobile-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    
    /* Tam Ekran Siyah Cam */
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(20px);
    z-index: 1999; /* Navbar'ın (2000) hemen altında */
    
    /* Başlangıçta Gizli (Yukarıda) */
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    
    display: flex; justify-content: center; align-items: center;
}

/* Aktif Olunca */
.nav2-mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.nav2-mobile-content {
    display: flex; flex-direction: column; align-items: center; gap: 30px;
}

.mobile-link {
    font-size: 2rem; color: white; text-decoration: none; font-weight: 700;
    transition: 0.3s;
}
.mobile-link:hover { color: #8a2be2; letter-spacing: 1px; }
.mobile-btn-show { display: inline-block; transform: scale(1.2); margin-top: 20px; }

/* --- RESPONSIVE AYARLAR (900px ALTI) --- */
@media (max-width: 900px) {
    .nav2-links, .nav2-actions { display: none; } /* Masaüstünü gizle */
    .nav2-hamburger { display: block; } /* Hamburgeri aç */
    .nav2-container { padding: 0 20px; width: 95%; } /* Mobilde padding kıs */

    /* Çarpı Animasyonu */
    .nav2-hamburger.active .bar:nth-child(2) { opacity: 0; }
    .nav2-hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); background: #8a2be2; }
    .nav2-hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: #8a2be2; }
}

/* =========================================
   1. CUSTOM SCROLLBAR (MOR ÇUBUK)
   ========================================= */
/* Çubuğun genel genişliği */
::-webkit-scrollbar {
    width: 12px;
}

/* Çubuğun arkasındaki yol (Track) */
::-webkit-scrollbar-track {
    background: #050505; /* Sitenin arka planıyla aynı koyu renk */
}

/* Hareket eden çubuk (Thumb) */
::-webkit-scrollbar-thumb {
    background-color: #8a2be2; /* Bizim Mor */
    border-radius: 6px;       /* Yuvarlak hatlar */
    border: 3px solid #050505; /* Çubuğun etrafında boşluk bırakır (Estetik durur) */
}

/* Üstüne gelince */
::-webkit-scrollbar-thumb:hover {
    background-color: #9d4edd; /* Daha açık bir mor */
}

/* =========================================
   2. FOOTER KONUMLANDIRMA (STICKY FOOTER)
   ========================================= */

/* Body ayarı: Sayfa yapısını esnek kutu yapıyoruz */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Sayfa en az ekran boyu kadar olsun */
    overflow-x: hidden; /* Yan taşmaları engelle */
}

/* Main (Orta Kısım) ayarı */
main {
    /* Bu kod büyüyü yapan kısımdır. 
       Footer'ı aşağı itmek için mevcut boşluğu kaplar. */
    flex: 1; 
    
    /* Navbar fixed olduğu için içeriğin üstte kalmasını engeller */
    padding-top: 120px; 
    
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Footer ayarı */
footer {
    /* İçerik kısaysa bile en altta durur, 
       içerik uzunsa scrool yapınca en altta çıkar */
    margin-top: auto; 
    width: 100%;
    z-index: 10; /* Void efektinin üstünde dursun */
}

/* =========================================
   3. İÇERİK DÜZENLEMELERİ & YENİ BÖLÜMLER
   ========================================= */


/* --- 3 ADIMDA İŞLEYİŞ (Kartlar) --- */
.steps-section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}
.section-title span { color: var(--primary); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.2);
}

.step-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.step-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: white; }
.step-card p { color: var(--text-gray); line-height: 1.6; }

/* Kartın köşesine numara ekle */
.step-number {
    position: absolute;
    top: -20px; right: -20px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    transition: 0.3s;
}
.step-card:hover .step-number { color: rgba(138, 43, 226, 0.1); }

/* --- FAQ (Sıkça Sorulan Sorular) --- */
.faq-section {
    padding: 100px 5%;
    max-width: 800px; /* Daha dar ve okunaklı */
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i { transition: 0.3s; color: var(--primary); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: var(--text-gray);
    line-height: 1.6;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

/* FAQ Açık Hali */
.faq-item.active {
    border-color: var(--primary);
    background: rgba(138, 43, 226, 0.05);
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-answer {
    max-height: 200px; /* İçeriğe göre artabilir */
    padding-bottom: 20px;
}

/* =========================================
   YENİ VERSİYON (V2) STİLLERİ
   ========================================= */

/* --- HERO BÖLÜMÜ V2 --- */
.hero2 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

.hero2 h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(to right, #fff, #a1a1a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero2 span {
    background: linear-gradient(to right, #8a2be2, #d8b4fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
}

.hero2 p {
    color: #b0b0b0; /* Okunabilir Gri */
    font-size: 1.2rem;
    max-width: 650px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* --- BUTONLAR V2 (Ok İşaretli) --- */
.btn-glow2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #8a2be2;
    color: white !important;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
    border: 1px solid transparent;
}

.btn-glow2 i {
    transition: transform 0.3s ease; /* Ok hareketi için */
}

.btn-glow2:hover {
    background: #9d4edd;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.6);
}

.btn-glow2:hover i {
    transform: translateX(5px); /* Ok sağa kayar */
}

.btn-outline2 {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.5);
    box-shadow: none;
}
.btn-outline2:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: #8a2be2;
}

/* --- REFERANSLAR V2 --- */
.partners-section2 {
    padding: 40px 0;
    background: #020202;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    white-space: nowrap;
}
.partners-track2 { display: inline-flex; animation: scroll2 30s linear infinite; }
.partner-logo2 { width: 180px; padding: 0 30px; display: flex; justify-content: center; align-items: center; }
.partner-logo2 img { max-width: 100%; max-height: 45px; filter: grayscale(100%) opacity(0.5); transition: 0.3s; }
.partner-logo2 img:hover { filter: grayscale(0%) opacity(1); transform: scale(1.1); }
@keyframes scroll2 { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- ADIMLAR V2 (KARTLAR) --- */
.steps-section2 { padding: 120px 5%; max-width: 1300px; margin: 0 auto; }
.section-title2 { text-align: center; font-size: 3rem; margin-bottom: 70px; font-weight: 700; color: white; }
.section-title2 span { color: #8a2be2; text-shadow: 0 0 20px rgba(138, 43, 226, 0.4); }

.steps-grid2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.step-card2 {
    background: rgba(20, 20, 20, 0.6); /* Daha koyu zemin */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 30px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Kart Hover Efekti */
.step-card2:hover {
    transform: translateY(-15px);
    border-color: #8a2be2;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(138, 43, 226, 0.1);
}

.step-icon2 { font-size: 3.5rem; color: #8a2be2; margin-bottom: 25px; transition: 0.3s; }
.step-card2:hover .step-icon2 { transform: scale(1.1); color: #b26ef7; }

.step-card2 h3 { font-size: 1.6rem; margin-bottom: 15px; color: white; }
.step-card2 p { color: #a0a0a0; line-height: 1.7; font-size: 1rem; }

.step-number2 {
    position: absolute; top: -15px; right: -10px;
    font-size: 7rem; font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    transition: 0.3s;
    user-select: none;
}
.step-card2:hover .step-number2 { color: rgba(138, 43, 226, 0.08); transform: rotate(-10deg); }

/* --- FAQ V2 (AKORDEON) --- */
.faq-section2 { padding: 50px 5% 150px; max-width: 900px; margin: 0 auto; }

.faq-item2 {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question2 {
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    background: transparent;
    border: none;
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-question2:hover { color: #8a2be2; background: rgba(255,255,255,0.02); }
.faq-question2 i { transition: transform 0.4s ease; color: #8a2be2; }

/* FAQ İçerik Alanı */
.faq-answer2 {
    max-height: 0; /* Başlangıçta kapalı */
    overflow: hidden;
    padding: 0 30px;
    color: #b0b0b0;
    line-height: 1.7;
    transition: max-height 0.5s ease, padding 0.5s ease;
    border-top: 1px solid transparent;
}

/* Aktif (Açık) Durum */
.faq-item2.active {
    border-color: #8a2be2;
    background: rgba(138, 43, 226, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.faq-item2.active .faq-question2 { color: white; }
.faq-item2.active .faq-question2 i { transform: rotate(180deg); } /* Ok döner */

.faq-item2.active .faq-answer2 {
    max-height: 300px; /* İçerik için yeterli alan */
    padding-bottom: 25px;
    padding-top: 10px;
    border-top-color: rgba(255,255,255,0.05);
}

/* Mobilde Hero Yazısını Küçült */
@media (max-width: 768px) {
    .hero2 h1 { font-size: 3rem; }
    .section-title2 { font-size: 2.2rem; }
}

/* =========================================
   404 SAYFASI ÖZEL STİLLERİ (Kocaman & Glitch)
   ========================================= */

/* 404 Sayfası Body Ayarı */
.error-page-body {
    background-color: var(--bg-dark); /* Ana koyu renk */
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Taşmaları gizle */
}

.error-container {
    text-align: center;
    z-index: 1;
    padding: 20px;
}

/* --- KOCAMAN GLITCH YAZISI --- */
.error-glitch {
    font-size: 15rem; /* İNANILMAZ BÜYÜK */
    font-weight: 900;
    line-height: 1;
    color: white; /* Renk sabit beyaz */
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: -10px;
    
    /* Ana metni hafifçe titretiyoruz */
    animation: main-shake 2s infinite;
}

/* Glitch Katmanları (Pseudo-elements) */
.error-glitch::before,
.error-glitch::after {
    content: attr(data-text); /* Ana metnin kopyasını al */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark); /* Arka planla aynı renk (gizlemek için) */
    overflow: hidden;
    color: white; /* Kopya yazıların rengi de beyaz */
    clip-path: inset(0 0 0 0); /* Başlangıçta görünür */
}

/* Sol Katman (Sola kayan parça) */
.error-glitch::before {
    left: -3px;
    text-shadow: 1px 0 #fff; /* Hafif beyaz gölge */
    animation: glitch-flow-left 3s infinite linear alternate-reverse;
}

/* Sağ Katman (Sağa kayan parça) */
.error-glitch::after {
    left: 3px;
    text-shadow: -1px 0 #fff; /* Hafif beyaz gölge */
    animation: glitch-flow-right 2s infinite linear alternate;
}

/* --- ANİMASYONLAR --- */

/* Ana metnin hafif titremesi */
@keyframes main-shake {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-1px, 1px); }
    20% { transform: translate(1px, -1px); }
    30% { transform: translate(-2px, 0); }
    40% { transform: translate(1px, 2px); }
    50% { transform: translate(-1px, -1px); }
    60% { transform: translate(2px, 0); }
    70% { transform: translate(0, 2px); }
    80% { transform: translate(-2px, -1px); }
    90% { transform: translate(2px, 1px); }
}

/* Sola Akış Animasyonu */
@keyframes glitch-flow-left {
    0% { clip-path: inset(0 0 0 0); transform: translate(0); }
    10% { clip-path: inset(10% 0 85% 0); transform: translate(-5px); }
    20% { clip-path: inset(85% 0 10% 0); transform: translate(-10px); }
    30% { clip-path: inset(50% 0 30% 0); transform: translate(-15px); }
    40% { clip-path: inset(10% 0 50% 0); transform: translate(-5px); }
    50% { clip-path: inset(30% 0 85% 0); transform: translate(-20px); }
    60% { clip-path: inset(90% 0 5% 0); transform: translate(-5px); }
    70% { clip-path: inset(5% 0 90% 0); transform: translate(-15px); }
    80% { clip-path: inset(40% 0 10% 0); transform: translate(-10px); }
    90% { clip-path: inset(70% 0 20% 0); transform: translate(-5px); }
    100% { clip-path: inset(0 0 0 0); transform: translate(0); }
}

/* Sağa Akış Animasyonu */
@keyframes glitch-flow-right {
    0% { clip-path: inset(0 0 0 0); transform: translate(0); }
    15% { clip-path: inset(80% 0 5% 0); transform: translate(5px); }
    30% { clip-path: inset(10% 0 80% 0); transform: translate(10px); }
    45% { clip-path: inset(40% 0 20% 0); transform: translate(15px); }
    60% { clip-path: inset(5% 0 90% 0); transform: translate(5px); }
    75% { clip-path: inset(90% 0 5% 0); transform: translate(15px); }
    90% { clip-path: inset(20% 0 60% 0); transform: translate(10px); }
    100% { clip-path: inset(0 0 0 0); transform: translate(0); }
}

/* Alt Metinler */
.error-container h2 { font-size: 2rem; color: #e0e0e0; margin-bottom: 15px; }
.error-container p { color: #a1a1a1; font-size: 1.1rem; margin-bottom: 30px; }

/* Mobilde boyutu biraz kıs */
@media (max-width: 768px) {
    .error-glitch { font-size: 8rem; letter-spacing: -5px; }
    .error-container h2 { font-size: 1.5rem; }
}

/* =========================================
   CTA (TOPLULUĞA KATIL) BÖLÜMÜ
   ========================================= */

.cta-section {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 80px; /* Footer ile arasında boşluk */
    padding: 80px 20px;
    border-radius: 30px;
    overflow: hidden; /* Dışarı taşan animasyonu kes */
    text-align: center;
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* HAREKETLİ ARKA PLAN (CSS ANIMATION) */
.cta-bg-animation {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(
        45deg,
        #ff00cc, #333399, #00d4ff, #8a2be2
    );
    background-size: 400% 400%;
    animation: gradientFlow 10s ease infinite;
    z-index: 0;
    opacity: 0.9;
}

/* Renklerin Akış Animasyonu */
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* İçerik Katmanı */
.cta-content {
    position: relative;
    z-index: 1; /* Arka planın üstünde dur */
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

/* Butonlar */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

/* Beyaz Buton */
.cta-btn.primary {
    background: white;
    color: #8a2be2;
}
.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Şeffaf Buton */
.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}
.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .cta-section {
        width: 95%; /* Mobilde kenarlara yaklaşsın */
        padding: 60px 20px;
        margin-bottom: 50px;
    }
    .cta-content h2 {
        font-size: 2rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .cta-btn {
        width: 100%; /* Tam genişlik buton */
        text-align: center;
    }
}

/* =========================================
   FLOATING BUTTONS (SÜZÜLEN BUTONLAR)
   ========================================= */

/* --- 1. DISCORD BUTONU (SOL ALT) --- */
.floating-discord {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #5865F2; /* Discord Rengi */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    z-index: 9990; /* İçerik üstünde, menü altında */
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-discord 3s infinite;
}

.floating-discord:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(88, 101, 242, 0.7);
}

/* Discord Tooltip (Yanda çıkan yazı) */
.floating-discord .tooltip {
    position: absolute;
    left: 75px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: 0.3s;
    pointer-events: none;
}

.floating-discord:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Discord Nabız Animasyonu */
@keyframes pulse-discord {
    0% { box-shadow: 0 0 0 0 rgba(88, 101, 242, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(88, 101, 242, 0); }
    100% { box-shadow: 0 0 0 0 rgba(88, 101, 242, 0); }
}

/* --- 2. YUKARI ÇIK BUTONU (SAĞ ALT) --- */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(20, 20, 20, 0.8); /* Yarı saydam siyah */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    z-index: 9990;
    opacity: 0; /* Başlangıçta gizli */
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* JavaScript ile eklenecek 'active' sınıfı */
.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: #8a2be2; /* Mor renk */
    border-color: #8a2be2;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
}

/* MOBİL AYARI */
@media (max-width: 768px) {
    .floating-discord { width: 50px; height: 50px; font-size: 24px; bottom: 20px; left: 20px; }
    .scroll-top-btn { width: 45px; height: 45px; bottom: 20px; right: 20px; }
    .floating-discord .tooltip { display: none; } /* Mobilde tooltip kapat */
}

/* =========================================
   FLOATING BUTTONS (SÜZÜLEN BUTONLAR) - FIX
   ========================================= */

/* --- SOL ALT: DISCORD --- */
.floating-discord {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background-color: #5865F2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    z-index: 9995; /* Yüksek katman */
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-discord 3s infinite;
}

.floating-discord:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(88, 101, 242, 0.7);
}

@keyframes pulse-discord {
    0% { box-shadow: 0 0 0 0 rgba(88, 101, 242, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(88, 101, 242, 0); }
    100% { box-shadow: 0 0 0 0 rgba(88, 101, 242, 0); }
}

/* --- SAĞ ALT: YUKARI ÇIK OKU --- */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(138, 43, 226, 0.3); /* Mor çerçeve */
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 22px;
    text-decoration: none;
    z-index: 9995; /* Yüksek katman */
    
    /* Başlangıçta Görünmez */
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Aktif Olunca (JS Ekler) */
.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: #8a2be2;
    border-color: #8a2be2;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
    transform: translateY(-5px);
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
    .floating-discord {
        width: 45px; height: 45px; font-size: 22px;
        bottom: 20px; left: 20px;
    }
    .scroll-top-btn {
        width: 45px; height: 45px; font-size: 18px;
        bottom: 20px; right: 20px;
    }
}

/* =========================================
   CTA BÖLÜMÜ V2 - VIDEO ARKA PLAN
   ========================================= */

.cta-section {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 100px 20px; /* Video olduğu için biraz daha geniş alan */
    border-radius: 30px;
    overflow: hidden; /* Videonun taşmasını engelle */
    text-align: center;
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #000; /* Video yüklenmezse siyah kalsın */
}

/* --- VIDEO AYARLARI --- */
.cta-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0; /* En altta */
    transform: translate(-50%, -50%); /* Tam ortala */
    object-fit: cover; /* Kutuyu doldur */
}

/* --- KARARTMA KATMANI (OVERLAY) --- */
.cta-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* %40 Siyah Perde */
    z-index: 1;
}

/* --- İÇERİK --- */
.cta-content {
    position: relative;
    z-index: 2; /* Videonun ve perdenin üstünde */
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff; /* Bembeyaz */
    margin-bottom: 20px;
    text-shadow: 0 5px 20px rgba(0,0,0,0.5); /* Okunabilirlik gölgesi */
}

.cta-content p {
    font-size: 1.2rem;
    color: #f0f0f0; /* Kırık beyaz */
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* --- BUTONLAR --- */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

/* Beyaz Buton */
.cta-btn.primary {
    background: white;
    color: #000;
}
.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Cam Efektli Buton */
.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}
.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
}

/* Mobil Ayarı */
@media (max-width: 768px) {
    .cta-content h2 { font-size: 2.2rem; }
    .cta-btn { width: 100%; text-align: center; }
}

/* --- FOOTER BOTTOM ANA YAPISI --- */
.footer-bottom {
    position: relative; /* Designed by'ı buna göre havaya kaldıracağız */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    margin-top: 80px; /* Üstteki içeriklerle (Hızlı Erişim vs.) arayı açar */
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* O ince çizgi */
    color: #a1a1a1;
}

.footer-credits {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* --- DESIGNED BY (ÇİZGİNİN ÜSTÜNDE DURAN KUTU) --- */
.designed-by {
    position: absolute;
    bottom: calc(100% + 20px); /* Çizginin 20px üzerine fırlatır */
    right: 0; /* Sağ tarafa yaslar */
    text-decoration: none;
    color: #a1a1a1;
    font-size: 0.85rem;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03); /* Cam gibi hafif şeffaf arka plan */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    min-width: 200px;
    justify-content: center;
}

/* --- POWERED BY (ÇİZGİNİN ALTINDA KALAN KUTU) --- */
.powered1-by {
    text-decoration: none;
    color: #a1a1a1;
    font-size: 0.85rem;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    min-width: 200px;
    justify-content: center;
}

/* Kalın Yazı Renkleri */
.designed-by span, .powered1-by span {
    color: #ffffff;
    font-weight: 700;
    margin-left: 5px;
}

/* --- HOVER EFEKTLERİ --- */
.designed-by:hover {
    background: rgba(43, 217, 226, 0.08);
    border-color: rgba(43, 217, 226, 0.4);
    transform: translateY(-5px);
}

.powered1-by:hover {
    background: rgba(138, 43, 226, 0.08);
    border-color: rgba(138, 43, 226, 0.4);
    transform: translateY(-5px);
}

.designed-by:hover span {
    color: #2bd9e2;
    text-shadow: 0 0 10px rgba(43, 217, 226, 0.5);
}

.powered1-by:hover span {
    color: #8a2be2;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
        gap: 20px;
    }
    
    .footer-credits {
        align-items: center;
        gap: 15px; /* Mobilde kutular arasına boşluk koy */
    }

    .designed-by {
        position: static; /* Mobilde çizgiden bağımsız alt alta gelsinler diye havadan indiriyoruz */
        bottom: auto;
        right: auto;
    }
}

/* =========================================
   HAKKIMIZDA & EKİP BÖLÜMÜ ÖZEL STİLLERİ
   ========================================= */

.about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

/* Hakkımızda Metin Bölümleri */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
}

.about-text-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-text-card h3 i {
    color: var(--primary, #8a2be2);
}

.about-text-card p {
    color: #a1a1a1;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 15px;
}

/* --- STATS KARTLARI (Deneyim vs) --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    background: rgba(138, 43, 226, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.3);
    padding: 30px 20px;
    text-align: center;
    border-radius: 20px;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

.stat-item h4 {
    font-size: 3rem;
    color: white;
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-item p {
    color: var(--primary, #8a2be2);
    font-size: 1rem;
    font-weight: 600;
}

/* --- TAKIM / FOUNDER BÖLÜMÜ --- */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.team-card {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 40px 30px;
    border-radius: 30px;
    width: 320px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: #8B0000;
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.2); /* Founder Rengi Gölgesi */
}

/* Avatar ve Çerçeve */
.avatar-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px auto;
}

.team-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #1a1a1a;
    transition: border-color 0.4s ease;
}

/* Canlı Lanyard Renkleri CSS */
.team-avatar.online { border-color: #43b581; box-shadow: 0 0 15px #43b581; }
.team-avatar.idle { border-color: #faa61a; box-shadow: 0 0 15px #faa61a; }
.team-avatar.dnd { border-color: #f04747; box-shadow: 0 0 15px #f04747; }
.team-avatar.offline { border-color: #747f8d; }

.team-name {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* FOUNDER BADGE GRADIENT */
.founder-badge {
    display: inline-block;
    background: linear-gradient(90deg, #ff0000, #8b0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0px 5px 15px rgba(255,0,0,0.3);
}

.team-card-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-card-socials a {
    color: #a1a1a1;
    font-size: 1.4rem;
    background: rgba(255,255,255,0.05);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.team-card-socials a:hover {
    color: white;
    transform: translateY(-3px);
}

/* Lanyard Discord Animasyon Kutusu */
.lanyard-status-text {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 3px solid #0a0a0a; /* Arkaplan ile uyumlu oyuk */
    background: #747f8d;
    transition: 0.3s;
}
.status-dnd { background: #f04747; }
.status-idle { background: #faa61a; }
.status-online { background: #43b581; }


/* Mobil Optimizasyon */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .team-grid { flex-direction: column; align-items: center; gap: 30px; }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* =========================================
   TSDEV PREMİUM GLOBAL DEGİŞKENLER
   ========================================= */
:root {
    /* Renk Paleti */
    --primary: #8a2be2;
    --primary-light: #ab6afb;
    --primary-dark: #631ab1;
    --bg-dark: #050505;
    --bg-surface: rgba(15, 15, 15, 0.6);
    --bg-card: #0a0a0a;
    
    /* Metin Renkleri */
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    
    /* Neon & Cam Hissiyatı */
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-strong: rgba(255, 255, 255, 0.15);
    --glow-strong: 0 0 30px rgba(138, 43, 226, 0.4);
    --glow-soft: 0 10px 40px rgba(138, 43, 226, 0.15);
    --nav-bg: rgba(8, 8, 8, 0.85);

    /* Mükemmel Yaylı Animasyon Eğrisi (Snappy Spring) */
    --bounce-bezier: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --smooth-bezier: cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =========================================
   GENEL AYARLAR & TYPOGRAPHY PREMİUM FIX
   ========================================= */
* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Inter', sans-serif;
    /* Mac ve Windows'ta yazıların piksel pürüzünü alıp yağ gibi kayganlaştırır */
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale; 
}

/* TSDEV Şık Yazı Seçimi Hissi */
::selection {
    background: var(--primary);
    color: #fff;
    text-shadow: none;
}

body {
    background-color: var(--bg-dark); 
    color: var(--text-white); 
    overflow-x: hidden; 
    min-height: 100vh; 
    display: flex; 
    flex-direction: column;
}

main { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    position: relative;
    z-index: 2;
}

/* ARKA PLAN TUVALİ */
#voidCanvas, #mouseCanvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
#voidCanvas { z-index: -2; opacity: 0.8; }
#mouseCanvas { z-index: -1; }

/* =========================================
   1. CUSTOM SCROLLBAR (Ultra Şık Çizgi)
   ========================================= */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb {
    background-color: rgba(138, 43, 226, 0.7);
    border-radius: 20px;
    border: 3px solid var(--bg-dark); /* Arkayı hafif keserek daha ince estetik gösterir */
}
::-webkit-scrollbar-thumb:hover { background-color: var(--primary-light); }


/* =========================================
   2. GELİŞMİŞ AKILLI LOADER (MATRIX GİRİŞ)
   ========================================= */
#loader-wrapper {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--bg-dark);
    z-index: 999999; 
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: opacity 0.7s var(--smooth-bezier), transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    pointer-events: all; 
}
.loader-logo { width: 90px; margin-bottom: 25px; animation: pulseGlow 1.5s infinite var(--smooth-bezier); }
.spinner { 
    width: 45px; height: 45px; 
    border: 3px solid rgba(138, 43, 226, 0.2); 
    border-radius: 50%; 
    border-top-color: var(--primary); 
    border-right-color: var(--primary-light);
    animation: spin 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite; 
}
body.loaded #loader-wrapper { opacity: 0; transform: translateY(-30%); pointer-events: none; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulseGlow { 
    0%, 100% { opacity: 0.8; filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.3)); transform: scale(0.95); } 
    50% { opacity: 1; filter: drop-shadow(0 0 25px rgba(138, 43, 226, 0.7)); transform: scale(1.02); } 
}


/* =========================================
   3. BUTON SİHİRBAZLIĞI (HOVER PREMİUM ETKİLERİ)
   ========================================= */
.btn-glow2 {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white !important;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s var(--smooth-bezier);
    /* Üst kısıma çok ufak beyazlatıcı border efekti (3d apple hissiyatı) */
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4), inset 0 2px 2px rgba(255,255,255,0.2);
    border: 1px solid transparent;
}
.btn-glow2 i { transition: transform 0.4s var(--bounce-bezier); }

.btn-glow2:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.6), inset 0 2px 2px rgba(255,255,255,0.3);
}
.btn-glow2:hover i { transform: translateX(5px) scale(1.1); }
.btn-glow2:active { transform: translateY(1px); box-shadow: 0 5px 10px rgba(138, 43, 226, 0.4); } /* Tıklanma Esnekliği */

.btn-outline2 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(138, 43, 226, 0.5);
    box-shadow: none;
}
.btn-outline2:hover {
    background: rgba(138, 43, 226, 0.15);
    border-color: var(--primary-light);
    box-shadow: inset 0 0 20px rgba(138,43,226,0.2);
}


/* =========================================
   4. GÖRSEL DOKUNUŞLAR & HERO (KARŞILAMA EKRANI)
   ========================================= */
.hero h1, .hero2 h1, .section-title, .section-title2 {
    letter-spacing: -2px; /* Keskin Ciddiyet */
}
.hero2 h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 25px;
    background: linear-gradient(to right bottom, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero2 h1 span, .section-title2 span {
    background: linear-gradient(to right, #b981f1, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.4); /* Gelişmiş Aura */
}
.hero2 p {
    color: var(--text-gray); font-size: 1.25rem; font-weight: 400; max-width: 650px;
    margin-bottom: 40px; line-height: 1.6;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}


/* =========================================
   5. REFERANSLAR (GÖLGELİ VE GİZEMLİ SCROLL MASK)
   ========================================= */
.partners-section2 {
    padding: 50px 0; background: rgba(5, 5, 5, 0.6); backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.03);
    overflow: hidden; white-space: nowrap; position: relative;
    
    /* VUUAV DETAYI: Sağdan soldan şeffaflık oluşturarak aniden bitmeyi engeller, logolar kaybolarak çıkar */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.partners-track2 { display: inline-flex; animation: scrollFast 35s linear infinite; }
.partner-logo2 { width: 180px; padding: 0 40px; display: flex; justify-content: center; align-items: center; }
.partner-logo2 img { 
    max-width: 100%; max-height: 45px; 
    filter: grayscale(100%) opacity(0.3); 
    transition: all 0.5s var(--smooth-bezier); 
}
.partner-logo2 img:hover { filter: grayscale(0%) opacity(1); transform: scale(1.15) translateY(-5px); }

@keyframes scrollFast { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


/* =========================================
   6. GELİŞMİŞ "CAM (GLASS)" KART YAPILARI (Hizmet/Adım Kartları)
   ========================================= */
.steps-card, .step-card2, .about-text-card, .service-box, .stat-item, .faq-item2 {
    background: var(--bg-surface);
    backdrop-filter: blur(25px); /* İleri düzey buğulanma */
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); /* Ağır kart görünümü */
    transition: all 0.5s var(--bounce-bezier); /* Sıçrama Yaylanması */
    position: relative;
    overflow: hidden;
}

/* Glass İç Parıldama (Zarif üst vuruş çizgisi - Premium his) */
.step-card2::before, .service-box::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    opacity: 0.5; transition: opacity 0.5s ease;
}

/* Hover Etkileşimi */
.step-card2:hover, .service-box:hover, .stat-item:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(138, 43, 226, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), inset 0 0 40px rgba(138, 43, 226, 0.08);
}
.step-card2:hover::before, .service-box:hover::before { opacity: 1; } /* Parlamayı canlandır */


/* KART İÇ DETAYLARI */
.step-icon2, .s-icon { transition: transform 0.4s var(--bounce-bezier), filter 0.3s ease; }
.step-card2:hover .step-icon2 { transform: scale(1.15) rotate(10deg); filter: drop-shadow(0 0 15px var(--primary-glow)); }


/* =========================================
   7. AKILLI FAQ (SSS) / AKORDEON PÜRÜZSÜZLÜĞÜ
   ========================================= */
.faq-question2 {
    transition: background 0.3s, color 0.3s;
    font-family: 'Inter', sans-serif;
}
.faq-item2:hover { border-color: rgba(255, 255, 255, 0.15); }
.faq-item2.active {
    border-color: var(--primary);
    background: linear-gradient(to right, rgba(138, 43, 226, 0.1), rgba(15,15,15,0.5));
    box-shadow: var(--glow-soft);
}
.faq-answer2 p {
    color: #b0b0b0; letter-spacing: 0.2px; font-weight: 400; line-height: 1.7;
}


/* =========================================
   8. 404 KUSURSUZ GLITCH EFEKTİ 
   ========================================= */
.error-page-body { background: #020202; }
.error-glitch { font-size: 15rem; font-weight: 900; letter-spacing: -8px; background: none; }
.error-glitch::before, .error-glitch::after { color: white; background: #020202; opacity: 0.9; }

/* Kırmızı - Mavi Kaymalar Premiumlaştı */
.error-glitch::before { text-shadow: 3px 0 #00ffff; left: -2px; }
.error-glitch::after { text-shadow: -3px 0 #ff00ff; left: 2px; }


/* =========================================
   9. GÜÇLÜ CTA ALANI (Büyük Video Container)
   ========================================= */
.cta-section {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 60px rgba(138, 43, 226, 0.15);
    border: 1px solid var(--glass-border-strong);
}
.cta-overlay {
    background: linear-gradient(0deg, rgba(5,5,5,0.8) 0%, rgba(5,5,5,0.3) 100%);
    backdrop-filter: blur(2px); /* Arkadaki videoyu epik bir matlıkta bırakır */
}
.cta-btn.secondary { transition: background 0.4s var(--smooth-bezier); }
.cta-btn.secondary:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px) scale(1.03); }


/* =========================================
   10. KAN CANLILIGI - LANYARD API ALANI (Hakkımızda)
   ========================================= */
.team-card { padding: 45px 30px; }
.avatar-container { margin-bottom: 25px; transition: transform 0.4s var(--bounce-bezier); }
.team-card:hover .avatar-container { transform: scale(1.1); } /* Resme Yaklaşım Hissi */

.founder-badge { 
    position: relative; overflow: hidden; font-weight: 900; 
    filter: drop-shadow(0 2px 5px rgba(255,0,0,0.3));
}
/* Shimmer (Üzerinden Işık Geçme Animasyonu) */
.founder-badge::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: shineBadge 4s infinite linear;
}
@keyframes shineBadge { to { left: 200%; } }

.team-avatar.online { border-color: #43b581; box-shadow: 0 0 20px rgba(67, 181, 129, 0.6); }
.team-avatar.idle { border-color: #faa61a; box-shadow: 0 0 20px rgba(250, 166, 26, 0.6); }
.team-avatar.dnd { border-color: #f04747; box-shadow: 0 0 20px rgba(240, 71, 71, 0.6); }
/* Küçük Işık Topu Efekti Nefes Alsın */
.lanyard-status-text { border: 4px solid #141414; box-shadow: inset 0 2px 4px rgba(0,0,0,0.4); animation: breatheStatus 2s infinite ease-in-out; }
@keyframes breatheStatus { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); filter: brightness(1.2); } }


/* =========================================
   11. YÜZEN VİDGETLER VE FOOTER MÜKEMMELİYETİ
   ========================================= */
.floating-discord, .scroll-top-btn {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), inset 0 2px 3px rgba(255,255,255,0.15); /* Gelişmiş kabarıklık */
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.scroll-top-btn { border-color: rgba(255, 255, 255, 0.08); background: rgba(30,30,30,0.7); }
.scroll-top-btn.active:hover { background: var(--primary); transform: translateY(-7px); box-shadow: var(--glow-strong); }

.floating-discord { background: #5865F2; }
.floating-discord:hover { background: #4752c4; transform: translateY(-7px) scale(1.08) rotate(-5deg); }

/* --- Footer "Powered By" Yenilenmesi --- */
.powered-by span {
    background: linear-gradient(to right, #ffffff, #ffffff); /* Durgun Hali Beyazdır */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s var(--smooth-bezier);
}
.powered-by:hover span {
    background: linear-gradient(to right, #b981f1, #8a2be2); /* Efsane Gradien Mor Neonu Harekete Geçer */
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 25px rgba(138, 43, 226, 0.6); 
    transform: scale(1.05); display: inline-block;
}
.social-icon { overflow: hidden; } /* Taşıp ikon kutusunu çirkinleştirmesin diye kilit */
.social-icon:active { transform: scale(0.9); }


/* =========================================
   MOBİL (RESPONSIVE) FİX KISITLAMALARI (Global Yıkılmalar Önlendi)
   ========================================= */
@media (max-width: 900px) {
    .hero2 h1 { font-size: 3rem; line-height: 1.2; }
    .page-header h1 { font-size: 2.8rem !important; }
    .hero2 p { font-size: 1rem; }
    .step-number2 { font-size: 5.5rem; top: -10px; right: 0px; }
    .about-text-card { padding: 30px; }
    .stat-item h4 { font-size: 2.5rem; }
    
    .team-card { width: 100%; max-width: 350px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-brand h2 { font-size: 1.8rem; }
    
    /* Mobil Menü Optimizasyon Sınırlamaları */
    .nav2-hamburger { z-index: 2005; }
}

@media (max-width: 480px) {
    .cta-content h2 { font-size: 2rem; }
    .floating-discord { width: 45px; height: 45px; font-size: 22px; }
}

/* FAQ Tasarımı */
.faq-section { width: 100%; max-width: 900px; margin-top: 100px; padding: 0 20px; }
.faq-item { 
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.05); 
    border-radius: 15px; 
    margin-bottom: 15px; 
    overflow: hidden; 
    transition: 0.3s;
}
.faq-item:hover { border-color: var(--primary); background: rgba(138, 43, 226, 0.05); }
.faq-question { 
    padding: 20px 25px; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-weight: 600; 
    color: white; 
}
.faq-answer { 
    padding: 0 25px; 
    max-height: 0; 
    overflow: hidden; 
    transition: all 0.4s ease; 
    color: #a1a1a1; 
    line-height: 1.6;
}
.faq-item.active .faq-answer { padding-bottom: 25px; max-height: 200px; }
.faq-item.active i { transform: rotate(180deg); color: var(--primary); }

/* --- DISCORD PROFİL NAV TASARIMI --- */
.nav-profile-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 5px 5px 5px 15px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.nav-profile-card:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.3);
}

.profile-info {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.profile-name {
    color: #ffffff; /* İsim Beyaz */
    font-size: 0.9rem;
    font-weight: 600;
}

.profile-balance {
    color: #3498db; /* Bakiye Mavi */
    font-size: 0.75rem;
    font-weight: 500;
}

.profile-avatar-frame {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--primary-color); /* Mor Çerçeve */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

.profile-avatar-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Çıkış Dropdown */
.profile-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 10px;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1000;
}

.nav-profile-card:hover .profile-dropdown {
    opacity: 1;
    visibility: visible;
    top: 110%;
}

.profile-dropdown a {
    color: #ff4757;
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- DASHBOARD LAYOUT --- */
.dashboard-container {
    display: flex; gap: 30px; width: 95%; max-width: 1300px;
    margin: 150px auto 100px; min-height: 70vh;
}

/* --- SIDEBAR TASARIMI --- */
.db-sidebar {
    width: 300px; background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px; padding: 30px; display: flex; flex-direction: column; gap: 30px;
}

.sidebar-user { text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 25px; }
.sidebar-avatar { 
    width: 90px; height: 90px; border-radius: 50%; border: 3px solid var(--primary-color);
    margin-bottom: 15px; box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}
.sidebar-user h3 { color: white; font-size: 1.2rem; margin-bottom: 5px; }
.sidebar-user p { color: #888; font-size: 0.85rem; margin-bottom: 10px; }
.sidebar-balance { 
    background: rgba(52, 152, 219, 0.1); color: var(--tsc-blue); 
    padding: 8px 15px; border-radius: 30px; font-weight: 700; font-size: 0.9rem;
}

.db-menu { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.db-menu-link {
    display: flex; align-items: center; gap: 12px; color: #aaa;
    text-decoration: none; padding: 14px 20px; border-radius: 15px;
    transition: 0.3s; font-weight: 500;
}
.db-menu-link i { width: 20px; font-size: 1.1rem; }
.db-menu-link:hover, .db-menu-link.active { 
    background: rgba(138, 43, 226, 0.1); color: white; transform: translateX(5px);
}
.db-menu-link.active i { color: var(--primary-color); }

/* --- DASHBOARD CONTENT --- */
.db-content { flex: 1; display: flex; flex-direction: column; gap: 25px; }
.db-card {
    background: rgba(15, 15, 15, 0.6); backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 25px; padding: 30px;
}
.db-card h2 { color: white; margin-bottom: 20px; font-size: 1.5rem; display: flex; align-items: center; gap: 10px; }
.db-card h2 i { color: var(--primary-color); }

/* Mobilde sidebarı alta atar */
@media (max-width: 950px) {
    .dashboard-container { flex-direction: column; }
    .db-sidebar { width: 100%; }
}

/* Dashboard Tablo ve Form Kartları */
.info-row {
    transition: 0.3s ease;
}
.info-row:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    transform: scale(1.01);
}

.transaction-table-wrapper table th {
    letter-spacing: 1px;
}

.transaction-table-wrapper table tbody tr:hover {
    background: rgba(255, 255, 255, 0.01);
}

/* --- ADMİN GENEL YERLEŞİM --- */
:root {
    --admin-bg: #050505;
    --accent: #8a2be2;
    --accent-glow: rgba(138, 43, 226, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);
}

.admin-theme {
    background: var(--admin-bg);
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.admin-wrapper {
    margin-left: 290px; /* Sidebar genişliği */
    padding: 60px;
    min-height: 100vh;
    position: relative;
    z-index: 5;
}

/* --- GLASS CARD (ADMİN KUTULARI) --- */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 30px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    border-color: rgba(138, 43, 226, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* --- ADMİN FORMLARI (INPUTLAR) --- */
input, select, textarea {
    width: 100%;
    background: #000 !important;
    border: 1px solid #222 !important;
    padding: 16px 20px;
    border-radius: 15px;
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: 0.3s;
    outline: none;
    margin-bottom: 15px;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* --- ADMİN BUTONLARI --- */
.portal-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.portal-btn:hover {
    background: #7020bd;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

/* --- ADMİN TABLOLARI --- */
.ts-table {
    width: 100%;
    border-collapse: collapse;
}

.ts-table th {
    text-align: left;
    color: #444;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px;
    border-bottom: 1px solid #111;
    font-weight: 800;
}

.ts-table td {
    padding: 25px 20px;
    font-size: 0.9rem;
    color: #ccc;
    border-bottom: 1px solid rgba(255,255,255,0.01);
}

.ts-table tr:hover td {
    background: rgba(255,255,255,0.01);
    color: #fff;
}

/* --- DURUM ROZETLERİ (BADGES) --- */
.badge-action {
    background: rgba(138, 43, 226, 0.1);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

/* --- BAŞLIK ALANI --- */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.header-text h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: -1px;
}

.header-text h1 span {
    color: var(--accent);
    text-shadow: 0 0 30px var(--accent-glow);
}

.header-text p {
    color: #555;
    margin-top: 5px;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Mobil Uyumluluk */
@media (max-width: 1000px) {
    .admin-wrapper {
        margin-left: 0;
        padding: 100px 20px 40px;
    }
}

/* =========================================
   TSDEV CATEGORY ARCHITECTURE CSS (ADMİN)
   ========================================= */

/* 1. MODAL SİSTEMİ (Kategorilerin Aşağı Düşmesini Önleyen Kilit) */
.ts-full-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 100000; /* Sidebarın bile üstünde durur */
    display: none; /* JS ile flex yapılır */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ts-modal-box {
    width: 100%;
    max-width: 550px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3) !important;
    border-radius: 35px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(138, 43, 226, 0.1);
    animation: modalScaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

@keyframes modalScaleUp {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* 2. DRAG & DROP ALANI (Kategori İkonu İçin) */
.drop-zone-mini {
    width: 100%;
    border: 2px dashed #222;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.drop-zone-mini:hover {
    border-color: var(--accent);
    background: rgba(138, 43, 226, 0.05);
    box-shadow: inset 0 0 20px rgba(138, 43, 226, 0.1);
}

.drop-zone-mini i {
    font-size: 2rem;
    color: #444;
    transition: 0.3s;
}

.drop-zone-mini:hover i {
    color: var(--accent);
    transform: translateY(-5px);
}

.drop-zone-mini p {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
    margin: 0;
}

/* 3. TABLO VE ROZETLER */
.badge-role.user {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.2);
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.btn-delete-elite {
    color: #ff4757;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 8px 15px;
    border-radius: 10px;
    background: rgba(255, 71, 87, 0.05);
    border: 1px solid rgba(255, 71, 87, 0.1);
    transition: 0.3s;
}

.btn-delete-elite:hover {
    background: #ff4757;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
}

/* 4. MODAL İÇİ FORM DÜZENİ */
.elite-scroll-form {
    padding: 40px;
}

.modal-header-elite {
    padding: 25px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header-elite h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    margin: 0;
}

.modal-header-elite h3 span {
    color: var(--accent);
}

.modal-close-icon {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close-icon:hover {
    color: #fff;
    background: #ff4757;
    border-color: #ff4757;
}

/* --- ULTIMATE STORE & HIERARCHY CSS --- */
.ultimate-store { padding: 180px 0 100px; min-height: 100vh; position: relative; z-index: 10; }
.store-hero { text-align: center; margin-bottom: 80px; }
.store-hero h1 { font-size: 4.5rem; font-weight: 900; letter-spacing: -3px; }
.store-hero h1 span { color: var(--accent); text-shadow: 0 0 40px var(--accent-glow); }

/* Kategori Navigasyonu */
.store-nav-container { display: flex; flex-direction: column; align-items: center; gap: 20px; margin-bottom: 60px; position: sticky; top: 100px; z-index: 100; }
.main-cats, .sub-cats { background: rgba(10, 10, 10, 0.6); backdrop-filter: blur(20px); padding: 10px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.05); display: flex; gap: 8px; }
.sub-cats { background: rgba(255, 255, 255, 0.02); margin-top: -10px; padding: 6px; }

.m-cat-btn, .s-cat-btn { background: transparent; border: none; color: #666; padding: 12px 25px; border-radius: 100px; font-weight: 700; cursor: pointer; transition: 0.3s; display: flex; align-items: center; gap: 10px; }
.m-cat-btn.active, .m-cat-btn:hover { background: var(--accent); color: #fff; box-shadow: 0 0 20px var(--accent-glow); }
.s-cat-btn.active, .s-cat-btn:hover { background: rgba(255,255,255,0.05); color: var(--accent); }
.cat-icon-small { width: 20px; height: 20px; border-radius: 5px; }

/* Kartlar */
.elite-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; padding: 0 6%; }
.elite-card { background: rgba(255,255,255,0.01); border: 1px solid rgba(255,255,255,0.04); border-radius: 35px; overflow: hidden; transition: 0.4s; cursor: pointer; }
.elite-card:hover { transform: translateY(-15px); border-color: var(--accent); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.card-img-box { height: 220px; position: relative; overflow: hidden; }
.card-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.elite-card:hover .card-img-box img { scale: 1.1; filter: blur(4px); }
.card-overlay { position: absolute; inset: 0; background: rgba(138,43,226,0.3); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; }
.card-overlay span { background: #fff; color: #000; padding: 10px 25px; border-radius: 50px; font-weight: 800; font-size: 0.8rem; }
.elite-card:hover .card-overlay { opacity: 1; }

.card-body { padding: 30px; }
.p-category-name { font-size: 0.65rem; color: var(--accent); font-weight: 900; letter-spacing: 2px; text-transform: uppercase; }
.card-body h3 { color: #fff; margin: 8px 0 25px; font-size: 1.4rem; }
.p-bottom { display: flex; justify-content: space-between; align-items: center; }
.p-price { color: #fed330; font-size: 1.8rem; font-weight: 900; }
.p-price small { font-size: 0.8rem; color: #444; }
.p-action-icon { width: 45px; height: 45px; background: rgba(255,255,255,0.02); border-radius: 15px; display: flex; align-items: center; justify-content: center; color: #fff; }

/* Modal Detayları */
.video-p-frame { position: relative; padding-bottom: 56.25%; height: 0; margin: 40px 0; border-radius: 30px; overflow: hidden; border: 1px solid var(--accent); }
.video-p-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.p-text-content { color: #aaa; font-size: 1.2rem; line-height: 1.9; }
.p-buy-footer { margin-top: 50px; padding: 40px; background: rgba(255,255,255,0.02); border-radius: 30px; display: flex; justify-content: space-between; align-items: center; border: 1px solid rgba(255,255,255,0.05); }
.f-price { font-size: 2.5rem; font-weight: 900; color: #fed330; }
.f-price span { font-size: 1rem; color: #444; }

.beta-badge {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(138, 43, 226, 0.15); /* Hafif Mor */
    color: var(--primary-color);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    vertical-align: middle;
    margin-left: 8px;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.2);
    transition: 0.3s;
}

.beta-badge:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
    transform: translateY(-2px);
}