@font-face {
    font-family: acedigate;
    src: url('../fonts/acedigate.ttf');
}
:root {
    --bg-void:      #050508;
    --bg-deep:      #0a0a0f;
    --bg-panel:     #0e0e16;
    --bg-card:      #12121c;
    --bg-hover:     #1a1a28;

    --border-dim:   rgba(255,255,255,0.06);
    --border-glow:  rgba(180,140,80,0.3);

    --gold:         #c9a84c;
    --gold-bright:  #e8c96a;
    --gold-dim:     #7a6030;
    --crimson:      #8b1a2a;
    --crimson-glow: rgba(139,26,42,0.4);
    --ash:          #9090a0;
    --mist:         #c0c0d0;
    --ghost:        #e8e8f0;

    --font-display: 'Cinzel', serif;
    --font-body:    'Cormorant Garamond', serif;
    --font-mono:    'Space Mono', monospace;

    --transition:   0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --glow-gold:    0 0 40px rgba(201,168,76,0.15), 0 0 80px rgba(201,168,76,0.05);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg-void);
    color: var(--mist);
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ─── ATMOSPHERE ─── */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.vignette {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 998;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.7) 100%);
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.08em; color: var(--ghost); }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
p  { color: var(--ash); font-weight: 300; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-bright); }

.label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dim);
}

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section--tight { padding: 4rem 0; }

/* ─── HEADER ─── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.2rem 2.5rem;
    transition: background var(--transition), border-color var(--transition);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(5,5,8,0.92);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--border-dim);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--ghost);
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-glow);
    filter: brightness(1.1) contrast(1.05);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    line-height: 1.3;
    color: var(--ghost);
}
.logo-text small {
    font-size: 0.6rem;
    color: var(--gold-dim);
    letter-spacing: 0.2em;
}

.main-nav { position: relative; }

.nav-list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ash);
    position: relative;
    padding-bottom: 2px;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--mist);
    transition: var(--transition);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 70% 50%, rgba(139,26,42,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 80% at 10% 80%, rgba(201,168,76,0.04) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-title { margin-bottom: 1.5rem; }
.hero-title .accent { color: var(--gold); }
.hero-title em { font-style: italic; color: var(--ash); font-size: 0.7em; display: block; margin-top: 0.3em; }

.hero-desc { font-size: 1.2rem; margin-bottom: 2.5rem; max-width: 520px; }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-void);
}
.btn-primary:hover {
    background: var(--gold-bright);
    color: var(--bg-void);
    box-shadow: 0 0 30px rgba(201,168,76,0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--mist);
    border: 1px solid var(--border-dim);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-wrap {
    position: relative;
    width: 280px;
    height: 280px;
}

.hero-logo-wrap::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

.hero-logo-wrap::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.2);
    animation: spin-slow 20s linear infinite;
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-glow);
    position: relative;
    z-index: 1;
    filter: brightness(1.1);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.hero-scroll span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gold-dim);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold-dim), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

/* ─── SECTION HEADERS ─── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .label { margin-bottom: 1rem; display: block; }
.section-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 1.5rem auto 0;
}

/* ─── CARDS ─── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}
.card:hover { border-color: rgba(201,168,76,0.2); background: var(--bg-hover); }
.card:hover::before { opacity: 1; }

/* ─── GAME CARDS ─── */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }

.game-card { padding: 0; }

