/* --- HYPHA INTERACTIVE - FIXED FINAL STYLE --- */

:root {
    --bg-color: #0a0a12;
    --card-bg: #13141c;
    --primary-neon: #00f3ff;   /* Camgöbeği */
    --secondary-neon: #a3ff00; /* Neon Yeşil */
    --text-color: #e0e0e0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-tech: 'Chakra Petch', sans-serif;
}

html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* --- 1. NAVBAR (STYLISH & MINIMAL) --- */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 50px; position: fixed; width: 100%; top: 0; z-index: 1000;
    background: rgba(10, 10, 18, 0.85); backdrop-filter: blur(12px); /* Buzlu cam */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Çok silik alt çizgi */
}

/* --- LOGO DÜZELTME (Final) --- */
.logo { 
    display: flex; 
    align-items: center; 
    /* gap: 12px;  <-- BUNU SİLDİK (veya 0 yaptık) */
    gap: 0; 
    font-family: var(--font-tech); 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: white !important;
    text-shadow: none;
}

/* Boşluğu sadece ikonun sağına veriyoruz */
.logo-icon { 
    height: 2.5rem; 
    width: auto; 
    object-fit: contain; 
    margin-right: 12px; /* <-- Boşluğu buraya taşıdık */
    filter: none; 
}

.logo span {
    color: var(--primary-neon) !important;
}

/* NAVIGASYON LİNKLERİ (News, Games, Studio, Contact) */
.nav-links { list-style: none; display: flex; gap: 35px; align-items: center; }

.nav-links a { 
    text-decoration: none; 
    color: #b0b0b0; /* Varsayılan yumuşak gri */
    font-size: 0.9rem; 
    font-weight: 500; 
    font-family: var(--font-tech); /* Tekno font ama ince */
    letter-spacing: 1px; /* Harf aralığını açtık, daha premium durur */
    position: relative; /* Alt çizgi için gerekli */
    transition: all 0.3s ease;
    padding: 5px 0;
}

/* Linkin Altındaki Çizgi Efekti (Hover) */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%; /* Başlangıçta çizgi yok */
    height: 2px;
    background: var(--primary-neon); /* Neon mavi çizgi */
    transition: width 0.3s ease; /* Yavaşça uzasın */
    box-shadow: 0 0 8px var(--primary-neon);
}

.nav-links a:hover { 
    color: white; 
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.6); /* Yazı parlasın */
}

.nav-links a:hover::after {
    width: 100%; /* Üstüne gelince çizgi tam boy olsun */
}

/* DİL BUTONU (TR) - Daha Modern */
.lang-btn { 
    background: rgba(255, 255, 255, 0.03); /* Çok hafif dolgu */
    border: 1px solid rgba(255, 255, 255, 0.2); /* İnce gri çerçeve */
    color: #ccc; 
    padding: 8px 18px; 
    border-radius: 8px; 
    cursor: pointer; 
    font-weight: bold; 
    font-family: var(--font-tech); 
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 1px;
}

.lang-btn:hover { 
    border-color: var(--secondary-neon); /* Çerçeve yeşil olsun */
    color: var(--secondary-neon); /* Yazı yeşil olsun */
    background: rgba(163, 255, 0, 0.1); /* İçerisi hafif yeşillensin */
    box-shadow: 0 0 15px rgba(163, 255, 0, 0.2); /* Hafif parlama */
    transform: translateY(-2px); /* Hafif yukarı kalksın */
}

