/* ==========================================================================
   DEĞİŞKENLER & TEMEL AYARLAR
   ========================================================================== */
:root {
    --gold: #ffcd3c;
    --gold-glow: rgba(255, 205, 60, 0.4);
    --bg-dark: #030308;
    --accent-blue: #00f2ff;
    --accent-blue-glow: rgba(0, 242, 255, 0.3);
    --font-main: 'Rajdhani', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    font-family: var(--font-main);
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    background: url('background_images/home_bg.png') center/cover fixed no-repeat;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

.scanline {
    position: fixed;
    inset: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
    background-size: 100% 4px;
    z-index: 999;
    pointer-events: none;
    opacity: 0.4;
}

/* ==========================================================================
   VIEWPORT & BÜTÜNCÜL KAPSAYICI
   ========================================================================== */
.app-viewport {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scale-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Sayfa genelini dikeyde ortalar */
    position: relative;
    background: linear-gradient(135deg, rgba(5, 12, 24, 0.5) 0%, rgba(2, 4, 8, 0.75) 100%);
}

.scale-wrapper::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 242, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 85%);
    z-index: 1;
    pointer-events: none;
}


/* ==========================================================================
   3'LÜ YATAY ÇALIŞMA ALANI (Geliştirilmiş Boşluk ve Genişlik Sınırı)
   ========================================================================== */
.terminal-workspace {
    display: flex;
    align-items: center;      /* Dikeyde tek bir çizgide ortalama */
    justify-content: center;  
    gap: 70px;                 /* Düzenleme: 30px'ten 70px'e çıkarılarak orta alandan uzaklaştırıldı */
    width: 100%;
    max-width: 1550px;         /* Düzenleme: Büyük elemanların sığması için alan 1360px'ten 1550px'e genişletildi */
    margin: 0 auto;
    padding: 80px 40px 120px 40px;
    z-index: 10;
}

/* 3 Ana Bölmeyi Eşitleyen Hücre Altyapısı */
.workspace-cell {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0; 
}

.faction-logo-zone {
    justify-content: flex-end; 
}

.account-zone {
    justify-content: center;   
    flex-grow: 0;              
    flex-basis: 450px;         /* Form kutusunun stabil genişliği */
}

.faction-info-zone {
    justify-content: flex-start; 
}

/* ==========================================================================
   ORTA BÖLGE: ACCOUNT KONTEYNERİ
   ========================================================================== */
.container {
    width: 100%;
    padding: 40px 32px;
    background: rgba(2, 4, 12, 0.88); 
    border: 1px solid rgba(0, 242, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    position: relative;
}

header h1 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: #fff;
    text-align: center;
    margin-bottom: 5px;
    text-transform: uppercase;
    opacity: 0.5;
}

.account-form h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(to bottom, #ffffff 40%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 242, 255, 0.15);
    padding-bottom: 10px;
}

/* ==========================================================================
   HUD KÖŞE IŞARETLERI
   ========================================================================== */
.hud-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid var(--accent-blue);
    opacity: 0.6;
}
.hud-corner.top-left { top: 16px; left: 16px; border-right: none; border-bottom: none; }
.hud-corner.top-right { top: 16px; right: 16px; border-left: none; border-bottom: none; }
.hud-corner.bottom-left { bottom: 16px; left: 16px; border-right: none; border-top: none; }
.hud-corner.bottom-right { bottom: 16px; right: 16px; border-left: none; border-top: none; }

/* ==========================================================================
   FORM ELEMANLARI & ALANLARI
   ========================================================================== */
.input-group {
    margin-bottom: 16px;
    text-align: left;
}

.input-group label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.input-field {
    width: 100%;
    padding: 11px 14px;
    background: rgba(0, 242, 255, 0.03);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 0;
    color: #fff;
    font-size: 1.2rem;
    font-family: var(--font-main);
    letter-spacing: 1px;
    outline: none;
    transition: var(--transition-fast);
    clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.input-field::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.input-field option {
    background: #050a15;
    color: #fff;
}

.input-field:focus {
    border-color: var(--accent-blue);
    background: rgba(0, 242, 255, 0.08);
    box-shadow: 0 0 20px var(--accent-blue-glow);
}

.error-message {
    color: #ff003c;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================================================
   BUTONLAR & NAVİGASYON
   ========================================================================== */
.submit-btn {
    width: 100%;
    padding: 14px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 4px;
    border: none;
    cursor: pointer;
    background: var(--gold);
    color: #000;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: var(--transition-fast);
    margin-top: 10px;
}

.submit-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--gold-glow);
}