.game-card-image {
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    background: var(--bg-panel);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-card-image .placeholder-art {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.game-card-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    padding: 0.25rem 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.badge-released { background: var(--gold); color: var(--bg-void); }
.badge-upcoming { background: rgba(139,26,42,0.8); color: var(--ghost); border: 1px solid var(--crimson); }
.badge-dev { background: rgba(30,30,50,0.9); color: var(--ash); border: 1px solid var(--border-dim); }

.game-card-body { padding: 1.5rem; }
.game-card-body h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.game-card-body p { font-size: 1rem; margin-bottom: 1rem; }

.game-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.game-tag {
    padding: 0.2rem 0.6rem;
    border: 1px solid var(--border-dim);
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    color: var(--ash);
}

/* ─── FEATURED GAME ─── */
.featured-game {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    margin-bottom: 2rem;
    overflow: hidden;
}

.featured-art {
    background: var(--bg-panel);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.featured-body { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.featured-body .label { margin-bottom: 1.5rem; }
.featured-body h2 { margin-bottom: 1rem; }
.featured-body p { margin-bottom: 1.5rem; }

/* ─── ABOUT / MANIFESTO ─── */
.manifesto {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.manifesto p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--mist);
    font-weight: 300;
    font-style: italic;
}
.manifesto-signature {
    margin-top: 2.5rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--gold-dim);
    letter-spacing: 0.2em;
}

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 4rem; }
.team-card { padding: 2rem; text-align: center; }
.team-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--bg-panel);
    margin: 0 auto 1rem;
    border: 1px solid var(--border-glow);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
}
.team-card h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.team-card .role { font-family: var(--font-mono); font-size: 0.6rem; color: var(--gold-dim); letter-spacing: 0.15em; }
.team-card p { margin-top: 0.8rem; font-size: 0.95rem; }

/* ─── VALUES ─── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-item { padding: 2.5rem 2rem; }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-item h3 { font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }

/* ─── PRESS ─── */
.press-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.press-card { padding: 2rem; }
.press-outlet { font-family: var(--font-mono); font-size: 0.65rem; color: var(--gold); letter-spacing: 0.15em; margin-bottom: 0.75rem; }
.press-quote { font-size: 1.15rem; font-style: italic; color: var(--mist); margin-bottom: 1rem; }
.press-game-ref { font-family: var(--font-mono); font-size: 0.6rem; color: var(--ash); }

.press-kit-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    text-align: center;
}
.press-kit-cta h2 { margin-bottom: 1rem; }
.press-kit-cta p { margin-bottom: 2rem; }

/* ─── CONTACT ─── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info p { margin-bottom: 2rem; }

.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-icon { font-size: 1.2rem; margin-top: 0.2rem; }
.contact-item .label { display: block; margin-bottom: 0.25rem; }
.contact-item a { color: var(--mist); }
.contact-item a:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.15em; color: var(--gold-dim); text-transform: uppercase; }

.form-input, .form-textarea, .form-select {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    color: var(--mist);
    padding: 0.9rem 1.2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
    outline: none;
    appearance: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--gold-dim);
    box-shadow: 0 0 0 1px rgba(201,168,76,0.1);
}

.form-textarea { resize: vertical; min-height: 140px; }

/* ─── PAGE HERO ─── */
.page-hero {
    padding: 10rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(139,26,42,0.06) 0%, transparent 70%);
}
.page-hero .label { margin-bottom: 1rem; display: block; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { max-width: 600px; margin: 0 auto; font-size: 1.2rem; }

/* ─── DECORATIVE ELEMENTS ─── */
.divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-dim), transparent);
    margin: 4rem 0;
}

.glow-text { color: var(--gold); text-shadow: 0 0 30px rgba(201,168,76,0.4); }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding: 4rem 0; border-top: 1px solid var(--border-dim); border-bottom: 1px solid var(--border-dim); }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 3rem; color: var(--gold); display: block; }
.stat-label { font-family: var(--font-mono); font-size: 0.6rem; color: var(--ash); letter-spacing: 0.15em; }

/* ─── ANIMATIONS ─── */
@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}
@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fade-up 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ─── FOOTER ─── */
.site-footer {
    border-top: 1px solid var(--border-dim);
    padding: 4rem 2.5rem 2rem;
    background: var(--bg-deep);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.footer-logo-img { width: 50px; height: 50px; border-radius: 50%; opacity: 0.6; object-fit: cover; }
.footer-tagline { font-style: italic; color: var(--ash); margin-bottom: 1.2rem; font-size: 1rem; }

.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-nav a { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ash); }
.footer-nav a:hover { color: var(--gold); }

.social-links { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; }
.social-link { color: var(--ash); font-size: 1.2rem; transition: color var(--transition); }
.social-link:hover { color: var(--gold); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-dim);
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--gold-dim);
    letter-spacing: 0.1em;
}