/* --- 2. HERO SECTION --- */
.hero {
    height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('assets/studio-bg.jpg');
    background-size: cover; background-position: center; overflow: hidden;
    padding-top: 60px; /* Navbar payı */
}
#hero-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.hero-content { z-index: 2; position: relative; padding: 0 20px; }
.hero h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; font-family: var(--font-tech); color: white; }
.highlight-text {
    color: transparent; background: linear-gradient(to right, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text; background-clip: text;
    filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.4));
}
.hero p { max-width: 600px; margin: 0 auto 30px; color: #ccc; line-height: 1.6; font-size: 1.1rem; }
.btn-primary {
    display: inline-block; padding: 16px 45px;
    background: linear-gradient(90deg, var(--primary-neon), #00c2cc);
    color: black; text-decoration: none; font-weight: 800; font-family: var(--font-tech);
    border-radius: 30px; transition: 0.3s;
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.3); border: none; cursor: pointer;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 0 40px rgba(0, 243, 255, 0.5); }

/* --- 3. HABERLER (NEWS) SECTION --- */
.news-section { padding: 100px 50px; max-width: 1200px; margin: 0 auto; }
.section-header { display: flex; align-items: center; margin-bottom: 50px; }
.section-header h2 { font-family: var(--font-tech); margin-right: 20px; border-left: 4px solid var(--primary-neon); padding-left: 15px; color: white; font-size: 1.8rem; }
.section-header .line { flex: 1; height: 1px; background: linear-gradient(to right, var(--glass-border), transparent); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.news-card {
    background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border);
    border-radius: 12px; transition: 0.3s; position: relative; overflow: hidden; cursor: pointer;
    display: flex; flex-direction: column; height: 100%;
}
.news-card::before { content:''; position: absolute; top:0; left:0; width: 4px; height: 100%; background: var(--secondary-neon); }
.news-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.05); border-color: var(--secondary-neon); }
.news-card-img { width: 100%; height: 200px; object-fit: cover; display: block; border-bottom: 1px solid rgba(255,255,255,0.05); }
.news-card-content { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.news-date { font-size: 0.8rem; color: #666; margin-bottom: 8px; display: block; font-family: var(--font-tech); }
.news-title { font-size: 1.2rem; color: white; margin-bottom: 10px; font-weight: bold; line-height: 1.3; }
.news-desc { color: #aaa; font-size: 0.95rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* --- 4. GAMES PORTFOLIO --- */
.games-section { padding: 80px 50px; max-width: 1200px; margin: 0 auto; }
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }

.game-card {
    background: var(--card-bg); border-radius: 16px; overflow: hidden;
    border: 1px solid var(--glass-border); transition: all 0.4s ease;
    cursor: pointer; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.game-card:hover { transform: translateY(-10px); border-color: var(--primary-neon); box-shadow: 0 0 30px rgba(0, 243, 255, 0.15); }
.game-card.released { border: 1px solid var(--secondary-neon); }
.card-badge {
    position: absolute; top: 15px; right: 15px;
    background: var(--secondary-neon); color: black;
    font-weight: 800; padding: 6px 12px; border-radius: 4px; z-index: 10; font-size: 0.7rem; font-family: var(--font-tech);
}
.card-img { width: 100%; height: 400px; object-fit: cover; opacity: 0.85; transition: 0.4s; }
.game-card:hover .card-img { opacity: 1; transform: scale(1.03); }
.card-info { padding: 25px; position: absolute; bottom: 0; background: linear-gradient(to top, rgba(0,0,0,0.95) 10%, transparent 100%); width: 100%; }
.card-title { font-size: 1.8rem; color: white; font-weight: 700; margin-bottom: 5px; font-family: var(--font-tech); }
.card-genre { color: var(--secondary-neon); font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: bold; }

/* --- 5. WHO WE ARE (ABOUT) - DÜZELTİLDİ --- */
.about-section { padding: 100px 0; background: transparent; }
.about-section .container {
    display: flex; align-items: center; justify-content: space-between;
    gap: 50px; max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.about-content { flex: 1; }
.gradient-text {
    font-size: 2.5rem; font-family: var(--font-tech); font-weight: 700;
    background: linear-gradient(90deg, #fff, #00f3ff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 20px; display: inline-block;
}
.about-desc { font-size: 1rem; color: #b0b0b0; line-height: 1.6; max-width: 90%; }
.neon-divider {
    width: 50px; height: 3px; background: #00f3ff; margin-top: 25px;
    box-shadow: 0 0 8px #00f3ff; border-radius: 2px;
}
/* Kart Alanı */
.stats-grid { display: flex; gap: 20px; flex-wrap: wrap; }
/* Kartların Kendisi */
.stat-card {
    background: rgba(15, 20, 28, 0.6); /* Daha koyu transparan */
    border: 1px solid rgba(0, 243, 255, 0.15);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 25px 20px; border-radius: 12px;
    min-width: 140px; flex: 1;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.stat-card:hover {
    transform: translateY(-5px); border-color: #00f3ff;
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.2); background: rgba(15, 20, 28, 0.9);
}
/* İkon Düzeltmesi */
.stat-icon {
    font-size: 2rem; color: #00f3ff; margin-bottom: 15px;
    background: transparent !important; /* Gri arkaplanı zorla kaldır */
    width: auto !important; height: auto !important;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.6);
}
.stat-number {
    display: block; font-size: 1.8rem; font-family: var(--font-tech);
    font-weight: 700; color: white; line-height: 1.2;
    margin-bottom: 5px;
}
.stat-label { font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }

/* --- 6. CONTACT SECTION (TERMINAL STYLE) - DÜZELTİLDİ --- */
.contact-section {
    position: relative; padding: 120px 20px; overflow: hidden;
    display: flex; justify-content: center; align-items: center;
}
.contact-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px; z-index: -1;
    mask-image: radial-gradient(circle, black 30%, transparent 80%);
}
.contact-container { width: 100%; max-width: 700px; padding: 0 10px; }
.contact-card {
    background: rgba(10, 15, 20, 0.8); border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(10px); padding: 60px 40px; border-radius: 20px;
    text-align: center; position: relative; box-shadow: 0 0 60px rgba(0,0,0,0.6); overflow: hidden;
}
.card-glow {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0,243,255,0.05) 0%, transparent 60%);
    animation: rotateGlow 15s linear infinite; z-index: 0; pointer-events: none;
}
@keyframes rotateGlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.contact-title {
    font-family: var(--font-tech); font-size: 2.8rem; color: white;
    margin-bottom: 20px; position: relative; z-index: 1;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}
.contact-desc {
    color: #a0a0a0; font-size: 1.1rem; margin-bottom: 40px;
    line-height: 1.6; position: relative; z-index: 1;
}
.cyber-btn {
    position: relative; display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 40px; background: transparent; border: 1px solid #00f3ff;
    color: #00f3ff; font-family: var(--font-tech); font-weight: 700;
    text-decoration: none; text-transform: uppercase; letter-spacing: 2px;
    overflow: hidden; transition: 0.3s; z-index: 1;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}
.cyber-btn:hover {
    background: #00f3ff; color: #000;
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.6); transform: scale(1.05);
}
.cyber-btn-tag { font-size: 0.7rem; opacity: 0.7; }

/* Sosyal Medya İkonları */
.contact-socials {
    margin-top: 40px; display: flex; justify-content: center; gap: 25px;
    position: relative; z-index: 2;
}
.contact-socials a {
    color: #888; font-size: 1.8rem; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.03); width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-socials a:hover {
    color: #000; background: #00f3ff;
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.6);
    transform: translateY(-5px) scale(1.1); border-color: #00f3ff;
}