.home-button {
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: var(--font-heading);
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 10px 20px;
    border: 1px solid rgba(0, 242, 255, 0.4);
    background: rgba(2, 4, 12, 0.6);
    backdrop-filter: blur(5px);
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    z-index: 100;
    transition: var(--transition-fast);
}

.home-button:hover {
    background: rgba(0, 242, 255, 0.12);
    color: #fff;
    border-color: var(--accent-blue);
    box-shadow: 0 0 25px var(--accent-blue-glow);
}

/* ==========================================================================
   SOL & SAĞ FRAKSİYON ALANLARI (Büyütülmüş Yeni Ölçüler)
   ========================================================================== */
/* Sol Taraf: Faction Logosu */
.faction-logo {
    width: 100%;
    max-width: 450px;          /* Düzenleme: Logo 290px'ten 380px'e büyütüldü */
    height: auto;
    opacity: 0.95;
    animation: holoFloat 6s ease-in-out infinite; 
}

/* Sağ Taraf: Planet Bilgi Kutusu */
/* ==========================================================================
   SAĞ TARAF: PLANET BİLGİ KUTUSU — GELİŞTİRİLMİŞ VERSİYON
   ========================================================================== */
.faction-info-box {
    width: 100%;
    max-width: 380px;
    padding: 38px 30px;
    background: linear-gradient(160deg, rgba(8, 12, 22, 0.96) 0%, rgba(3, 5, 10, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%);
    text-align: center;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}

.info-hud-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    box-shadow: 0 0 12px currentColor;
}

.faction-info-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    text-shadow: 0 0 14px currentColor;
}

.planet-image {
    width: 200px;
    height: 200px;
    margin: 10px auto 25px auto;
    display: block;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.5s var(--transition-fast);
}

.faction-info-box:hover .planet-image {
    transform: scale(1.06) rotate(6deg);
}

/* Metin okunabilirliği: opaklık artırıldı + hafif gölge ile arka plandan ayrıştırıldı */
.faction-info-box p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.3px;
    text-shadow: 0 0 14px currentColor;
}

.bonus-info {
    display: inline-block;
    margin-top: 26px;
    color: #fff;
    padding: 8px 20px;
    font-size: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.04);
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    letter-spacing: 2px;
    border: 1px solid;
}

/* ==========================================================================
   ONAY KUTULARI (Terms / Marketing) — Özel Sci-Fi Checkbox
   ========================================================================== */
.checkbox-group {
    margin: 14px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border: 1px solid rgba(0, 242, 255, 0.4);
    background: rgba(0, 242, 255, 0.03);
    position: relative;
    transition: var(--transition-fast);
    clip-path: polygon(3px 0, 100% 0, 100% calc(100% - 3px), calc(100% - 3px) 100%, 0 100%, 0 3px);
}

.checkbox-custom::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 6px;
    width: 4px;
    height: 8px;
    border: solid var(--gold);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: var(--transition-fast);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom {
    border-color: var(--gold);
    background: rgba(255, 205, 60, 0.08);
    box-shadow: 0 0 12px var(--gold-glow);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom::after {
    opacity: 1;
}

.checkbox-label input[type="checkbox"]:focus-visible ~ .checkbox-custom {
    border-color: var(--accent-blue);
    box-shadow: 0 0 12px var(--accent-blue-glow);
}

.checkbox-text {
    font-size: 1.2rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
}

.checkbox-text a {
    color: var(--accent-blue);
    text-decoration: none;
    border-bottom: 1px dotted rgba(0, 242, 255, 0.4);
    transition: var(--transition-fast);
}

.checkbox-text a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.policy-link {
    background: none;
    border: none;
    padding: 0 2px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #00e5ff;
    cursor: pointer;
    position: relative;
    transition: color 0.25s ease, text-shadow 0.25s ease;
    text-shadow: 0 0 4px rgba(0, 229, 255, 0.5);
}

.policy-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00e5ff, transparent);
    opacity: 0.6;
    transform: scaleX(0.4);
    transform-origin: center;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.policy-link:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.9), 0 0 14px rgba(0, 229, 255, 0.5);
}

.policy-link:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.policy-link:active {
    color: #0077ff;
    text-shadow: 0 0 10px rgba(0, 119, 255, 1);
}

.policy-link:focus-visible {
    outline: 1px solid rgba(0, 229, 255, 0.6);
    outline-offset: 3px;
}