/* ─── SVG PLACEHOLDER ART ─── */
.art-rune {
    font-size: 5rem;
    opacity: 0.12;
    color: var(--gold);
    font-family: var(--font-display);
    user-select: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-eyebrow { justify-content: center; }
    .btn-group { justify-content: center; }
    .featured-game { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 2fr 2fr; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .social-links { flex-direction: row; justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 640px) {
    .nav-toggle { display: flex; }
    .nav-list {
        display: none;
        flex-direction: column;
        gap: 1.5rem;
        position: absolute;
        top: calc(100% + 1rem);
        right: 0;
        background: rgba(10,10,15,0.98);
        padding: 2rem;
        min-width: 200px;
        border: 1px solid var(--border-dim);
        backdrop-filter: blur(20px);
    }
    .nav-list.open { display: flex; }
    .values-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .section { padding: 4rem 0; }
    .press-kit-cta { padding: 2rem; }
}

/* ─── BLOG / POST ADDITIONS ─── */
.featured-post { transition: all var(--transition); }

article h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--ghost);
    letter-spacing: 0.06em;
}

/* ─── SCROLL TO TOP ─── */
.scroll-top {
    position: fixed;
    bottom: calc(2rem + 50px);
    right: calc(2rem - 100px);
    width: 44px;
    height: 44px;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--border-glow);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 90;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
    font-size: 1rem;
    text-decoration: none;
    border-radius: 0;
    font-family: var(--font-mono);
    font-size: 0.7rem;
}
.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}
.scroll-top:hover {
    background: rgba(201,168,76,0.2);
    color: var(--gold-bright);
}

/* ─── COOKIE BANNER ─── */

/* ─── PAGE TRANSITIONS ─── */
.page-transition-inner {
    animation: fade-up 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* ─── GAME DETAIL GRID ─── */
@media (max-width: 700px) {
    .featured-post { grid-template-columns: 1fr !important; }
}

/* ─── OYUN DETAY SAYFASI ─── */
@media (max-width: 900px) {
    .oyun-detay-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ─── GELİŞMİŞ HOVER EFEKTLERİ ─── */
.game-card {
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.15);
}

.btn-primary {
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}
.btn-primary:hover::after {
    transform: translateX(100%);
}

/* ─── GLITCH BAŞLIK EFEKTİ ─── */
.glitch {
    position: relative;
}
.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.glitch:hover::before {
    animation: glitch-1 0.4s step-end;
    color: var(--crimson);
    clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%);
    transform: translate(-2px, 0);
    opacity: 0.7;
}
.glitch:hover::after {
    animation: glitch-2 0.4s step-end;
    color: var(--gold);
    clip-path: polygon(0 60%, 100% 60%, 100% 75%, 0 75%);
    transform: translate(2px, 0);
    opacity: 0.7;
}
@keyframes glitch-1 {
    0%, 100% { opacity: 0; }
    20%, 40% { opacity: 0.7; transform: translate(-3px, 0); }
    60%, 80% { opacity: 0.4; transform: translate(2px, 0); }
}
@keyframes glitch-2 {
    0%, 100% { opacity: 0; }
    30%, 50% { opacity: 0.7; transform: translate(3px, 0); }
    70%, 90% { opacity: 0.4; transform: translate(-2px, 0); }
}

/* ─── TYPEWRITER EFEKTİ ─── */
.typewriter {
    overflow: hidden;
    border-right: 2px solid var(--gold);
    white-space: nowrap;
    animation: typing 2.5s steps(30, end) 0.5s both, blink-caret 0.75s step-end infinite 3s;
    max-width: fit-content;
}
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}
@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--gold); }
}

/* ─── PROGRESS BARS (istatistikler için) ─── */
.progress-bar {
    height: 2px;
    background: var(--border-dim);
    position: relative;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--gold-dim), var(--gold));
    transform-origin: left;
    animation: progress-grow 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes progress-grow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* ─── FLOATING LABEL INPUT ─── */
.form-group {
    position: relative;
}
.form-input:not(:placeholder-shown) + label,
.form-input:focus + label {
    color: var(--gold-dim);
}

/* ─── CURSOR GLOW EFEKTİ ─── */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 997;
    transition: opacity 0.3s ease;
}