/* --- 7. ROADMAP SECTION (ACCORDION TIMELINE) --- */
/* --- ROADMAP GENİŞLİK VE BOŞLUK AYARI --- */
.roadmap-section { 
    padding: 120px 20px; /* Üst/Alt boşluğu 80'den 120'ye çıkardık (Ferahladı) */
    max-width: 1200px;   /* Genişliği 1000'den 1200'e çıkardık (Diğer bölümlerle hizalandı) */
    margin: 0 auto; 
    width: 100%;         /* Mobilde tam otursun */
}

/* Başlık ile butonlar arasına biraz mesafe koyalım */
.roadmap-section .section-header {
    margin-bottom: 60px; /* Başlık ile ilk butonun arasını açtık */
}

/* Yıl Butonları (Accordion Header) */
.accordion-btn {
    background: rgba(10, 15, 20, 0.95);
    color: white;
    cursor: pointer;
    padding: 20px;
    width: 100%;
    text-align: left;
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--primary-neon); /* Sol taraf mavi çizgi */
    outline: none;
    font-family: var(--font-tech);
    font-size: 1.4rem;
    font-weight: bold;
    transition: 0.4s;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Üzerine gelince veya aktifken */
.accordion-btn:hover, .accordion-btn.active {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--primary-neon);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.15);
}

/* Sağdaki ok işareti (+) */
.accordion-btn::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-neon);
    transition: 0.3s;
}

.accordion-btn.active::after {
    content: '-';
    transform: rotate(180deg);
}

/* İçerik Paneli (Başlangıçta Kapalı) */
.accordion-panel {
    padding: 0 20px;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    margin-bottom: 10px;
    position: relative; /* Timeline çizgisi için */
}

