/* Özel Yazı Tipi Tanımlama */
@font-face {
    font-family: 'ChesavFont';
    src: url('fonts/ChesavFont.woff2') format('woff2'),
         url('fonts/ChesavFont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* SADECE BU RENGİ DEĞİŞTİREREK TÜM SİTEYİ GÜNCELLEYEBİLİRSİN */
    --primary-color: #a855f7; /* Modern Mor */
    --primary-rgb: 168, 85, 247;
    
    --bg-dark: #030303; /* Tam siyah OLED deneyimi */
    --bg-surface: #0a0a0c;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-bg-hover: rgba(255, 255, 255, 0.06);
    --text-color: #ffffff;
    --secondary-text-color: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --accent-color: #ffffff; /* Beyaz Vurgu */
    --scrollbar-hue: 275; /* Mor Tonu (Scrollbar için) */
    --card-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

/* Premium Seçim Rengi */
::selection {
    background: var(--primary-color);
    color: #fff;
}

/* Custom Scrollbar Tasarımı */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, hsl(var(--scrollbar-hue), 65%, 65%), var(--accent-color));
    border-radius: 10px;
    border: 2px solid var(--bg-dark); /* Scrollbar thumb etrafında boşluk hissi verir */
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Firefox Desteği */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-dark);
}

/* Yukarı Çık Butonu */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Sosyal butonlarla çakışmaması için sola alabiliriz veya sağa */
    width: 45px;
    height: 45px;
    background: rgba(15, 15, 19, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(var(--primary-rgb), 0.6);
}

/* News Marquee */
.news-marquee {
    position: fixed;
    top: 35px;
    width: 100%;
    height: 25px;
    background: rgba(var(--primary-rgb), 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marqueeMove 30s linear infinite;
}

.marquee-content span {
    padding: 0 50px;
    font-size: 0.8rem;
    font-family: 'Rajdhani', sans-serif;
    color: var(--secondary-text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.marquee-content span i { color: var(--primary-color); }

@keyframes marqueeMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 35px;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10002;
    background: rgba(255, 255, 255, 0.05);
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 0%;
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.5);
}

/* Rol Rozetleri Stili */
.user-roles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
    padding: 0 4px;
}

.role-mini-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 85px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* İmleç Takip Işığı Stili */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none; /* Tıklamaları engellemez */
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

/* Genel Sıfırlamalar ve Temel Stiller */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Parçacık Arka Plan Stili */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* İçeriğin arkasında kalması için */
    will-change: transform;
    pointer-events: none; /* Tıklamaları engellememesi için */
}