/* ─── OYUN FİLTRELEME ─── */
.filter-bar {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
}
.filter-btn {
    padding: 0.4rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--border-dim);
    color: var(--ash);
    cursor: pointer;
    transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-void);
}

/* ─── OYUN DETAY RESPONSIVE ─── */
@media (max-width: 768px) {
    .oyun-detay-grid { grid-template-columns: 1fr !important; }
    .ozellik-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 480px) {
    .ozellik-grid { grid-template-columns: 1fr !important; }
}

/* ─── AKORDEON (SSS tarzı) ─── */
.accordion-item {
    border-bottom: 1px solid var(--border-dim);
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--mist);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: color var(--transition);
}
.accordion-header:hover { color: var(--gold); }
.accordion-icon {
    font-size: 1.2rem;
    color: var(--gold-dim);
    transition: transform var(--transition);
    flex-shrink: 0;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s ease;
}
.accordion-item.open .accordion-body { max-height: 400px; padding-bottom: 1.5rem; }
.accordion-body p { font-size: 1rem; }

/* ─── MARQUEE (kayan metin bandı) ─── */
.marquee-track {
    overflow: hidden;
    white-space: nowrap;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-dim);
    border-bottom: 1px solid var(--border-dim);
    background: var(--bg-panel);
}
.marquee-inner {
    display: inline-block;
    animation: marquee-scroll 25s linear infinite;
}
.marquee-inner span {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--gold-dim);
    text-transform: uppercase;
    margin: 0 3rem;
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ─── ARAMA İKONU ─── */
.nav-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--ash);
    border: 1px solid transparent;
    transition: all var(--transition);
    margin-right: 0.75rem;
    flex-shrink: 0;
}
.nav-search-btn:hover {
    color: var(--gold);
    border-color: var(--border-glow);
}