/* --- ESKİ TIMELINE STİLİ (GERİ GELDİ) --- */
.timeline { position: relative; max-width: 1000px; margin: 30px auto; }
.timeline::after {
    content: ''; position: absolute; width: 4px; background: rgba(255, 255, 255, 0.1);
    top: 0; bottom: 0; left: 50%; margin-left: -2px; border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}
.timeline-item {
    padding: 10px 40px; position: relative; width: 50%; box-sizing: border-box;
    display: flex; align-items: center; margin-bottom: 20px;
}
.timeline-item.left { left: 0; justify-content: flex-end; text-align: right; }
.timeline-item.right { left: 50%; justify-content: flex-start; text-align: left; }

.timeline-item::after {
    content: ''; position: absolute; width: 20px; height: 20px; background: #13141c;
    border: 3px solid var(--primary-neon); border-radius: 50%; z-index: 1;
    box-shadow: 0 0 10px var(--primary-neon); top: 50%; transform: translateY(-50%);
}
.timeline-item.left::after { right: -12px; } /* Çizgiye tam oturtma */
.timeline-item.right::after { left: -12px; }

.roadmap-content {
    padding: 20px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--glass-border);
    border-radius: 12px; transition: 0.3s; width: 100%; max-width: 450px;
}
.roadmap-content:hover { border-color: var(--primary-neon); transform: scale(1.02); background: rgba(255, 255, 255, 0.05); }

.status-tag { display: inline-block; padding: 4px 10px; border-radius: 4px; font-size: 0.7rem; font-weight: bold; margin-bottom: 10px; text-transform: uppercase; }
.status-done { border: 1px solid var(--secondary-neon); color: var(--secondary-neon); }
.status-progress { border: 1px solid var(--primary-neon); color: var(--primary-neon); }
.status-planned { border: 1px solid #666; color: #aaa; }
.roadmap-date { color: white; font-family: var(--font-tech); font-size: 1.2rem; margin-bottom: 5px; display: block; }

/* Mobil Uyum */
@media (max-width: 768px) {
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; text-align: left; justify-content: flex-start; margin-bottom: 15px; }
    .timeline-item.left, .timeline-item.right { left: 0; }
    .timeline-item::after { left: 19px; right: auto; }
}

/* --- 8. CAREERS SECTION --- */
.careers-section { padding: 60px 50px; max-width: 1200px; margin: 0 auto; }
.careers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.career-card {
    background: rgba(255, 255, 255, 0.03); border: 1px solid var(--glass-border);
    padding: 30px; border-radius: 12px; transition: 0.3s;
    display: flex; flex-direction: column; justify-content: space-between;
}
.career-card:hover { border-color: var(--secondary-neon); transform: translateY(-5px); box-shadow: 0 5px 20px rgba(163, 255, 0, 0.1); }
.job-title { font-size: 1.4rem; color: white; font-weight: 700; margin-bottom: 5px; font-family: var(--font-tech); }
.job-type { display: inline-block; font-size: 0.8rem; color: var(--primary-neon); border: 1px solid var(--primary-neon); padding: 4px 10px; border-radius: 20px; margin-bottom: 15px; width: fit-content; }
.job-desc { color: #aaa; font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; flex: 1; }
.apply-btn { text-align: center; background: white; color: black; padding: 12px; border-radius: 8px; text-decoration: none; font-weight: bold; transition: 0.3s; display: block; }
.apply-btn:hover { background: var(--secondary-neon); box-shadow: 0 0 15px rgba(163, 255, 0, 0.4); }

/* --- 9. MODALS (ÖNEMLİ DÜZELTME) --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(8px);
    display: flex; justify-content: center; align-items: center; z-index: 2000;
    opacity: 0; visibility: hidden; transition: 0.3s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

/* GAME MODAL STYLE */
#game-modal .modal-content {
    background: #13141c; width: 90%; max-width: 950px;
    border-radius: 20px; border: 1px solid rgba(255,255,255,0.15);
    overflow: hidden; display: flex; flex-direction: row; position: relative;
    box-shadow: 0 0 60px rgba(0, 243, 255, 0.1); max-height: 600px;
}
.modal-media { width: 45%; height: auto; position: relative; background: black; overflow: hidden; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.modal-details { width: 55%; padding: 40px; overflow-y: auto; }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 15px; padding-right: 60px; }
.modal-header h2 { font-size: 2.5rem; font-family: var(--font-tech); color: white; margin: 0; }
.status-badge { 
    background: rgba(255,255,255,0.05); padding: 8px 16px; border-radius: 8px; 
    font-size: 0.8rem; font-weight: bold; color: var(--secondary-neon); 
    border: 1px solid rgba(163, 255, 0, 0.3); white-space: nowrap;
}
/* --- ÖNE ÇIKANLAR (FEATURES) DÜZELTME --- */
.features-list { 
    margin: 30px 0; 
    padding: 25px; 
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid var(--glass-border);
    border-radius: 12px; 
}