/* Devre dışı buton görünümü */
.submit-btn:disabled {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.35);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.submit-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.35);
    box-shadow: none;
    transform: none;
}
/* Fraksiyona özel renk vurguları — kenarlık, başlık, glow ve rozet tek renkte hizalı */
#faction-info-solari { border-left: 3px solid #ffb700; }
#faction-info-solari .info-hud-line,
#faction-info-solari h3,
#faction-info-solari .bonus-info { color: #ffb700; }
#faction-info-solari .bonus-info { border-color: rgba(255, 183, 0, 0.4); background: rgba(255, 183, 0, 0.06); }
#faction-info-solari .planet-image { box-shadow: 0 0 20px rgba(255, 183, 0, 0.25); }

#faction-info-velyssar { border-left: 3px solid #ff0044; }
#faction-info-velyssar .info-hud-line,
#faction-info-velyssar h3,
#faction-info-velyssar .bonus-info { color: #ff0044; }
#faction-info-velyssar .bonus-info { border-color: rgba(255, 0, 68, 0.4); background: rgba(255, 0, 68, 0.06); }
#faction-info-velyssar .planet-image { box-shadow: 0 0 20px rgba(255, 0, 68, 0.25); }

#faction-info-synari { border-left: 3px solid #00ffaa; }
#faction-info-synari .info-hud-line,
#faction-info-synari h3,
#faction-info-synari .bonus-info { color: #00ffaa; }
#faction-info-synari .bonus-info { border-color: rgba(0, 255, 170, 0.4); background: rgba(0, 255, 170, 0.06); }
#faction-info-synari .planet-image { box-shadow: 0 0 20px rgba(0, 255, 170, 0.25); }
/* ==========================================================================
   ANIMASYONLAR & FOOTER
   ========================================================================== */
/* ==========================================================================
   FOOTER — Sci-Fi HUD Alt Bar
   ========================================================================== */
footer {
    background: linear-gradient(180deg, rgba(2, 3, 7, 0.85) 0%, rgba(2, 3, 7, 0.98) 100%);
    padding: 16px 30px;
    border-top: 1px solid rgba(0, 242, 255, 0.15);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5);
}

/* İnce üstteki neon çizgi vurgusu */
footer::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    opacity: 0.6;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 20px;
}

/* Sol taraf: Copyright metni */
footer p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 1rem;
    font-family: var(--font-main);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

/* Yanıp sönen küçük "sistem aktif" göstergesi */
footer p::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4dff88;
    box-shadow: 0 0 6px #4dff88, 0 0 10px #4dff88;
    animation: footerPulse 2.4s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes footerPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

/* Sağ taraf: Sosyal linkler */
.social-links {
    display: flex;
    gap: 10px;
}

.s-link {
    position: relative;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: var(--transition-fast);
}

.s-link:hover {
    background: var(--accent-blue);
    color: #000;
    border-color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px var(--accent-blue-glow);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    footer { padding: 14px 20px; }

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    footer p {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .social-links { gap: 8px; }

    .s-link {
        font-size: 0.65rem;
        padding: 5px 11px;
    }
}
/* ==========================================================================
   SCI-FI REGISTER (H2) BAŞLIK TASARIMI - JİLET GİBİ NET VERSİYON
   ========================================================================== */
.account-form h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-align: center;
    
    /* Netlik Koruması: Tarayıcının clip-path/gradyan çakışmasından dolayı yazıyı bulanıklaştırmasını önler */
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    /* Net ve Güçlü Renk Geçişi (Bulanıklık yapmayan katı renkler) */
    background: linear-gradient(to bottom, #ffffff 40%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    position: relative;
    padding: 15px 0;
    margin-bottom: 30px;
    
    /* Bulanıklığa sebep olan linear-gradient arka plan kaldırıldı, yerine net siber çizgiler eklendi */
    border-bottom: 1px solid rgba(0, 242, 255, 0.25);
    border-top: 1px dashed rgba(0, 242, 255, 0.15);
}

/* Başlığın Solundaki Sci-Fi Köşe Belirteci [ ] */
.account-form h2::before {
    content: "[";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%) translateZ(0); /* Netlik koruması */
    color: var(--accent-blue);
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.7;
    animation: pulseBlink 2s infinite alternate;
}

/* Başlığın Sağundaki Sci-Fi Köşe Belirteci [ ] */
.account-form h2::after {
    content: "]";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) translateZ(0); /* Netlik koruması */
    color: var(--accent-blue);
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.7;
    animation: pulseBlink 2s infinite alternate;
}