/* ─── PRINT STİLLERİ ─── */
@media print {
    .noise-overlay, .vignette, .site-header,
    .scroll-top, .cookie-banner, .cursor-glow,
    .btn, .hero-scroll, .marquee-track { display: none !important; }

    body { background: white; color: #111; font-size: 12pt; }
    h1, h2, h3 { color: #111; }
    .card { border: 1px solid #ccc; }
    .section { padding: 2rem 0; }
    a { color: #333; text-decoration: underline; }
    .container { max-width: 100%; }
}

/* ─── FORM GELİŞMELERİ ─── */
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(144,144,160,0.4); }

.form-select option {
    background: var(--bg-card);
    color: var(--mist);
}

/* ─── ARAMA SAYFASI ─── */
.search-result-card {
    transition: all var(--transition);
}
.search-result-card:hover {
    transform: translateX(6px);
    border-color: rgba(201,168,76,0.25);
}

/* ─── ONAY SAYFASI ANIMASYON ─── */
@keyframes confirm-pop {
    0%   { transform: scale(0.7); opacity: 0; }
    60%  { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}
.confirm-icon { animation: confirm-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both; }

/* ─── DAHA İYİ MOBİL NAVİGASYON ─── */
@media (max-width: 640px) {
    .nav-search-btn { display: flex; }

    .nav-list {
        width: 100vw;
        right: -2.5rem;
        border-left: none;
        border-right: none;
    }

    .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }
    .hero-desc { font-size: 1rem; }

    .stats-row { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

    .featured-game { grid-template-columns: 1fr; }
    .featured-art { min-height: 200px; }

    .page-hero { padding: 8rem 0 3rem; }
    .page-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }

    .contact-layout { grid-template-columns: 1fr; gap: 2rem; }

    .footer-inner { gap: 2rem; }
    .footer-nav { justify-content: center; }

    .btn { padding: 0.8rem 1.5rem; font-size: 0.65rem; }
}

/* ─── TABLET ─── */
@media (max-width: 768px) {
    .values-grid { grid-template-columns: 1fr 1fr; }
    .press-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }

    .games-grid { grid-template-columns: 1fr; }

    .featured-post { grid-template-columns: 1fr !important; }
}

/* ─── KOD BLOKLARI ─── */
code {
    font-family: var(--font-mono);
    font-size: 0.85em;
    background: var(--bg-panel);
    border: 1px solid var(--border-dim);
    padding: 0.1em 0.4em;
    color: var(--gold-dim);
}

/* ─── SEÇİLİ METİN ─── */
::selection {
    background: rgba(201,168,76,0.2);
    color: var(--ghost);
}

/* ─── FOCUS STİLLERİ (erişilebilirlik) ─── */
:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: 3px;
}

/* ─── SMOOTH GÖRÜNÜM GEÇİŞLERİ ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ─── KART MİKRO-İNTERAKSİYONLARI ─── */
.press-card { transition: transform var(--transition), border-color var(--transition); }
.press-card:hover { transform: translateY(-3px); }

.team-card { transition: transform var(--transition), border-color var(--transition); }
.team-card:hover { transform: translateY(-4px); }

.value-item { transition: transform var(--transition), border-color var(--transition); }
.value-item:hover { transform: translateY(-3px); }

/* ─── HABERLEŞİM BADGE'Leri ─── */
.nav-badge {
    display: inline-block;
    background: var(--crimson);
    color: var(--ghost);
    font-family: var(--font-mono);
    font-size: 0.5rem;
    padding: 0.1rem 0.3rem;
    letter-spacing: 0.05em;
    vertical-align: super;
    margin-left: 0.25rem;
    line-height: 1.4;
}

/* ─── HAREKETLİ HERO ARKAPLAN ─── */
.hero-bg {
    background:
        radial-gradient(ellipse 60% 60% at 70% 50%, rgba(139,26,42,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 80% at 10% 80%, rgba(201,168,76,0.04) 0%, transparent 60%),
        radial-gradient(ellipse 30% 30% at 90% 10%, rgba(60,60,100,0.06) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 100%);
    animation: hero-bg-breathe 8s ease-in-out infinite alternate;
}
@keyframes hero-bg-breathe {
    from { opacity: 0.8; }
    to   { opacity: 1; }
}

/* ─── FOOTER GELİŞMELERİ ─── */
.footer-center { text-align: center; }

.footer-nav a {
    position: relative;
    padding-bottom: 1px;
}
.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}
.footer-nav a:hover::after { width: 100%; }

/* ═══════════════════════════════════════════════════════════
   LUXACIRATE — OPTİMİZASYON EKLEMELERİ
   ═══════════════════════════════════════════════════════════ */

/* ─── FİLTRE BARI ─── */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
}
.filter-bar__label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dim);
    white-space: nowrap;
}
.filter-bar__btns {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.filter-btn {
    position: relative;
    padding: 0.45rem 1.1rem;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--border-dim);
    color: var(--ash);
    cursor: pointer;
    transition: color 0.25s, background 0.25s, border-color 0.25s, box-shadow 0.25s;
    user-select: none;
    outline: none;
}
.filter-btn:hover {
    border-color: rgba(201,168,76,0.4);
    color: var(--gold);
}
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-void);
    box-shadow: 0 0 16px rgba(201,168,76,0.25);
}
.filter-btn:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: 2px;
}

/* ─── OYUN ARTICLE KARTI ─── */
.game-article {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 320px;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.game-article[hidden] { display: none; }
.game-article.filtered-out {
    opacity: 0.18;
    transform: scale(0.98);
    pointer-events: none;
}

.game-article__art {
    background: var(--bg-panel);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.game-article__art-bg {
    position: absolute;
    inset: 0;
}
.game-article__rune {
    font-size: 6rem;
    opacity: 0.15;
    font-family: var(--font-display);
    position: relative;
    z-index: 1;
}
.game-article__year {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--ash);
}
.game-article__body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
}
.game-article__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.game-article__title {
    font-size: 2rem;
    margin: 0;
}
.game-article__desc {
    margin: 0;
}
.game-article__long {
    font-size: 0.95rem;
    color: var(--gold-dim);
    margin: 0;
}
.game-article__actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}
.game-article__platforms {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--ash);
}

@media (max-width: 768px) {
    .game-article { grid-template-columns: 1fr; }
    .game-article__art { min-height: 180px; }
}