/* Başlık (Öne Çıkanlar) */
.features-list h4 {
    color: white;
    font-family: var(--font-tech);
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

/* Liste Yapısı */
.features-list ul {
    list-style: none; /* Tarayıcının koyduğu o çirkin noktayı SİL */
    padding: 0;
    margin: 0;
}

/* Liste Maddeleri */
.features-list li { 
    margin-bottom: 12px; 
    color: #ccc; 
    font-size: 0.95rem;
    display: flex; /* Hizalama için esnek kutu */
    align-items: center;
}

/* Bizim Neon Noktamız */
.features-list li::before { 
    content: ""; 
    width: 8px; 
    height: 8px; 
    background: var(--primary-neon); 
    border-radius: 50%; 
    margin-right: 15px; 
    display: inline-block; 
    box-shadow: 0 0 10px var(--primary-neon); /* Parlama efekti ekledim */
    flex-shrink: 0; /* Yazı uzun olsa bile nokta ezilmez */
}
.download-buttons { display: flex; gap: 15px; margin-top: 30px; }
.store-btn { flex: 1; padding: 16px; border-radius: 12px; border: none; font-weight: bold; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 1rem; transition: 0.3s; }
.store-btn.apple { background: white; color: black; }
.store-btn.google { background: transparent; border: 1px solid #555; color: white; }
.store-btn.google:hover { border-color: var(--secondary-neon); color: var(--secondary-neon); }

/* NEWS MODAL STYLE (DÜZELTİLDİ) */
#news-modal .news-modal-content {
    background: #0f0f16;
    background: linear-gradient(180deg, rgba(15, 15, 22, 0.95) 0%, rgba(10, 10, 15, 0.98) 100%);
    width: 90%; max-width: 800px; /* Genişlik Sınırı */
    border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.15);
    overflow: hidden; position: relative; display: flex; flex-direction: column;
}
.news-header-wrapper { position: relative; width: 100%; height: 250px; flex-shrink: 0; }
#news-modal-img { width: 100%; height: 100%; object-fit: cover; }
.news-header-overlay { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, transparent 0%, #0f0f16 100%); }
.news-body-wrapper { padding: 30px; position: relative; margin-top: -60px; z-index: 2; }
.news-meta-row { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.news-date-badge {
    background: rgba(0, 243, 255, 0.1); color: #00f3ff;
    border: 1px solid rgba(0, 243, 255, 0.3); padding: 5px 12px; border-radius: 4px;
    font-family: var(--font-tech); font-size: 0.85rem; display: flex; align-items: center;
}
.news-date-badge::before { content: "📅"; margin-right: 8px; font-size: 0.8rem; filter: grayscale(1); }
.news-system-tag { font-size: 0.75rem; color: #666; letter-spacing: 2px; border-left: 1px solid #444; padding-left: 15px; }
#news-modal-title { font-family: var(--font-tech); font-size: 2rem; color: white; margin-bottom: 20px; line-height: 1.2; }
.news-text-scroll { max-height: 400px; overflow-y: auto; padding-right: 10px; }
#news-modal-text { color: #ccc; line-height: 1.8; font-size: 1rem; white-space: pre-line; }

/* Close Buttons */
.close-btn, .modal-close-btn {
    position: absolute; top: 20px; right: 20px; z-index: 50;
    background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.2);
    color: white; width: 40px; height: 40px; border-radius: 50%;
    cursor: pointer; transition: 0.3s; font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
}
.close-btn:hover, .modal-close-btn:hover { background: #ff4444; border-color: #ff4444; transform: rotate(90deg); }

/* --- LEGAL MODAL --- */
#legal-modal .legal-content-wrapper { 
    background: #13141c; width: 90%; max-width: 800px; height: 80vh;
    border-radius: 16px; border: 1px solid var(--glass-border);
    padding: 0; overflow: hidden; position: relative;
}
.legal-body { padding: 40px; height: 100%; overflow-y: auto; }
.legal-body h2 { font-family: var(--font-tech); color: var(--primary-neon); margin-bottom: 25px; border-bottom: 1px solid var(--glass-border); padding-bottom: 15px; }
.legal-text-area { color: #ccc; line-height: 1.8; font-size: 0.95rem; }
.legal-text-area h3 { color: white; margin-top: 25px; margin-bottom: 10px; }

/* --- FOOTER --- */
footer { padding: 40px 20px; border-top: 1px solid var(--glass-border); background: #050508; text-align: center; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.footer-legal { display: flex; gap: 15px; align-items: center; }
.footer-legal a { color: #444; text-decoration: none; font-size: 0.8rem; font-weight: 500; transition: 0.3s; }
.footer-legal a:hover { color: var(--primary-neon); }
.separator { color: #333; font-size: 0.8rem; }

/* --- EXTRAS (PRELOADER & BUTTONS) --- */
#scrollTopBtn {
    display: none; position: fixed; bottom: 30px; right: 30px; z-index: 9000;
    background: rgba(10, 10, 18, 0.9); color: #00f3ff; border: 1px solid #00f3ff;
    width: 50px; height: 50px; border-radius: 50%; align-items: center; justify-content: center;
    font-size: 1.5rem; cursor: pointer; box-shadow: 0 0 15px rgba(0, 243, 255, 0.3); transition: all 0.3s ease;
}
#scrollTopBtn:hover { background: #00f3ff; color: #000; transform: translateY(-5px); box-shadow: 0 0 30px rgba(0, 243, 255, 0.6); }
#scrollTopBtn.show { display: flex; animation: fadeIn 0.3s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- PRELOADER (FIXED CENTER) --- */
#preloader {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100vw;  /* % yerine vw: Ekranın tamamını zorla kaplar */
    height: 100vh; /* % yerine vh: Ekranın tamamını zorla kaplar */
    background: #0a0a12; /* Arka plan rengini direkt yazdım */
    z-index: 99999;
    
    /* MERKEZLEME KOMUTLARI */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Dikeyde orta */
    align-items: center;     /* Yatayda orta */
    
    margin: 0;
    padding: 0;
}

/* Kalan kısımlar aynı (Animasyon vs.) */
.scanner {
    width: 80px; height: 80px; 
    border: 3px solid transparent; 
    border-top-color: var(--primary-neon); 
    border-bottom-color: var(--primary-neon); 
    border-radius: 50%; 
    animation: spin-right 1.2s linear infinite;
    margin-bottom: 20px; /* Yazı ile arası */
    position: relative;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.scanner::before {
    content: ''; position: absolute; top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 3px solid transparent; border-left-color: var(--secondary-neon); border-right-color: var(--secondary-neon);
    border-radius: 50%; animation: spin-left 0.8s linear infinite;
}

.loading-text { 
    font-family: 'Orbitron', sans-serif; 
    color: var(--primary-neon); 
    letter-spacing: 2px; 
    font-size: 1rem; 
    font-weight: bold;
    animation: blink 1s infinite alternate; 
}

@keyframes spin-right { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes spin-left { 0% { transform: rotate(0deg); } 100% { transform: rotate(-360deg); } }
@keyframes blink { 0% { opacity: 0.5; } 100% { opacity: 1; text-shadow: 0 0 10px var(--primary-neon); } }

#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }

/* CUSTOM CURSOR (PC ONLY) */
@media (min-width: 992px) {
    body { cursor: none; }
    #cursor-dot { width: 6px; height: 6px; background-color: var(--primary-neon); position: fixed; border-radius: 50%; z-index: 9999; pointer-events: none; transform: translate(-50%, -50%); }
    #cursor-outline { width: 25px; height: 25px; border: 1px solid var(--primary-neon); position: fixed; border-radius: 50%; z-index: 9998; pointer-events: none; transform: translate(-50%, -50%); transition: 0.1s; }
    body.hovering #cursor-outline { width: 45px; height: 45px; border-color: var(--secondary-neon); background-color: rgba(163, 255, 0, 0.1); }
    body.clicking #cursor-outline { width: 15px; height: 15px; background-color: rgba(0, 243, 255, 0.5); }
}

/* MOBIL UYUM */
@media (max-width: 768px) {
    .navbar { padding: 15px 20px; }
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    
    .about-section .container { flex-direction: column; text-align: center; }
    .stats-grid { width: 100%; justify-content: center; }
    .stat-card { min-width: 140px; margin-bottom: 10px; }
    
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; text-align: left; justify-content: flex-start; }
    .timeline-item.left, .timeline-item.right { left: 0; }
    .timeline-item::after { left: 21px; right: auto; }
    
    .contact-title { font-size: 2rem; }
    .contact-card { padding: 40px 20px; }
    .cyber-btn { width: 100%; justify-content: center; }
    
    #game-modal .modal-content { flex-direction: column; height: auto; max-height: 90vh; }
    .modal-media { width: 100%; height: 200px; }
    .modal-details { width: 100%; padding: 20px; }
}

/* --- CURSOR BUG FIX (KAYBOLMA SORUNU) --- */

/* 1. Mouse'u her şeyin en üstüne çıkar */
#cursor-dot, 
#cursor-outline {
    z-index: 999999 !important; /* Altı tane 9 koyduk, bundan yükseği yok */
    pointer-events: none !important; /* Tıklamayı engellemesin diye garantiye al */
    display: block !important; /* Asla display:none yemesin */
}

/* 2. Eğer sayfa dışına çıkarsa yumuşakça kaybolsun (aniden değil) */
body:not(:hover) #cursor-dot,
body:not(:hover) #cursor-outline {
    opacity: 0;
}

/* 3. Mobilde custom cursor'ı kesinlikle kapat (Bazen mobilde bug yapar) */
@media (max-width: 992px) {
    #cursor-dot, #cursor-outline {
        display: none !important;
    }
    body, a, button, input {
        cursor: auto !important; /* Normal parmak dokunuşu geri gelsin */
    }
}

/* --- GAME MODAL SCROLLBAR (KAYDIRMA ÇUBUĞU) DÜZELTME --- */

/* 1. Kaydırma Alanını Hedefle */
.modal-details::-webkit-scrollbar {
    width: 6px; /* Çok ince, zarif bir genişlik */
}

/* 2. Çubuğun Arka Yolu (Track) */
.modal-details::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3); /* Koyu transparan zemin */
    border-radius: 4px;
}

