:root {
    --bg-dark: #070710;
    --card-bg: rgba(18, 16, 32, 0.75);
    --cyan: #00f0ff;
    --purple: #d000ff;
    --gold: #ffd700;
    --text-color: #f0f4f8;
    --text-muted: #8c9ba5;
    --font-main: 'Outfit', sans-serif;
    --font-title: 'Space Grotesk', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 🌌 Arka Plan Glow Efekti */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 20%, rgba(0, 240, 255, 0.12), transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(208, 0, 255, 0.08), transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* 🚀 NAVBAR STİLLERİ */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(7, 7, 16, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 100;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.5rem;
}

.brand-logo {
    text-decoration: none;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 8px var(--cyan));
}

.brand-highlight {
    color: var(--cyan);
    text-shadow: 0 0 12px var(--cyan);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--cyan);
}

.btn-nav {
    background: rgba(0, 240, 255, 0.15);
    border: 1px solid var(--cyan);
    color: var(--cyan) !important;
    padding: 0.45rem 1.1rem;
    border-radius: 20px;
    transition: all 0.2s ease !important;
}

.btn-nav:hover {
    background: var(--cyan);
    color: #000 !important;
    box-shadow: 0 0 15px var(--cyan);
}

/* 🎯 HERO SECTION */
.hero {
    padding: 6rem 1.5rem 4rem 1.5rem;
    text-align: center;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.badge-tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: var(--gold);
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
}

.hero h1 {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* BUTONLAR */
.btn {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 800;
    padding: 0.85rem 1.8rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: #000;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--cyan);
}

/* 🎮 OYUNLAR BÖLÜMÜ */
.games-section {
    padding: 4rem 1.5rem;
}

.section-container {
    max-width: 1050px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 900;
    color: var(--cyan);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
}

.game-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.15);
    backdrop-filter: blur(10px);
}

.game-media {
    position: relative;
    overflow: hidden;
}

.game-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-details {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.tag-cyan {
    background: rgba(0, 240, 255, 0.15);
    color: var(--cyan);
}

.tag-gold {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
}

.game-details h3 {
    font-family: var(--font-title);
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
}

.game-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.4rem;
}

.game-features {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.8rem;
}

.feature-item {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-color);
}

.game-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.btn-game {
    width: 100%;
    text-align: center;
}

.btn-store {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 0.65rem;
    width: 100%;
    cursor: default;
}