/* ─── ACCORDION (YENİDEN YAZILDI) ─── */
.sss-kategori {
    margin-bottom: 3.5rem;
}
.sss-kategori__baslik {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-dim);
}
.sss-kategori__icon {
    font-size: 1.1rem;
    color: var(--gold);
    opacity: 0.7;
    flex-shrink: 0;
}
.sss-kategori__baslik h2 {
    font-size: 1.3rem;
    margin: 0;
}

.accordion-item {
    border-bottom: 1px solid var(--border-dim);
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.1rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--mist);
    text-align: left;
    transition: color 0.25s;
    outline: none;
}
.accordion-header:hover  { color: var(--gold); }
.accordion-header:focus-visible { outline: 1px solid var(--gold); outline-offset: 2px; }
.accordion-header[aria-expanded="true"] { color: var(--gold); }

/* ikon: CSS ile + → × */
.accordion-icon {
    position: relative;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}
.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--gold-dim);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 1px;
}
.accordion-icon::before { /* yatay çizgi */
    top: 50%; left: 0;
    width: 100%; height: 1px;
    transform: translateY(-50%);
}
.accordion-icon::after { /* dikey çizgi */
    top: 0; left: 50%;
    width: 1px; height: 100%;
    transform: translateX(-50%);
}
.accordion-header[aria-expanded="true"] .accordion-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}
.accordion-header[aria-expanded="true"] .accordion-icon::before,
.accordion-header[aria-expanded="true"] .accordion-icon::after {
    background: var(--gold);
}

.accordion-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-body[aria-hidden="false"],
.accordion-item.open .accordion-body {
    grid-template-rows: 1fr;
}
.accordion-body__inner {
    overflow: hidden;
}
.accordion-body__inner p {
    padding-bottom: 1.25rem;
    color: var(--ash);
    font-size: 1rem;
    line-height: 1.75;
}

/* SSS CTA */
.sss-cta {
    padding: 2.5rem;
    text-align: center;
    margin-top: 1rem;
}
.sss-cta__icon {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 1rem;
}
.sss-cta h2 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.sss-cta p  { margin-bottom: 1.5rem; }

/* ─── FORM GELİŞTİRMELERİ ─── */
.form-errors {
    background: rgba(139,26,42,0.15);
    border: 1px solid rgba(139,26,42,0.4);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}
.form-errors p {
    color: rgba(220,120,120,0.9);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}
.form-errors p:last-child { margin-bottom: 0; }

.req { color: var(--crimson); margin-left: 2px; }

/* Honeypot gizleme */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    tab-index: -1;
}

.char-counter {
    display: block;
    text-align: right;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    color: var(--ash);
    margin-top: 0.3rem;
}