/* 3. Çubuğun Kendisi (Thumb) */
.modal-details::-webkit-scrollbar-thumb {
    background: #333; /* Koyu gri, göze batmaz */
    border-radius: 4px; /* Yuvarlak hatlar */
    border: 1px solid rgba(255,255,255,0.05);
}

/* 4. Üzerine Gelince (Hover) - Neon Efekt */
.modal-details::-webkit-scrollbar-thumb:hover {
    background: var(--primary-neon); /* Sitenin ana neon rengi (Mavi) */
    box-shadow: 0 0 10px var(--primary-neon); /* Hafif parlama */
}

/* (İsteğe Bağlı) Eğer Firefox kullanıyorsan orası için de ayar */
.modal-details {
    scrollbar-width: thin;
    scrollbar-color: #333 rgba(0,0,0,0.3);
}

/* --- YENİ ROZET (BADGE) TASARIMLARI --- */

/* 1. Temel Rozet Yapısı */
.card-badge {
    position: absolute; 
    top: 15px; 
    right: 15px;
    padding: 6px 12px; 
    border-radius: 6px; 
    z-index: 10; 
    font-size: 0.7rem; 
    font-family: var(--font-tech); 
    font-weight: 800;
    text-transform: uppercase; 
    letter-spacing: 1px;
    backdrop-filter: blur(4px); /* Hepsine hafif buzlu cam etkisi */
}