/* 🏢 HAKKIMIZDA BÖLÜMÜ */
.about-section {
    padding: 3rem 1.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.8rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.about-card:hover {
    transform: translateY(-3px);
    border-color: var(--cyan);
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.about-card h4 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 📜 GİZLİLİK POLİTİKASI */
.privacy-section {
    padding: 4rem 1.5rem;
}

.privacy-box {
    background: rgba(12, 10, 22, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.2rem;
}

.privacy-box h3 {
    font-family: var(--font-title);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.privacy-box h4 {
    font-family: var(--font-title);
    color: var(--cyan);
    margin-top: 1.2rem;
    margin-bottom: 0.4rem;
}

.privacy-box p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 0.8rem;
}

.privacy-box a {
    color: var(--cyan);
}

.privacy-kicker {
    color: var(--cyan) !important;
    font-family: var(--font-title);
    font-size: 0.72rem !important;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.privacy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.4rem 0 1rem;
}

.privacy-actions .btn {
    font-size: 0.78rem;
    padding: 0.72rem 1.1rem;
}

.privacy-contact {
    margin-bottom: 0 !important;
}

/* SAVE SAVETHRON · BAĞIMSIZ GİZLİLİK VE HESAP SİLME SAYFASI */
.privacy-page {
    background:
        radial-gradient(circle at 78% 6%, rgba(208, 0, 255, 0.13), transparent 30rem),
        radial-gradient(circle at 10% 28%, rgba(0, 240, 255, 0.09), transparent 32rem),
        var(--bg-dark);
}

.policy-main {
    min-height: 70vh;
}

.policy-hero {
    padding: clamp(4.5rem, 10vw, 8rem) 1.5rem 4rem;
}

.policy-eyebrow {
    color: #58ffc0;
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.policy-eyebrow span {
    display: inline-block;
    width: 28px;
    height: 1px;
    margin-right: 9px;
    vertical-align: middle;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
}

.policy-hero h1 {
    max-width: 950px;
    margin: 1rem 0 1.5rem;
    font-family: var(--font-title);
    font-size: clamp(2.6rem, 7.4vw, 5.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.045em;
}

.policy-hero h1 span,
.deletion-panel h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(115, 221, 255, 0.7);
}

.policy-intro {
    max-width: 760px;
    color: #cad5e5;
    font-size: 1.05rem;
}

.policy-en {
    color: #8192ab !important;
}

.policy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.2rem;
    margin-top: 1.8rem;
    font-family: var(--font-title);
    font-size: 0.73rem;
    letter-spacing: 0.08em;
}

.policy-meta strong { color: var(--text-muted); }
.policy-meta span { color: var(--cyan); }

.policy-status {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.4rem;
    margin-top: 2.2rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(0, 240, 255, 0.22);
    border-radius: 10px;
    background: rgba(8, 14, 30, 0.72);
    color: #8798b2;
    font-family: var(--font-title);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.policy-status span:first-child { color: #58ffc0; }
.policy-status i {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 5px;
    border-radius: 50%;
    background: #58ffc0;
    box-shadow: 0 0 9px #58ffc0;
}

.policy-content {
    padding: 1rem 1.5rem 0;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.policy-card {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 0.8rem;
    padding: 1.7rem;
    border: 1px solid rgba(0, 240, 255, 0.18);
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(15, 22, 46, 0.88), rgba(8, 9, 24, 0.9));
    scroll-margin-top: 100px;
}

.policy-card-tall { grid-row: span 2; }
.policy-number { padding-top: 0.35rem; color: rgba(0, 240, 255, 0.45); font-family: var(--font-title); font-size: 0.72rem; font-weight: 800; }
.policy-card h2 { margin-bottom: 0.75rem; font-family: var(--font-title); font-size: 1.05rem; }
.policy-card p,
.policy-card li { color: var(--text-muted); font-size: 0.88rem; }
.policy-card ul { padding-left: 1.15rem; }
.policy-card li { margin-bottom: 0.72rem; }
.policy-card a { color: var(--cyan); overflow-wrap: anywhere; }
.policy-assurance { margin-top: 1rem; padding-left: 0.85rem; border-left: 2px solid #58ffc0; color: #c5f5e4 !important; }

.deletion-section {
    padding: 1rem 1.5rem 0;
}

.deletion-panel {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: clamp(2rem, 5vw, 3.5rem);
    border: 1px solid rgba(208, 0, 255, 0.42);
    border-radius: 18px;
    background:
        radial-gradient(circle at 86% 16%, rgba(0, 240, 255, 0.1), transparent 15rem),
        linear-gradient(135deg, rgba(28, 15, 58, 0.96), rgba(7, 13, 31, 0.96));
    scroll-margin-top: 90px;
}

.deletion-symbol {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    border: 1px solid var(--purple);
    border-radius: 18px;
    color: var(--cyan);
    font-size: 2.5rem;
    box-shadow: inset 0 0 22px rgba(208, 0, 255, 0.16), 0 0 18px rgba(0, 240, 255, 0.1);
}

.deletion-panel h2 {
    margin: 1rem 0 1.4rem;
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    line-height: 1.05;
}

.deletion-panel p {
    max-width: 820px;
    margin-bottom: 0.85rem;
    color: #bdc9dc;
    font-size: 0.92rem;
}

.deletion-cta {
    margin-top: 0.8rem;
    font-size: 0.78rem;
}

.policy-tail {
    padding-bottom: 4rem;
}

.policy-contact-card strong { color: #fff; }

.footer-copy a {
    color: var(--cyan);
    text-decoration: none;
}

/* 🔻 FOOTER */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem 1.5rem;
    text-align: center;
    background: #040409;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 0.4rem;
    margin-bottom: 1.2rem;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
}

/* 📱 MOBİL UYUM */
@media (max-width: 800px) {
    .hero h1 {
        font-size: 2rem;
    }
    .game-card {
        grid-template-columns: 1fr;
    }
    .game-banner {
        height: 220px;
    }
    .nav-links {
        display: none; /* Mobil navigasyon basitleştirme */
    }
    .policy-hero {
        padding-top: 4.5rem;
    }
    .policy-grid {
        grid-template-columns: 1fr;
    }
    .policy-card-tall {
        grid-row: auto;
    }
    .policy-card {
        grid-template-columns: 30px 1fr;
        padding: 1.25rem 1rem;
    }
    .deletion-panel {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 1.15rem;
    }
    .deletion-symbol {
        width: 58px;
        height: 58px;
    }
    .policy-status span {
        flex: 1 1 135px;
    }
}