/* ─── SOSYAL MEDYA LİNKLERİ ─── */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--ash);
    border: 1px solid var(--border-dim);
    transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.social-link:hover {
    color: var(--ghost);
    border-color: rgba(201,168,76,0.3);
    background: rgba(201,168,76,0.06);
}
.social-link--x:hover   { color: #fff; border-color: rgba(255,255,255,0.2); }
.social-link--ig:hover  { color: #e1306c; border-color: rgba(225,48,108,0.3); background: rgba(225,48,108,0.05); }

/* ─── E-POSTA KORUNAN ─── */
.email-protected span { color: var(--ash); font-size: 0.9rem; }
.email-protected:hover span { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   MOBİL OPTİMİZASYON — TAM REVİZYON
   ═══════════════════════════════════════════════════════════ */

/* ─── TEMEL MOBİL DÜZELTMELERİ ─── */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    /* iOS'ta yatay kaymayı engelle */
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Tüm inline style'lardaki sabit genişlikleri ezmek için */
img { max-width: 100%; height: auto; }

/* Dokunma hedef boyutu — tıklanabilir her öge minimum 44px */
.btn, .nav-link, .filter-btn, .social-link,
.accordion-header, .scroll-top, .footer-nav a,
.cookie-actions button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.nav-link { min-height: 40px; }

/* ─── COOKIE BANNER — FIXED, FULL-WIDTH ─── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    background: rgba(6, 6, 11, 0.98);
    border-top: 1px solid rgba(180, 140, 80, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.1rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: nowrap;
    z-index: 99999;
    transform: translateY(0);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.5);
}
.cookie-banner.show {
    transform: translateY(0);
}
.cookie-banner p {
    font-family: var(--font-mono);
    font-size: 0.63rem;
    letter-spacing: 0.09em;
    color: var(--ash);
    margin: 0;
    line-height: 1.7;
    flex: 1;
    min-width: 0;
}
.cookie-banner p strong,
.cookie-banner p b {
    color: var(--gold-dim);
    font-weight: 400;
}
.cookie-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}
.cookie-actions button {
    padding: 0.55rem 1.4rem;
    height: 36px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
    background: var(--gold);
    color: var(--bg-void);
    display: inline-flex;
    align-items: center;
}
.cookie-actions button:hover {
    background: var(--gold-bright);
    border-color: var(--gold-bright);
}
/* Mobil */
@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.25rem;
        gap: 0.85rem;
        flex-wrap: wrap;
    }
    .cookie-banner p {
        width: 100%;
    }
    .cookie-actions {
        width: 100%;
    }
    .cookie-actions button {
        flex: 1;
        justify-content: center;
    }
}

/* ─── HEADER MOBİL ─── */
@media (max-width: 640px) {
    .site-header {
        padding: 0.9rem 1.25rem;
    }

    .logo-text {
        font-size: 0.75rem;
    }

    .logo-img {
        width: 38px;
        height: 38px;
    }

    .nav-toggle {
        display: flex;
        padding: 10px; /* büyük dokunma alanı */
        margin-right: -10px;
    }

    .nav-list {
        position: fixed; /* absolute yerine fixed — sayfa kaymaz */
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        max-height: 100dvh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: rgba(5,5,8,0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding: 5rem 2rem 3rem;
        display: none;
        z-index: 99;
        border: none;
    }

    .nav-list.open {
        display: flex;
    }

    .nav-link {
        font-size: 1rem;
        letter-spacing: 0.15em;
        min-height: 52px;
    }
}

/* ─── CONTAINER MOBİL ─── */
@media (max-width: 640px) {
    .container {
        padding: 0 1.25rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section--tight {
        padding: 2.5rem 0;
    }
}

/* ─── HERO MOBİL ─── */
@media (max-width: 900px) {
    .hero {
        padding-top: 70px;
        min-height: 100svh; /* safe viewport height iOS için */
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 1.25rem 5rem;
        gap: 2rem;
    }

    .hero-visual { display: none; }

    .hero-eyebrow { justify-content: center; }
    .hero-eyebrow::before { display: none; }

    .hero-title {
        font-size: clamp(2rem, 9vw, 3.5rem);
        line-height: 1.15;
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn-group {
        justify-content: center;
        gap: 0.75rem;
    }

    .btn {
        padding: 0.85rem 1.75rem;
        font-size: 0.65rem;
    }

    .hero-scroll { display: none; } /* küçük ekranda kaldır */
}

/* ─── FEATURED GAME MOBİL ─── */
@media (max-width: 768px) {
    .featured-game {
        grid-template-columns: 1fr;
    }
    .featured-art {
        min-height: 160px;
    }
    .featured-body {
        padding: 1.75rem;
    }
}

/* ─── STATS ROW MOBİL ─── */
@media (max-width: 640px) {
    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 2.5rem 0;
    }
    .stat-item {
        padding: 1rem;
        border-bottom: 1px solid var(--border-dim);
    }
    .stat-item:nth-child(odd) {
        border-right: 1px solid var(--border-dim);
    }
    .stat-number {
        font-size: 2.25rem;
    }
}

/* ─── PAGE HERO MOBİL ─── */
@media (max-width: 640px) {
    .page-hero {
        padding: 7rem 0 2.5rem;
    }
    .page-hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
    }
    .page-hero p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
}

/* ─── STUDIO SAYFASI — KRİTİK ─── */

/* 1. Manifesto grid — mobilde dikey */
@media (max-width: 768px) {
    /* Inline style'daki grid'i ez */
    .studio-manifesto-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    /* Logo çember — taşmasın */
    .studio-logo-circle {
        width: 180px !important;
        height: 180px !important;
    }
    .studio-logo-circle img {
        width: 140px !important;
        height: 140px !important;
    }
}

/* 2. Values grid — mobilde tek sütun */
@media (max-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .value-item {
        padding: 1.5rem 1.25rem;
    }
}

/* 3. Team grid — mobilde tek sütun */
@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .team-card {
        padding: 1.5rem;
    }
}

/* 4. Kronoloji (timeline) — taşmasın */
@media (max-width: 640px) {
    /* Inline grid'i ez */
    .studio-timeline-row {
        grid-template-columns: 60px 1fr !important;
        gap: 1rem !important;
    }
}

/* ─── FOOTER MOBİL ─── */
@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 1.25rem 1.5rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-logo { display: flex; justify-content: center; }

    .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .footer-nav {
        justify-content: center;
        gap: 1rem 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        font-size: 0.58rem;
    }

    .footer-bottom div {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ─── CONTACT MOBİL ─── */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ─── FORM MOBİL ─── */
@media (max-width: 640px) {
    .form-input,
    .form-textarea,
    .form-select {
        font-size: 16px; /* iOS zoom'u önler */
        padding: 0.85rem 1rem;
    }

    .form-textarea {
        min-height: 120px;
    }
}

/* ─── CARD / GAME-ARTICLE MOBİL ─── */
@media (max-width: 768px) {
    .game-article {
        grid-template-columns: 1fr;
    }
    .game-article__art {
        min-height: 140px;
    }
    .game-article__body {
        padding: 1.5rem 1.25rem;
    }
    .game-article__title {
        font-size: 1.5rem;
    }
    .game-article__actions {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}

/* ─── SSS MOBİL ─── */
@media (max-width: 640px) {
    .accordion-header {
        font-size: 0.95rem;
        padding: 1rem 0;
    }
    .sss-cta {
        padding: 1.75rem 1.25rem;
    }
}

/* ─── PRESS KIT CTA MOBİL ─── */
@media (max-width: 640px) {
    .press-kit-cta {
        padding: 1.75rem 1.25rem;
        margin-top: 2rem;
    }
}

/* ─── MARQUEE — sabit genişlik ─── */
.marquee-track {
    width: 100%;
    overflow: hidden;
}

/* ─── INLINE STYLE OVERRIDE'LAR — studio.php ─── */
/* Inline style="display:grid; grid-template-columns: 1fr 1fr" olan
   studio manifesto bölümü için genel override */
@media (max-width: 768px) {
    /* İlk 2 sütunlu grid bölümü (manifesto) */
    section > .container > div[style*="grid-template-columns: 1fr 1fr"],
    section > .container > div[style*="grid-template-columns:1fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    /* 260px sabit genişlikli logo çember */
    div[style*="width: 260px"],
    div[style*="width:260px"] {
        width: 180px !important;
        height: 180px !important;
    }

    div[style*="width:200px"][style*="border-radius:50%"],
    div[style*="width: 200px"][style*="border-radius: 50%"] {
        width: 140px !important;
        height: 140px !important;
    }

    /* Kronoloji: 80px sabit sütun */
    div[style*="grid-template-columns: 80px"] {
        grid-template-columns: 55px 1fr !important;
        gap: 1rem !important;
    }
}

/* ─── KÜÇÜK EKRAN GENEL ─── */
@media (max-width: 380px) {
    .btn {
        padding: 0.8rem 1.25rem;
        font-size: 0.6rem;
        width: 100%;
        justify-content: center;
    }

    .btn-group {
        flex-direction: column;
        gap: 0.6rem;
    }

    h1 { font-size: clamp(1.7rem, 8vw, 2.5rem); }
    h2 { font-size: clamp(1.4rem, 6vw, 2rem); }
}

/* ─── iOS SAFE AREA ─── */
@supports (padding: max(0px)) {
    .site-header {
        padding-left: max(2.5rem, env(safe-area-inset-left));
        padding-right: max(2.5rem, env(safe-area-inset-right));
    }

    .cookie-banner {
        padding-bottom: max(1.25rem, env(safe-area-inset-bottom)) !important;
    }

    .site-footer {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}