html {
    scroll-behavior: smooth; /* Modern tarayıcılarda akıcı kaydırma */
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(var(--primary-rgb), 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    /* Sayfa geçişleri için başlangıç durumu */
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sayfadan ayrılırken kullanılacak sınıf */
body.fade-out {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

h1, h2, h3, .logo, .nav-links a, .btn-login, .btn-discord, .btn-submit, .stats-bar, .role-badge, .event-date-box, .card-badge {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Kademeli Ortaya Çıkma */
.reveal.active .reveal-item {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: calc(var(--item-index) * 0.1s);
}

.reveal-item {
    opacity: 0;
    transform: translateY(30px);
}

.bg-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.15;
}

.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

.glow-1 { top: -100px; right: -100px; background: var(--primary-color); }
.glow-2 { bottom: -100px; left: -100px; background: var(--accent-color); }

.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active.reveal-stagger > * {
    opacity: 1;
    transform: translateY(0);
}

/* Özel SVG İkon Stilleri */
.svg-icon {
    width: 24px;
    height: 24px;
    fill: currentColor; /* HTML'deki metin rengini otomatik alır */
    display: inline-block;
    vertical-align: middle;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.svg-icon-glow {
    filter: drop-shadow(0 0 8px rgba(var(--primary-rgb), 0.6));
}

/* Sunucu İstatistikleri Barı */
.stats-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgba(3, 3, 3, 0.6);
    backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.3);
    z-index: 10001; /* En üstte olması için */
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    font-size: 0.8rem;
    padding: 0 1rem;
    gap: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

.stats-bar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.discord-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.online-members-avatars {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.online-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -8px; /* Avatarların üst üste binmesi için */
    transition: transform 0.2s ease;
    cursor: help;
}

.online-avatar:hover {
    transform: translateY(-5px) scale(1.2);
    z-index: 10;
    border-color: var(--primary-color);
}

.stats-item {
    margin: 0 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Sinematik Küçülme Efekti */
.stats-bar.cinematic-hide {
    transform: translateY(-100%); /* Tamamen yukarı gizle */
    opacity: 0;
    pointer-events: none;
}

.stats-item i {
    color: var(--primary-color);
}

.stats-item .fa-circle {
    font-size: 0.7rem;
}

/* Navbar'ı istatistik barının altına it */
.nav-wrapper {
    position: fixed;
    top: 40px; 
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    display: flex;
    justify-content: center;
    pointer-events: none; /* Wrapper tıklamayı engellemesin */
}

.navbar {
    pointer-events: auto; /* Sadece navbar tıklanabilir olsun */
    width: 95%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0.8rem 2rem;
    background: rgba(15, 15, 20, 0.7);
    backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px; /* Daha modern hafif kavisli köşe */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.7),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* Navbar Sinematik Küçülme */
.navbar.cinematic-hide {
    transform: scale(0.9) translateY(-250px); /* Daha uzağa fırlat */
    opacity: 0;
    pointer-events: none;
}

.navbar.scrolled {
    width: 85%;
    padding: 0.6rem 1.8rem;
    background: rgba(5, 5, 5, 0.85);
    border-color: rgba(var(--primary-rgb), 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(var(--primary-rgb), 0.1);
}

.navbar .logo {
    font-size: 1.4rem;
    font-weight: 700;
    flex: 0 0 auto; /* Logo kendi boyutu kadar yer kaplasın, esnemesin */
    white-space: nowrap; /* Yazının tek satırda kalmasını garanti eder */
    background: linear-gradient(45deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(var(--primary-rgb), 0.3));
}

.navbar.scrolled .logo {
    font-size: 1.3rem; /* Scroll olduğunda biraz daha küçülttük */
}

.nav-links {
   display: flex;
    gap: 0.5rem;
    list-style: none; /* "Noktalar"ı tamamen kaldırır */
    padding: 0;
    margin: 0;
    flex: 1; /* Orta alanı doldur */
    justify-content: center;
    white-space: nowrap; /* Linklerin alt alta düşmesini engeller */
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 12px;
    font-size: 0.8rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-color);
}

.nav-links a:hover {
    color: var(--text-color);
    background: rgba(var(--primary-rgb), 0.1);
    box-shadow: inset 0 0 10px rgba(var(--primary-rgb), 0.05);
}

.nav-links a.active {
    color: var(--text-color);
    background: rgba(var(--primary-rgb), 0.15);
}

.nav-links a.active::after {
    width: 15px; 
}

.nav-links a:hover::after {
    width: 15px;
}

/* Auth Container ve Profil Stilleri */
.auth-container {
    flex: 0 0 auto; /* Sağ tarafı sabit tuttuk */
    display: flex;
    justify-content: flex-end;
    position: relative; /* Dropdown'ın konumlanması için şart */
}

.btn-login {
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid var(--primary-color);
    color: var(--text-color);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-login:hover {
    background: var(--primary-color);
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.5);
}

.user-profile {
    display: flex;
    align-items: center;
    min-width: 0; 
    gap: 12px;
    background: rgba(255, 255, 255, 0.07);
    padding: 5px 15px 5px 5px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 200px; /* Çok uzun isimlerde navbar'ın dışına taşmayı engeller */
    
}

.user-profile:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    flex-shrink: 0; /* Resmin ezilmesini engeller */
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
    flex: 1; /* Kalan alanı doldur */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: auto;
}

/* Dropdown Menü Tasarımı */
.user-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(25px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 10px;
    width: 250px;
    display: none;
    flex-direction: column;
    gap: 4px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6), 
        0 0 0 1px rgba(var(--primary-rgb), 0.2),
        inset 0 0 20px rgba(var(--primary-rgb), 0.05);
    z-index: 10002;
    animation: fadeInRise 0.3s ease;
}

.user-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 22px;
    width: 12px;
    height: 12px;
    background: rgba(10, 10, 12, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

.dropdown-header {
    padding: 8px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    margin-bottom: 6px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.header-top-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.dropdown-large-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.3);
}
.header-main-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 2px;
}
.name-badge-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.dropdown-username {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dropdown-role-tag {
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 4px;
    width: fit-content;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.dropdown-role-tag.admin {
    background: rgba(255, 71, 87, 0.15);
    color: #ff4757;
    border-color: rgba(255, 71, 87, 0.3);
}
.dropdown-sub-info {
    font-size: 0.65rem;
    color: var(--secondary-text-color);
    opacity: 0.7;
    font-family: 'Rajdhani', sans-serif;
}
.age-section-mini {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.age-text-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    color: var(--secondary-text-color);
    opacity: 0.8;
}

.age-bar-wrapper {
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.age-progress {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 0%;
    transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1);
    box-shadow: 0 0 5px var(--primary-color);
}






/* Başvuru Durum Rozetleri */
.status-badge-item { font-size: 0.65rem; padding: 3px 8px; border-radius: 4px; font-weight: 700; display: inline-flex; align-items: center; gap: 5px; margin-top: 2px; }
.status-pending { background: rgba(255, 193, 7, 0.15); color: #ffc107; border: 1px solid rgba(255, 193, 7, 0.3); }
.status-accepted { background: rgba(67, 181, 129, 0.15); color: #43b581; border: 1px solid rgba(67, 181, 129, 0.4); }
.status-rejected { background: rgba(255, 71, 87, 0.15); color: #ff4757; border: 1px solid rgba(255, 71, 87, 0.4); }
.status-none { background: rgba(255, 255, 255, 0.05); color: var(--secondary-text-color); }

.dropdown-status-label { font-size: 0.6rem; opacity: 0.5; text-transform: uppercase; letter-spacing: 0.5px; }

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 5px 8px;
}

.user-dropdown.active {
    display: flex;
}

.dropdown-item {
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
}


.dropdown-item.theme-toggle {
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    margin-top: 4px;
    padding: 10px 12px;
}

/* Gelişmiş Switch (Anahtar) Tasarımı */
.theme-switch {
    width: 40px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-switch::after {
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.theme-toggle.active .theme-switch {
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.4);
}

.theme-toggle.active .theme-switch::after {
    left: 22px;
}

.dropdown-item i:not(.fa-toggle-on) {
    width: 20px;
    text-align: center;
    opacity: 0.8;
}

.dropdown-item.copy-uid {
    cursor: copy;
    border: 1px solid transparent;
}

.dropdown-item.copy-uid:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.dropdown-item:hover {
    background: rgba(var(--primary-rgb), 0.2);
    color: var(--primary-color);
}

.dropdown-settings-link {
    margin-left: auto;
    color: var(--secondary-text-color);
    opacity: 0.5;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-settings-link:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: rotate(45deg);
}

.dropdown-item.logout { color: var(--accent-color); }
.dropdown-item.logout:hover { background: rgba(255, 71, 87, 0.1); }

/* Hero Section */
.hero {
    margin-top: 110px; /* Toplam yükseklik dengelendi */
    height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(3, 3, 3, 0.4) 0%, rgba(3, 3, 3, 0.95) 100%);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.4;
    transition: opacity 0.8s ease;
}

/* Video Kontrol Butonları */
.hero-video-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.volume-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 15, 19, 0.6);
    backdrop-filter: blur(10px);
    padding: 8px 18px 8px 8px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.volume-wrapper:hover { border-color: var(--primary-color); }

#volume-slider {
    -webkit-appearance: none;
    width: 0;
    opacity: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 0%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    outline: none;
}

.volume-wrapper:hover #volume-slider {
    width: 80px;
    opacity: 1;
    margin-left: 10px;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}

.video-control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(15, 15, 19, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Sinematik Mod Aktifken */
.hero.cinematic-active .hero-wrapper,
.hero.cinematic-active .scroll-indicator {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero.cinematic-active .hero-video { opacity: 1; }

/* Sinematik Filigran */
.cinematic-watermark {
    position: absolute;
    bottom: 100px;
    right: 40px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.2s ease;
    z-index: 5;
}

.hero.cinematic-active .cinematic-watermark { opacity: 0.12; }

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    width: 100%;
    z-index: 2;
    gap: 50px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content {
    text-align: left;
    flex: 1;
    animation: float 6s ease-in-out infinite;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    animation: float 5s ease-in-out infinite reverse;
}

/* --- Dönen Mor Kenar Işığı (Border Trace) --- */
/* Renklerin Spektrum Boyunca Dönmesini Sağlayan RGB Animasyonu */
@keyframes rgbCycle {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.img-border-trace { /* Kenar izi efekti kaldırıldı, sadece görselin kendisi kaldı */
    padding: 4px; /* Eski padding'i koruyarak boşluk bırakır */
    border-radius: 24px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2); /* Hafif arka planı koru */
    box-shadow: 0 0 50px rgba(var(--primary-rgb), 0.2); /* Gölgeyi koru */
}

.img-border-trace img { /* Resim stilini koru */
    position: relative;
    z-index: 2;
    border-radius: 20px;
    background: var(--bg-dark);
    filter: drop-shadow(0 0 30px rgba(var(--primary-rgb), 0.4));
}

/* Butonlar için Kenar Işığı */
/* .border-trace::before efekti kaldırıldı */

/* Hero Başlığı İçin RGB Parlama Efekti */
.glow-text-trace {
    filter: drop-shadow(0 0 15px rgba(var(--primary-rgb), 0.4));
    animation: rgbCycle 8s linear infinite !important;
}

/* Scroll Indicator Stilleri */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    opacity: 0.6;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.mouse {
    width: 24px; height: 40px;
    border: 2px solid #fff;
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px; height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* Hızlı Erişim Hub */
.quick-hub {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.hub-link {
    width: 48px;
    height: 48px;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.hub-link:hover {
    transform: translateX(-10px);
    border-color: var(--primary-color);
    background: var(--primary-color);
    box-shadow: 0 0 25px rgba(var(--primary-rgb), 0.5);
}

.hub-link.join:hover { background: #43b581; border-color: #43b581; box-shadow: 0 0 25px rgba(67, 181, 129, 0.5); }

.hub-link::after {
    content: attr(title);
    position: absolute;
    right: 60px;
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.hub-link:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Hero Buton Grubu */
.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* IP Kopyalama Butonu */
.btn-copy-ip {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 1.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Rajdhani', sans-serif;
}

.btn-copy-ip:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.5);
}

/* Özel Sağ Tık Menüsü Stilleri */
.context-menu {
    position: fixed;
    display: none;
    background: rgba(10, 10, 12, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 8px;
    min-width: 180px;
    z-index: 100000;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    animation: fadeInRise 0.2s ease;
}

.context-item {
    padding: 10px 15px;
    color: var(--text-color);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.context-item:hover {
    background: rgba(var(--primary-rgb), 0.2);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Sosyal Medya Yan Bar */
.social-sidebar {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.social-link {
    width: 50px; height: 50px;
    background: rgba(15, 15, 19, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-link:hover {
    transform: translateX(-8px) scale(1.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
}

@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }
    .hero-content { text-align: center; }
    .hero-image img { max-height: 400px; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 900;
    /* Sürekli değişen gradyan için birden fazla renk durağı ekliyoruz */
    background: linear-gradient(-45deg, #fff, var(--primary-color), var(--accent-color), var(--primary-color), #fff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    letter-spacing: -3px;
    line-height: 1.05;
    /* Neon parlama efekti ve akış animasyonu */
    filter: drop-shadow(0 0 40px rgba(var(--primary-rgb), 0.35));
    animation: neonGradient 10s ease infinite, fadeInDrop 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero p {
    font-size: clamp(1rem, 4vw, 1.5rem);
    color: var(--secondary-text-color);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.4);
    opacity: 0; /* JS ile animasyon */
    transform: translateY(20px); /* JS ile animasyon */
}
.team-card p {
    color: var(--secondary-text-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.copy-id {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.copy-id:hover {
    background: rgba(var(--primary-rgb), 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    color: #fff;
}

.copy-id i { font-size: 0.8rem; transition: all 0.2s ease; }

/* Toast Bildirimi */
.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: rgba(var(--primary-rgb), 0.95);
    backdrop-filter: blur(15px);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    z-index: 100000;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.toast.show {
    transform: translateX(-50%) translateY(80px);
}

.toast.error {
    background: rgba(255, 71, 87, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
}

/* Glassmorphism Form */
.glass-form {
    background: var(--card-bg);
    backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 15px;
    max-width: 550px;
    margin: 0 auto;
    box-shadow: var(--card-shadow);
    position: relative;
    transition: all 0.4s ease;
}

.glass-form::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 15px;
    padding: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Yönetim Ekibi Kartları */
.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: linear-gradient(135deg, rgba(15, 15, 19, 0.6) 0%, rgba(15, 15, 19, 0.3) 100%);
    backdrop-filter: blur(15px) saturate(180%); /* Aşırı blur düşürüldü */
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 0 1.8rem 0;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transition süresini optimize et */
    text-align: center;
    position: relative;
    overflow: hidden;
    will-change: transform, border-color;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

/* Ekip Kartı Bannerı */
.team-banner {
    height: 110px;
    width: 100%;
    position: relative;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 200%;
    animation: premiumGradient 8s ease infinite;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.team-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.08;
}

@keyframes premiumGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.team-card:hover .team-banner {
    opacity: 0.9;
    height: 110px;
}

/* Fareyi takip eden spotlight ışığı */
.team-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(var(--primary-rgb), 0.1), transparent 80%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.team-card:hover::before {
    opacity: 1;
}

.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    margin: 10px 0 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.role-badge.founder { color: #ff4757; border-color: rgba(255, 71, 87, 0.3); background: rgba(255, 71, 87, 0.1); }
.role-badge.management { color: #43b581; border-color: rgba(67, 181, 129, 0.3); background: rgba(67, 181, 129, 0.1); }
.role-badge.dev { color: #7289da; border-color: rgba(114, 137, 218, 0.3); background: rgba(114, 137, 218, 0.1); }

.team-card:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.7) 0%, rgba(20, 20, 25, 0.4) 100%);
    border-color: rgba(var(--primary-rgb), 0.5);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.7),
        0 0 25px rgba(var(--primary-rgb), 0.3);
}

.team-img-wrapper {
    width: 100px;
    height: 100px;
    margin: -50px auto 8px;
    border-radius: 50%;
    border: 6px solid var(--bg-dark); /* Daha koyu bir çerçeve */
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.team-img-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #2b2d31; /* Avatar yüklenene kadar arka plan */
}

.team-bio {
    font-size: 0.85rem;
    color: var(--secondary-text-color);
    padding: 0 20px;
    margin: 8px 0 18px;
    line-height: 1.5;
    opacity: 0.8;
}

.team-card:hover .team-img-wrapper {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.3);
}

@keyframes blob-move {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Canlı Durum Noktası */
.status-dot {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #1a1a1a;
    transition: all 0.3s ease;
}

.status-dot.online {
    background-color: #43b581;
    box-shadow: 0 0 10px #43b581;
    animation: statusPulse 2s infinite;
}

.status-dot.offline {
    background-color: #747f8d;
}

@keyframes statusPulse {
    0% { box-shadow: 0 0 0 0 rgba(67, 181, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(67, 181, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(67, 181, 129, 0); }
}

/* Takım Aksiyon Butonları */
.team-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.view-profile-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 38px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.view-profile-btn:hover, .view-details-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.15);
    border-color: var(--primary-color);
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s ease;
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.25); /* Fotoğrafın iç kısımda daha fazla büyümesi */
    filter: brightness(1.15); /* Hafif ışık artışı */
}

.team-card h3 {
    margin: 10px 0 5px;
    color: var(--text-color);
}

.team-card p {
    color: var(--secondary-text-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-socials i {
    color: var(--primary-color); /* Ana renkli ikon */
    font-size: 1.2rem;
}

.glass-form:hover {
    transform: translateY(-5px);
}

.glass-form input,
.glass-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: rgba(255, 255, 255, 0.08); /* Hafif şeffaf arka plan */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.glass-form input::placeholder,
.glass-form textarea::placeholder {
    color: var(--secondary-text-color);
}

.glass-form input:focus,
.glass-form textarea:focus {
    outline: none; /* Odaklanmada dış çizgiyi kaldır */
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.15);
}

/* Readonly (Discord girişli) Input Stili */
.glass-form input[readonly] {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(var(--primary-rgb), 0.3);
    cursor: default;
    opacity: 0.8;
}

/* Giriş Uyarı Kartı */
.login-warning-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    padding: 3rem;
    border-radius: 20px;
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

.login-warning-card .warning-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(var(--primary-rgb), 0.4));
}

.login-warning-card h3 { margin-bottom: 10px; font-size: 1.5rem; }
.login-warning-card p { color: var(--secondary-text-color); }

/* Genel Buton Stili */
.btn-discord, .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-discord {
    background-color: var(--primary-color);
    color: var(--text-color); /* Metin rengi */
    box-shadow: 0 5px 20px rgba(var(--primary-rgb), 0.4); /* Ana renkli gölge */
    position: relative;
    z-index: 1;
    overflow: visible;
}

.btn-discord i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.btn-discord:hover {
    background-color: #677bc4; /* Hafif koyu ana renk */
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.8); /* Daha güçlü parlama */
    transform: translateY(-3px);
}

/* Shimmer (Parlama) Efekti */
/* Shimmer efekti kaldırıldı */

.btn-copy-invite {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-color);
    color: var(--secondary-text-color);
    padding: 1rem 1.8rem;
    border-radius: 8px;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 1.1rem;
}

.btn-copy-invite:hover {
    background: rgba(var(--primary-rgb), 0.1);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-copy-invite i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-copy-invite:hover i {
    transform: rotate(15deg) scale(1.1);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--text-color);
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #677bc4;
    transform: translateY(-3px); /* Hafif yukarı kayma */
    box-shadow: 0 4px 15px rgba(114, 137, 218, 0.4);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    filter: brightness(0.8);
    transform: translateY(0) !important; /* Hover efektini iptal eder */
}

/* Bölüm Başlıkları */
.section {
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(var(--primary-rgb), 0.5); /* Ana renkli metin gölgesi */
}

.section h2 i {
    margin-right: 15px;
    color: var(--text-color);
}
.rules-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: left;
    max-width: 1000px;
    margin: 40px auto 0;
    perspective: 1000px; /* 3D tilt efekti için */
}

.rule-category-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    border-bottom: 2px solid rgba(var(--primary-rgb), 0.2);
    padding-bottom: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rule-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden; /* Cevabın taşmasını engeller */
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.rule-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 5px 25px rgba(var(--primary-rgb), 0.3);
}

.rule-item:hover {
    /* Tilt efekti script.js tarafından yönetilecek, burada sadece görsel hover efekti */
    border-color: rgba(var(--primary-rgb), 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.rule-question {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.rule-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.rule-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
    flex-grow: 1; /* Başlığın kalan alanı doldurmasını sağlar */
}

.rule-question i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.rule-item.active .rule-question i {
    transform: rotate(180deg); /* Açıldığında oku döndür */
}

.rule-num {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    min-width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.4);
}

.rule-answer {
    max-height: 0; /* Başlangıçta gizli */
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: var(--secondary-text-color);
}

.rule-item.active .rule-answer {
    max-height: 200px; /* Cevabın maksimum yüksekliği, içeriğe göre ayarlanabilir */
    padding: 1rem 25px 25px; /* Açıldığında padding ekle */
}

.rule-answer p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Galeri Tasarımı */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    will-change: transform;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--primary-rgb), 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay span {
    color: #fff;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* Duyurular Slider */
.announcement-slider {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    padding: 10px 0;
}

.announcement-track {
    display: flex;
    gap: 25px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.announcement-card {
    flex: 0 0 calc(33.333% - 17px);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
    position: relative;
    transition: all 0.4s ease;
    will-change: transform, border-color;
    transform: translateZ(0);
}

@media (max-width: 992px) {
    .announcement-card {
        flex: 0 0 calc(50% - 13px); /* 2 kart gösterir */
    }
}

@media (max-width: 600px) {
    .announcement-card {
        flex: 0 0 100%; /* 1 kart gösterir */
    }
}

.announcement-card:hover {
    background: var(--card-bg-hover);
    border-color: var(--primary-color); /* Hover'da ana renk kenarlık */
    transform: translateY(-5px);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.5);
}

.card-badge {
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 50px; /* Yuvarlak kenarlı etiket */
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.card-badge.new {
    background: #43b581; /* Discord Green */
}

.card-date {
    font-size: 0.85rem;
    color: var(--secondary-text-color);
    margin-bottom: 10px;
}

.announcement-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.read-more {
    color: var(--primary-color); /* Ana renkli metin */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

/* Etkinlik Takvimi (Event Cards) */
.events-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 30px auto 0;
    perspective: 1000px; /* 3D derinlik etkisi için gerekli */
}

.event-card {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    padding: 1.5rem; /* İç boşluk */
    border-radius: 15px;
    border: 1px solid var(--border-color);
    gap: 25px;
    transition: transform 0.1s ease-out, border-color 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d; /* Çocuk elementlerin 3D uzayda kalmasını sağlar */
    will-change: transform;
    transform: translateZ(0);
}

.event-card:hover {
    border-color: rgba(var(--primary-rgb), 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.event-date-box {
    background: var(--primary-color);
    min-width: 70px;
    height: 70px; /* Kare kutu */
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    transform: translateZ(20px); /* Kutu karttan biraz daha önde görünür */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.event-date-box .month { font-size: 0.8rem; opacity: 0.9; }
.event-date-box .day { font-size: 1.5rem; line-height: 1; }

.event-details { text-align: left; }
.event-details h3 { margin-bottom: 5px; }
.event-details p { color: var(--secondary-text-color); font-size: 0.9rem; } /* İkincil metin rengi */

/* Footer */
.footer {
    padding: 80px 20px 40px;
    background: linear-gradient(to bottom, #08080a, #030303);
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    text-align: left;
}

.footer-brand .logo {
    font-size: 2rem;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: var(--secondary-text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 400px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.4);
}

.footer-links-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    color: #fff;
    font-family: 'Rajdhani';
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--secondary-text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--secondary-text-color);
}

.footer-bottom .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--secondary-text-color);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .footer-brand p {
        margin: 0 auto 25px;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Animasyonlar */
@keyframes fadeInDrop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRise {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-drop {
    animation: fadeInDrop 1s ease-out forwards;
}

.animate-fade {
    animation: fadeInRise 1s ease-out forwards;
    animation-delay: 0.5s; /* Başlıktan sonra başlasın */
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
        top: 40px; /* İstatistik barının altında kalması için */
    }

    .nav-links {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links li {
        margin: 0.5rem 1rem;
    }

    .hero {
        margin-top: 80px; /* Stats bar + Navbar yüksekliği (mobil için) */
        height: calc(100vh - 80px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .rules-container {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        font-size: 0.75rem;
        height: 35px;
    }

    .stats-item {
        margin: 0 8px;
        gap: 5px;
    }
}

/* Modal Stilleri */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; /* Her şeyin üstünde olması için */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--primary-rgb), 0.2); /* Ana renge uyumlu kenarlık */
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    transform: scale(0.7);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-content h2 {
    color: var(--primary-color); /* Ana renkli başlık */
    margin-bottom: 15px;
}

.modal-content p {
    margin-bottom: 25px;
    color: var(--secondary-text-color);
}

/* Sıkça Sorulan Sorular (SSS) Stilleri */
.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: left;
}

.faq-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden; /* Cevabın taşmasını engeller */
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(var(--primary-rgb), 0.2);
}



.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-color);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg); /* Açıldığında oku döndür */
}

.faq-answer {
    max-height: 0; /* Başlangıçta gizli */
    overflow: hidden;
    padding: 0 2rem;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: var(--secondary-text-color);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Cevabın maksimum yüksekliği, içeriğe göre ayarlanabilir */
    padding: 1rem 2rem 2rem; /* Açıldığında padding ekle */
}

/* Oyuncu Listesi Modalı */
.player-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 20px;
    padding-right: 10px;
}

.player-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    text-align: left;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #030303;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.auth-splash {
    position: absolute;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.15), transparent);
    z-index: 2;
}

.splash-content {
    text-align: center;
    animation: fadeInRise 0.8s ease forwards;
}

.splash-avatar-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.splash-avatar-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    position: relative;
    z-index: 2;
}

.splash-glow {
    position: absolute;
    inset: -10px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.4;
    animation: statusPulse 2s infinite;
}

.splash-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(var(--primary-rgb), 0.5);
}

.splash-content p {
    color: var(--secondary-text-color);
    letter-spacing: 2px;
}

.loader-content {
    text-align: center;
    width: 300px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loader-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 5px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loader-bar-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
    transition: width 0.4s ease;
}

.loader-status {
    font-size: 0.7rem;
    color: var(--secondary-text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

#preloader.auth-active .loader-content {
    opacity: 0;
    visibility: hidden;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Yeni Başvuru Formu Stilleri */
.application-form {
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group:last-of-type {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.application-form label {
    display: block;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.application-form label .required {
    color: #ff4757; /* Kırmızı yıldız */
    margin-left: 5px;
}

.application-form input[type="text"],
.application-form input[type="number"],
.application-form textarea,
.application-form select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    resize: vertical; /* Textarea'nın sadece dikeyde boyutlandırılmasına izin ver */
}

.application-form input::placeholder,
.application-form textarea::placeholder {
    color: var(--secondary-text-color);
    opacity: 0.7;
}

.application-form input:focus,
.application-form textarea:focus,
.application-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
}

.application-form select {
    -webkit-appearance: none; /* Varsayılan select stilini kaldır */
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2394a3b8'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.application-form small {
    display: block;
    font-size: 0.75rem;
    color: var(--secondary-text-color);
    margin-top: 0.5rem;
}

.application-form small .text-link {
    color: var(--primary-color);
    text-decoration: none;
}

.application-form small .text-link:hover {
    text-decoration: underline;
}

/* Karakter Sayacı */
.application-form .char-counter {
    font-size: 0.7rem;
    color: var(--secondary-text-color);
    text-align: right;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .application-form {
        padding: 1.5rem;
    }
}

/* Ayarlar Modalı Özel Stilleri */
.settings-modal-content {
    max-width: 500px;
    padding: 30px;
    text-align: left;
}

.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.settings-header h2 { margin: 0; font-size: 1.4rem; }

.close-icon-btn {
    background: none;
    border: none;
    color: var(--secondary-text-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-icon-btn:hover { color: var(--primary-color); }

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.setting-info { display: flex; flex-direction: column; gap: 4px; }
.setting-title { font-weight: 600; color: #fff; font-size: 0.95rem; }
.setting-desc { font-size: 0.75rem; color: var(--secondary-text-color); opacity: 0.8; }

/* Toggle Switch Tasarımı */
.switch { position: relative; display: inline-block; width: 44px; height: 22px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s; border-radius: 34px; border: 1px solid var(--border-color);
}
.slider:before {
    position: absolute; content: ""; height: 14px; width: 14px; left: 4px; bottom: 3px;
    background-color: white; transition: .4s; border-radius: 50%;
}
input:checked + .slider { background-color: var(--primary-color); }
input:checked + .slider:before { transform: translateX(22px); }

.dropdown-settings-link {
    background: none; border: none; cursor: pointer; padding: 5px;
}

/* Multi-step Form Özel Stilleri */
.form-step {
    display: none;
    animation: fadeInRise 0.4s ease forwards;
}

.form-step.active {
    display: block;
}

.step-nav {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.step-nav button {
    margin-top: 0;
    flex: 1;
}

.step-indicator-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    padding: 0 10px;
}

.step-line {
    position: absolute;
    top: 17px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.step-point {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-point span {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.step-point.active span {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.4);
}

.step-point label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-text-color);
    margin-bottom: 0 !important;
}

.step-point.active label {
    color: #fff;
    font-weight: 700;
}

/* Başvurularım Listesi Stilleri */
.app-list-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.app-list-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.app-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.app-title { font-weight: 700; font-size: 0.95rem; color: #fff; }
.app-date { font-size: 0.75rem; color: var(--secondary-text-color); }

.app-status-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Matrix Kod Yağmuru Efekti */
.loader-matrix {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    opacity: 0.12;
    pointer-events: none;
}

.matrix-column {
    position: absolute;
    top: -200px;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    font-size: 11px;
    line-height: 1.6;
    white-space: nowrap;
    animation: matrixFall linear infinite;
    text-shadow: 0 0 8px var(--primary-color);
    user-select: none;
}

@keyframes matrixFall {
    0% { transform: translateY(-20%); opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translateY(110vh); opacity: 0; }
}

.matrix-column.collapse {
    animation: matrixCollapse 0.7s cubic-bezier(0.32, 0, 0.67, 0) forwards !important;
    animation-delay: 0s !important;
}

@keyframes matrixCollapse {
    to { transform: translateY(120vh); opacity: 0; }
}

/* Yükleme Tamamlanma Parlama Efekti */
.loader-flash {
    position: fixed;
    inset: 0;
    background: var(--primary-color);
    z-index: 100000;
    pointer-events: none;
    opacity: 0;
}

.loader-flash.active {
    animation: flashEffect 0.8s ease-out forwards;
}

@keyframes flashEffect {
    0% { opacity: 0; }
    20% { opacity: 0.8; }
    100% { opacity: 0; }
}

/* Matrix Yanıp Sönme (Flicker) Efekti */
.matrix-flicker {
    animation: matrixFlicker infinite alternate;
}

@keyframes matrixFlicker {
    0%, 100% { opacity: 1; color: var(--primary-color); }
    50% { opacity: 0.2; color: #fff; text-shadow: none; }
}

.matrix-glitch-char {
    display: inline-block;
    min-width: 8px; /* Karakter değişiminde kaymayı önler */
    transition: color 0.1s ease;
}

/* Legal Sayfası Özel Stilleri */
.legal-container {
    max-width: 900px;
    margin: 150px auto 100px;
    padding: 0 20px;
    text-align: left;
}

.legal-section {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    scroll-margin-top: 150px; /* Çapaya tıklandığında navbarın altında kalmaması için */
}

.legal-section h1, .legal-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.legal-section p, .legal-section li {
    color: var(--secondary-text-color);
    margin-bottom: 15px;
    line-height: 1.8;
}