/* --- ROZET (BADGE) EFEKTLERİ (GÜNCELLENDİ V2) --- */

/* Öncelikle Pulse Animasyonunu Tanımlayalım */
@keyframes pulse-green-energy {
    0% { box-shadow: 0 0 0 0 rgba(163, 255, 0, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(163, 255, 0, 0); } /* Dışarı doğru yayılan ve kaybolan halka */
    100% { box-shadow: 0 0 0 0 rgba(163, 255, 0, 0); }
}

/* 1. RELEASED (YAYINDA) - Enerji Yayan Efekt */
.badge-released {
    background: var(--secondary-neon); /* Neon Yeşil Dolgu */
    color: black;
    font-weight: 900; /* Yazı daha kalın */
    border: none; /* Çerçeveye gerek yok, ışık yetiyor */
    
    /* Hem sabit parlama hem de hareketli pulse efekti */
    box-shadow: 0 0 20px rgba(163, 255, 0, 0.6); 
}

/* 2. IN DEVELOPMENT (GELİŞTİRİLİYOR) - Daha Silik Mavi */
.badge-dev {
    background: rgba(0, 243, 255, 0.08); /* Çok daha hafif zemin */
    color: rgba(0, 243, 255, 0.9); /* Yazı rengi bir tık kırık */
    
    /* Daha az belirgin (yarı saydam) ince mavi çerçeve */
    border: 1px solid rgba(0, 243, 255, 0.35); 
    box-shadow: none; /* Parlama yok */
}

/* 3. SECRET PROJECT (GİZLİ) - Daha Silik Mor */
.badge-secret {
    background: rgba(217, 0, 255, 0.08); /* Çok daha hafif zemin */
    color: rgba(217, 0, 255, 0.9); /* Yazı rengi bir tık kırık */
    
    /* Daha az belirgin (yarı saydam) ince mor çerçeve */
    border: 1px solid rgba(217, 0, 255, 0.35);
    box-shadow: none; /* Parlama yok */
}

/* --- OYUN KARTI ÇERÇEVE EFEKTLERİ (FIX - SAĞLAM SÜRÜM) --- */

/* 1. KARTIN TEMEL YAPISI (Temizlendi) */
.game-card {
    position: relative;
    background: #13141c;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
    /* Varsayılan sınır */
    border: 1px solid rgba(255, 255, 255, 0.1); 
    z-index: 1;
}

/* Karta hover yapınca hafif yukarı kalksın */
.game-card:hover {
    transform: translateY(-5px);
}

/* --- 2. RELEASED (YEŞİL): DIŞARI YAYILAN ENERJİ --- */

/* Animasyon: Yeşil halkanın dışarı doğru büyüyüp kaybolması */
@keyframes pulse-energy {
    0% {
        box-shadow: 0 0 0 0 rgba(163, 255, 0, 0.7); /* Başlangıçta parlak ve kartın dibinde */
    }
    70% {
        box-shadow: 0 0 0 12px rgba(163, 255, 0, 0); /* Dışarı 12px açıl ve şeffaflaş */
    }
    100% {
        box-shadow: 0 0 0 0 rgba(163, 255, 0, 0); /* Tamamen kaybol */
    }
}

.game-card.released {
    border: 2px solid #a3ff00 !important; /* Sabit Neon Yeşil Çerçeve */
    animation: pulse-energy 2s infinite; /* Animasyonu sürekli çalıştır */
}

/* --- 3. IN DEVELOPMENT (MAVİ) - Sönük --- */
.game-card.dev {
    border: 1px solid rgba(0, 243, 255, 0.3) !important;
    box-shadow: none;
}

/* --- 4. SECRET PROJECT (MOR) - Sönük --- */
.game-card.secret {
    border: 1px solid rgba(217, 0, 255, 0.3) !important;
    box-shadow: none;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Bayrak ile yazı arasına boşluk koyar */
    padding: 8px 15px;
}

.btn-flag {
    width: 20px; /* Bayrak genişliği */
    height: auto;
    vertical-align: middle; /* Metinle aynı hizada dursun */
    margin-right: 5px; /* Yazıyla arasına boşluk */
    border-radius: 2px; /* Köşeleri hafif yuvarla */
}

/* Butonu içeriği ortalamak için düzenle */
#language-btn, #lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
}

/* Footer Legal Linkleri Yeni Tasarım */
.legal-footer {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.legal-link {
    color: #b0b0b0; /* Varsayılan gri renk */
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid transparent;
}

.legal-link:hover {
    color: #a3ff00; /* Senin meşhur yeşilin */
    text-shadow: 0 0 8px rgba(163, 255, 0, 0.6);
    border: 1px solid rgba(163, 255, 0, 0.3);
    background: rgba(163, 255, 0, 0.05);
    transform: translateY(-2px);
}

.divider {
    color: #444;
    user-select: none;
}

#language-btn, #lang-btn {
    background: #1a1b23;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

#language-btn:hover {
    border-color: #00f3ff; /* Neon Mavi */
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    transform: scale(1.05);
}