/* Başlığın Hemen Altındaki Siber Yükleme Çizgisi */
.account-form::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-blue);
    margin: -31px auto 25px auto;
    box-shadow: 0 0 8px var(--accent-blue);
    position: relative;
    z-index: 5;
    transform: translateZ(0); /* Netlik koruması */
    animation: dataStream 3s ease-in-out infinite;
}

/* @import ile fütüristik bir font ekliyoruz */

/* Genel Konteyner için Sci-Fi Font Tanımlaması */
.account-zone {
    font-family: 'Orbitron', sans-serif;
    background-color: #060913; /* Derin uzay siyahı */
    color: #00f0ff; /* Siber neon mavi */
}

/* 1. ORBITAL PACT BAŞLIĞI (Ana Başlık Efekti) */
header h1 {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    
    /* Katmanlı Neon Parlama Efekti */
    text-shadow: 
        0 0 5px #00f0ff,
        0 0 10px #00f0ff,
        0 0 20px #00f0ff,
        0 0 40px #00a8ff;
        
    position: relative;
    animation: h1Pulse 4s infinite alternate;
}

/* Klasik Sci-Fi "Hafif Parlama Dalgalanması" Animasyonu */
@keyframes h1Pulse {
    0% {
        text-shadow: 0 0 5px #00f0ff, 0 0 10px #00f0ff, 0 0 20px #00f0ff;
        opacity: 0.95;
    }
    100% {
        text-shadow: 0 0 8px #00f0ff, 0 0 15px #00f0ff, 0 0 30px #00f0ff, 0 0 50px #00a8ff;
        opacity: 1;
    }
}


/* 2. REGISTER BAŞLIĞI (Holografik Safir Konsepti) */
.account-form h2 {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 12px; /* Geniş ve fütüristik askeri panel havası */
    color: #00f0ff; /* Tamamen siber neon maviye dönüştürüldü */
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 12px;
    
    /* Altına ince siber kesikli (dotted) veri çizgisi */
    border-bottom: 1px dotted rgba(0, 240, 255, 0.4);
    
    /* Gözü yormayan, asil ve tek renk neon parlama gölgesi */
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
    
    /* Nabız gibi hafifçe parlayıp sönen akıcı animasyon */
    animation: holoPulse 3s infinite ease-in-out;
}

/* Kuantum ekran parlamasını simüle eden animasyon */
@keyframes holoPulse {
    0%, 100% { 
        text-shadow: 0 0 8px rgba(0, 240, 255, 0.5); 
        opacity: 0.85; 
    }
    50% { 
        text-shadow: 0 0 18px rgba(0, 240, 255, 0.9); 
        opacity: 1; 
    }
}


/* HUD Köşeleri ve Form Alanları */
.hud-corner {
    border-color: #00f0ff !important; /* Mevcut HUD köşelerini neon maviye boyar */
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

.submit-btn {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 3px;
    background: transparent;
    border: 1px solid #00f0ff;
    color: #00f0ff;
    box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.2), 0 0 10px rgba(0, 240, 255, 0.2);
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #00f0ff;
    color: #060913;
    box-shadow: 0 0 20px #00f0ff;
    cursor: pointer;
}
.policy-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-modal-box {
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    max-width: 700px;
    width: 92%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.7;
    scrollbar-width: thin;
    scrollbar-color: #00e5ff rgba(255,255,255,0.05);
}

.policy-modal-box h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.policy-modal-box h3 {
    font-size: 1.9rem;
    margin-top: 24px;
    margin-bottom: 8px;
    color: #ffffff;
}

.policy-modal-box p {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
}

.policy-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
}

.policy-modal-date {
    color: rgba(255,255,255,0.5);
    font-size: 1.4rem;
    margin-bottom: 24px;
}
.policy-modal-box::-webkit-scrollbar {
    width: 10px;
}

.policy-modal-box::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    box-shadow: inset 0 0 4px rgba(0,0,0,0.6);
}

.policy-modal-box::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00e5ff, #0077ff);
    border-radius: 4px;
    box-shadow: 0 0 6px rgba(0, 229, 255, 0.7), 0 0 2px rgba(0, 229, 255, 0.9) inset;
    border: 1px solid rgba(0, 229, 255, 0.4);
}

.policy-modal-box::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #33f0ff, #0090ff);
    box-shadow: 0 0 10px rgba(0, 229, 255, 1), 0 0 4px rgba(0, 229, 255, 1) inset;
}

.policy-modal-box::-webkit-scrollbar-corner {
    background: transparent;
}