/* Yutvari — Mediterranean gaming magazine. Στιλ: πέτρινο φόντο, βαθύ μπλε, μεσογειακή τερακότα/τιρκουάζ, τόξα. */

@media (prefers-color-scheme: dark) {
  :root { color-scheme: light; }
}

:root {
  /* --- Χρώματα --- */
  --bg: #f5efe2;
  --bg-deep: #ece1c9;
  --surface: #fffcf4;
  --surface-line: #e3d8bd;
  --ink: #202a3a;
  --ink-soft: #5a6478;
  --ink-faint: #8b93a3;
  --navy: #173352;
  --navy-dark: #0e2036;
  --turquoise: #3d8b87;
  --turquoise-soft: #dcece9;
  --terracotta: #c1502e;
  --terracotta-soft: #f3ded1;
  --gold: #c99a44;
  --line: #d9cdae;

  /* --- Τυπογραφία --- */
  --font-display: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, 'Noto Serif', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* --- Κλίμακα --- */
  --fs-hero: clamp(2.5rem, 1.6rem + 4vw, 4.4rem);
  --fs-h1: clamp(2rem, 1.4rem + 2.4vw, 3rem);
  --fs-h2: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  --fs-h3: 1.28rem;
  --fs-lead: 1.2rem;
  --fs-body: 1.05rem;
  --fs-small: .9rem;
  --fs-tiny: .78rem;

  --radius-lg: 30px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-card: 0 22px 44px -30px rgba(14, 32, 54, .45);
  --shadow-lift: 0 30px 60px -28px rgba(14, 32, 54, .5);
  --wrap: 1240px;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.14; margin: 0 0 .5em; color: var(--navy-dark); }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
svg { display: block; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: 12px; top: -60px;
  background: var(--navy); color: #fff; padding: .7em 1.2em; border-radius: var(--radius-sm);
  z-index: 1000; transition: top .2s var(--ease);
}
.skip:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(18px, 4vw, 48px); }
.wrap--mid { max-width: 820px; }
.wrap--wide { max-width: 1380px; }

.ic { flex-shrink: 0; }

/* ============ ΚΟΥΜΠΙΑ / CTA ============ */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .85em 1.6em; border-radius: 999px;
  background: var(--navy); color: #fff;
  font-weight: 600; font-size: var(--fs-small);
  text-decoration: none; transition: transform .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease);
  box-shadow: 0 14px 26px -16px rgba(14, 32, 54, .55);
}
.btn:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn--terracotta { background: var(--terracotta); box-shadow: 0 14px 26px -16px rgba(193, 80, 46, .55); }
.btn--terracotta:hover { background: #a4431f; }
.btn--ghost { background: transparent; color: var(--navy); box-shadow: none; border: 1.5px solid var(--line); }
.btn--ghost:hover { background: var(--surface); border-color: var(--navy); transform: none; }
.btn--lg { padding: 1em 2em; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: var(--fs-tiny); font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
  color: var(--terracotta);
}
.eyebrow--turquoise { color: var(--turquoise); }
.eyebrow--navy { color: var(--navy); }
.eyebrow::before { content: ''; width: 20px; height: 2px; background: currentColor; border-radius: 2px; }

.more {
  display: inline-flex; align-items: center; gap: .4em;
  font-weight: 600; color: var(--navy); text-decoration: none; font-size: var(--fs-small);
  border-bottom: 1.5px solid transparent; transition: border-color .2s var(--ease), gap .2s var(--ease);
}
.more:hover { border-color: currentColor; gap: .6em; }

/* ============ ΚΕΦΑΛΙΔΑ ============ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(245, 239, 226, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--surface-line);
}
.site-header__row { display: flex; align-items: center; gap: clamp(16px, 3vw, 36px); height: 78px; }

.brand { display: flex; align-items: center; gap: .6em; text-decoration: none; flex-shrink: 0; }
.brand__mark { flex-shrink: 0; }
.brand__word { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--navy-dark); letter-spacing: .01em; }

.primary-nav { display: flex; align-items: center; gap: clamp(6px, 1.4vw, 22px); flex: 1; }
.primary-nav__link {
  position: relative; text-decoration: none; font-weight: 600; font-size: .96rem; color: var(--ink-soft);
  padding: .5em .2em; transition: color .2s var(--ease);
}
.primary-nav__link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--terracotta); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.primary-nav__link:hover, .primary-nav__link[aria-current='page'] { color: var(--navy-dark); }
.primary-nav__link:hover::after, .primary-nav__link[aria-current='page']::after { transform: scaleX(1); }

.magazine-menu { position: relative; }
.magazine-menu__toggle {
  display: flex; align-items: center; gap: .35em; font-weight: 600; font-size: .96rem; color: var(--ink-soft);
  padding: .5em .2em; transition: color .2s var(--ease);
}
.magazine-menu__toggle:hover, .magazine-menu[data-open='true'] .magazine-menu__toggle, .magazine-menu__toggle.is-active { color: var(--navy-dark); }
.magazine-menu__toggle svg { transition: transform .2s var(--ease); }
.magazine-menu[data-open='true'] .magazine-menu__toggle svg { transform: rotate(180deg); }
.magazine-menu__panel {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  background: var(--surface); border: 1px solid var(--surface-line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift); padding: 10px; min-width: 240px;
  display: grid; gap: 2px;
  opacity: 0; visibility: hidden; translate: 0 -6px;
  transition: opacity .18s var(--ease), translate .18s var(--ease), visibility .18s;
}
.magazine-menu[data-open='true'] .magazine-menu__panel { opacity: 1; visibility: visible; translate: 0 0; }
.magazine-menu__panel a {
  display: flex; align-items: center; justify-content: space-between; text-decoration: none;
  padding: .7em .9em; border-radius: var(--radius-sm); font-weight: 600; font-size: .93rem; color: var(--ink);
  transition: background .16s var(--ease);
}
.magazine-menu__panel a:hover, .magazine-menu__panel a[aria-current='page'] { background: var(--turquoise-soft); color: var(--navy-dark); }

.header__tools { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.burger { display: none; padding: 8px; border-radius: 10px; }
.burger:hover { background: var(--surface); }
.burger__close { display: none; }
.site-header[data-nav-open='true'] .burger__open { display: none; }
.site-header[data-nav-open='true'] .burger__close { display: block; }

/* ============ ΜΕΝΟΥ ΚΙΝΗΤΟΥ ============ */
@media (max-width: 960px) {
  .primary-nav, .magazine-menu { display: none; }
  .burger { display: block; }

  .mobile-nav {
    position: fixed; inset: 78px 0 0 0; z-index: 55;
    background: var(--bg); overflow-y: auto;
    padding: 20px clamp(18px, 5vw, 40px) 60px;
    display: none;
  }
  .site-header[data-nav-open='true'] .mobile-nav { display: block; }
  .mobile-nav__link {
    display: flex; justify-content: space-between; align-items: center;
    text-decoration: none; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
    color: var(--navy-dark); padding: .55em 0; border-bottom: 1px solid var(--surface-line);
  }
  .mobile-nav__group { margin-top: 22px; }
  .mobile-nav__label { font-size: var(--fs-tiny); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 6px; }
}
@media (min-width: 961px) { .mobile-nav { display: none !important; } }

/* ============ HERO ============ */
.hero-feature { position: relative; padding: clamp(30px, 5vw, 56px) 0 clamp(50px, 6vw, 80px); overflow: hidden; }
.hero-feature__bg {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 60% 50% at 82% 8%, var(--turquoise-soft), transparent 60%),
              radial-gradient(ellipse 50% 40% at 5% 90%, var(--terracotta-soft), transparent 60%);
}
.hero-feature__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.hero-feature__eyebrow { margin-bottom: 18px; }
.hero-feature__title { font-size: var(--fs-hero); letter-spacing: -.01em; }
.hero-feature__title em { color: var(--terracotta); font-style: normal; }
.hero-feature__dek { font-size: var(--fs-lead); color: var(--ink-soft); max-width: 46ch; margin-bottom: 1.6em; }
.hero-feature__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-feature__meta { display: flex; gap: 22px; margin-top: 30px; flex-wrap: wrap; }
.hero-feature__meta-item { display: flex; align-items: center; gap: .5em; font-size: var(--fs-small); color: var(--ink-soft); font-weight: 600; }
.hero-feature__meta-item svg { color: var(--terracotta); }

.hero-feature__art { position: relative; }
.hero-feature__frame {
  aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: 50% 50% 16px 16px / 38% 38% 16px 16px;
  box-shadow: var(--shadow-lift);
  position: relative;
}
.hero-feature__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-feature__badge {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--surface); border-radius: var(--radius-md); padding: 14px 20px;
  box-shadow: var(--shadow-card); display: flex; align-items: center; gap: 10px;
}
.hero-feature__badge strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy-dark); }
.hero-feature__badge span { display: block; font-size: var(--fs-tiny); color: var(--ink-soft); }

@media (max-width: 900px) {
  .hero-feature__grid { grid-template-columns: 1fr; }
  .hero-feature__art { max-width: 340px; margin: 0 auto; }
}

/* ============ ΤΜΗΜΑ / ΕΠΙΚΕΦΑΛΙΔΕΣ ΤΜΗΜΑΤΩΝ ============ */
.section { padding: clamp(48px, 6vw, 84px) 0; }
.section--alt { background: var(--bg-deep); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.section-head__title { font-size: var(--fs-h2); margin: .3em 0 0; }
.section-head__lede { color: var(--ink-soft); max-width: 60ch; margin: .5em 0 0; }

/* ============ ΣΥΛΛΟΓΗ / COLLECTION STRIP ============ */
.collection-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.collection-strip__item {
  text-decoration: none; padding: 26px; border-radius: var(--radius-md);
  background: var(--surface); border: 1px solid var(--surface-line);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.collection-strip__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }
.collection-strip__icon {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--turquoise-soft); color: var(--turquoise);
}
.collection-strip__item:nth-child(2) .collection-strip__icon { background: var(--terracotta-soft); color: var(--terracotta); }
.collection-strip__item:nth-child(3) .collection-strip__icon { background: #e5e0f2; color: #5a4a9e; }
.collection-strip__title { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy-dark); }
.collection-strip__text { color: var(--ink-soft); font-size: var(--fs-small); margin: 0; }
.collection-strip__go { margin-top: auto; display: flex; align-items: center; gap: .4em; font-weight: 700; font-size: var(--fs-small); color: var(--navy); }

@media (max-width: 780px) { .collection-strip { grid-template-columns: 1fr; } }

/* ============ ΚΑΡΤΕΣ ΠΑΙΧΝΙΔΙΩΝ ============ */
.game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); }
.game-card { text-decoration: none; display: block; group: card; }
.game-card__frame {
  aspect-ratio: 4 / 5; overflow: hidden; border-radius: 50% 50% 14px 14px / 34% 34% 14px 14px;
  box-shadow: var(--shadow-card); position: relative; margin-bottom: 18px;
  transition: box-shadow .25s var(--ease);
}
.game-card__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.game-card:hover .game-card__frame img { transform: scale(1.06); }
.game-card:hover .game-card__frame { box-shadow: var(--shadow-lift); }
.game-card__genre { font-size: var(--fs-tiny); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--turquoise); }
.game-card__title { font-family: var(--font-display); font-size: 1.35rem; margin: .28em 0 .3em; color: var(--navy-dark); }
.game-card__tagline { color: var(--ink-soft); font-size: var(--fs-small); margin: 0; }

@media (max-width: 900px) { .game-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .game-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; } }

/* ============ GENRE DIAL ============ */
.genre-dial { display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 34px); justify-content: center; }
.genre-dial__item { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 12px; width: 148px; text-align: center; }
.genre-dial__circle {
  width: 108px; height: 108px; border-radius: 50%; display: grid; place-items: center;
  background: var(--navy); color: #f5efe2; font-family: var(--font-display); font-size: 1.7rem;
  box-shadow: var(--shadow-card); transition: transform .25s var(--ease), background .25s var(--ease);
  border: 3px solid var(--surface);
}
.genre-dial__item:nth-child(2n) .genre-dial__circle { background: var(--terracotta); }
.genre-dial__item:nth-child(3n) .genre-dial__circle { background: var(--turquoise); }
.genre-dial__item:hover .genre-dial__circle { transform: translateY(-6px) scale(1.04); }
.genre-dial__name { font-weight: 700; color: var(--navy-dark); font-size: .95rem; }
.genre-dial__count { color: var(--ink-faint); font-size: var(--fs-tiny); }

/* ============ ΚΑΡΤΕΣ ΙΣΤΟΡΙΩΝ ============ */
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 30px); }
.story-grid--2 { grid-template-columns: repeat(2, 1fr); }
.story-card { display: flex; flex-direction: column; }
.story-card__media {
  aspect-ratio: 16 / 10; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 16px;
  position: relative;
}
.story-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.story-card:hover .story-card__media img { transform: scale(1.05); }
.story-card__media--nea { background: linear-gradient(150deg, #1d4068, var(--navy-dark) 78%); }
.story-card__media--kritiki { background: linear-gradient(150deg, #cb5b33, #7c2f18 78%); }
.story-card__media--odigos { background: linear-gradient(150deg, #43968f, #123f42 78%); }
.story-card__media--arthro { background: linear-gradient(150deg, #3a5e7a, #14263a 78%); }
.story-card__media--koultoura { background: linear-gradient(150deg, #c99a44, #7a5420 78%); }

/* Γεννημένο μοτίβο ανά ενότητα — μπαίνει κάτω από τα σημάδια της κάρτας. */
.story-art {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block;
  color: #f6efe1; transition: transform .5s var(--ease);
}
.story-card__media--koultoura .story-art { color: #fff8e8; }
.story-card:hover .story-art { transform: scale(1.05); }
.story-card__type {
  position: absolute; top: 12px; left: 12px; background: rgba(255, 255, 255, .92); color: var(--navy-dark);
  font-size: var(--fs-tiny); font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: .35em .8em; border-radius: 999px;
}
.story-card__score {
  position: absolute; bottom: 12px; right: 12px; background: rgba(20, 20, 20, .82); color: #fff;
  font-weight: 700; font-size: .85rem; padding: .3em .7em; border-radius: 999px; display: flex; align-items: center; gap: .3em;
}
.story-card__score svg { width: 13px; height: 13px; color: var(--gold); }
.story-card__title { font-family: var(--font-display); font-size: 1.18rem; margin: 0 0 .3em; }
.story-card__title a { text-decoration: none; color: var(--navy-dark); }
.story-card__title a:hover { color: var(--terracotta); }
.story-card__dek { color: var(--ink-soft); font-size: var(--fs-small); margin: 0 0 .6em; }
.story-card__meta { font-size: var(--fs-tiny); color: var(--ink-faint); margin-top: auto; display: flex; gap: 10px; }

@media (max-width: 900px) { .story-grid, .story-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .story-grid, .story-grid--2 { grid-template-columns: 1fr; } }

/* Πρωτοσέλιδο ενότητας: το πιο πρόσφατο κείμενο, σε πλάτος. */
.section-lead {
  display: grid; grid-template-columns: 1.04fr 1fr; align-items: center;
  gap: clamp(22px, 3vw, 46px); margin: 26px 0 40px;
  background: var(--surface); border: 1px solid var(--surface-line);
  border-radius: var(--radius-lg); padding: clamp(16px, 1.8vw, 24px);
}
.section-lead__art .story-card__media { margin: 0; aspect-ratio: 5 / 4; }
.section-lead__text { padding-right: clamp(0px, 1.6vw, 22px); }
.section-lead__title { font-family: var(--font-display); font-size: clamp(1.45rem, 1.05rem + 1.5vw, 2.1rem); margin: .3em 0 .35em; line-height: 1.22; }
.section-lead__title a { text-decoration: none; color: var(--navy-dark); }
.section-lead__title a:hover { color: var(--terracotta); }
.section-lead__dek { color: var(--ink-soft); margin: 0 0 1em; }
.section-lead .story-card__meta { margin-bottom: 1.2em; }

@media (max-width: 820px) {
  .section-lead { grid-template-columns: 1fr; }
  .section-lead__art .story-card__media { aspect-ratio: 16 / 10; }
  .section-lead__text { padding-right: 0; }
}

/* ============ ΚΡΙΤΙΚΕΣ ============ */
.review-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--surface); border-radius: var(--radius-md); padding: 26px;
  border: 1px solid var(--surface-line); text-decoration: none; display: block;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.review-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.review-card__score-badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: #fff; flex-shrink: 0;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
}
.review-card__game { font-size: var(--fs-tiny); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--turquoise); }
.review-card__title { font-family: var(--font-display); font-size: 1.25rem; margin: .25em 0 .5em; color: var(--navy-dark); }
.review-card__verdict { color: var(--ink-soft); font-size: var(--fs-small); margin: 0; }

@media (max-width: 900px) { .review-strip { grid-template-columns: 1fr; } }

/* ============ ΟΔΗΓΟΙ (λίστα σπιτιού) ============ */
.guide-list { display: flex; flex-direction: column; border-top: 1px solid var(--surface-line); }
.guide-row {
  display: grid; grid-template-columns: 90px 1fr auto; gap: 22px; align-items: center;
  padding: 22px 4px; border-bottom: 1px solid var(--surface-line); text-decoration: none;
  transition: background .2s var(--ease);
}
.guide-row:hover { background: var(--surface); }
.guide-row__num { font-family: var(--font-display); font-size: 2.1rem; color: var(--line); font-weight: 700; }
.guide-row__title { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy-dark); margin: 0 0 .3em; }
.guide-row__dek { color: var(--ink-soft); font-size: var(--fs-small); margin: 0; }
.guide-row__arrow { color: var(--terracotta); transition: transform .2s var(--ease); }
.guide-row:hover .guide-row__arrow { transform: translateX(4px); }

@media (max-width: 620px) {
  .guide-row { grid-template-columns: 46px 1fr; }
  .guide-row__arrow { display: none; }
}

/* ============ GAMING ΚΟΥΛΤΟΥΡΑ / EDITORIAL BAND ============ */
.culture-band { background: var(--navy); color: #f2ede0; border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 60px); position: relative; overflow: hidden; }
.culture-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 88% 10%, rgba(255, 255, 255, .09), transparent 55%);
}
.culture-band__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 4vw, 60px); position: relative; }
.culture-band__eyebrow { color: var(--gold); }
.culture-band__eyebrow::before { background: var(--gold); }
.culture-band__title { color: #fff; font-size: var(--fs-h1); margin: .3em 0 .5em; }
.culture-band__text { color: rgba(242, 237, 224, .82); font-size: var(--fs-lead); max-width: 42ch; }
.culture-band__cta { margin-top: 1.6em; }
.culture-band__list { display: flex; flex-direction: column; gap: 18px; }
.culture-band__list-item {
  display: block; text-decoration: none; padding: 18px 22px; border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.culture-band__list-item:hover { background: rgba(255, 255, 255, .12); transform: translateX(4px); }
.culture-band__list-item h3 { font-family: var(--font-display); color: #fff; font-size: 1.1rem; margin: 0 0 .3em; }
.culture-band__list-item p { color: rgba(242, 237, 224, .72); font-size: var(--fs-small); margin: 0; }

@media (max-width: 900px) { .culture-band__grid { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--surface-line); border-radius: var(--radius-md); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 26px; font-family: var(--font-display); font-size: 1.08rem;
  color: var(--navy-dark); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ic { color: var(--terracotta); transition: transform .25s var(--ease); flex-shrink: 0; }
.faq-item[open] summary .ic { transform: rotate(180deg); }
.faq-item__body { padding: 0 26px 22px; color: var(--ink-soft); }
.faq-item__body p { margin: 0; }

/* ============ ΠΕΡΙΕΧΟΜΕΝΟ / ΣΕΛΙΔΕΣ ΚΕΙΜΕΝΟΥ ============ */
.crumbs { margin: 22px 0; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; font-size: var(--fs-tiny); color: var(--ink-faint); }
.crumbs a { text-decoration: none; color: var(--ink-faint); }
.crumbs a:hover { color: var(--navy); }
.crumbs li:not(:last-child)::after { content: '/'; margin-left: 6px; }
.crumbs li[aria-current='page'] { color: var(--ink-soft); font-weight: 600; }

.page-head { padding: 24px 0 10px; max-width: 760px; }
.page-head h1 { font-size: var(--fs-h1); }
.page-head p { color: var(--ink-soft); font-size: var(--fs-lead); }

.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: var(--fs-h2); margin-top: 1.6em; scroll-margin-top: 100px; }
.prose p { font-size: 1.08rem; line-height: 1.75; color: var(--ink); }
.prose ul { list-style: none; margin: 1.2em 0; }
.prose ul li { position: relative; padding-left: 1.6em; margin-bottom: .6em; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta); }
.prose a { color: var(--navy); text-decoration-color: var(--line); }
.prose--page h2:first-of-type { margin-top: 1em; }

/* ============ ΛΕΠΤΟΜΕΡΕΙΑ ΑΡΘΡΟΥ ============ */
.story-detail__head { max-width: 760px; margin: 0 auto; padding: 20px 0 30px; text-align: left; }
.story-detail__title { font-size: var(--fs-h1); }
.story-detail__dek { font-size: var(--fs-lead); color: var(--ink-soft); }
.byline { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--surface-line); }
.byline__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; flex-shrink: 0; }
.byline__meta { font-size: var(--fs-small); color: var(--ink-faint); }
.byline__meta strong { color: var(--ink); display: block; font-size: .95rem; }

.story-detail__media { max-width: 1040px; margin: 0 auto 40px; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 21/9; position: relative; }
.story-detail__media img { width: 100%; height: 100%; object-fit: cover; }

.summary-box { max-width: 720px; margin: 0 auto 36px; background: var(--turquoise-soft); border-radius: var(--radius-md); padding: 26px 30px; }
.summary-box h2 { font-size: 1.1rem; margin-bottom: .7em; color: var(--navy-dark); }
.summary-box ul { display: flex; flex-direction: column; gap: .6em; }
.summary-box li { display: flex; gap: .6em; align-items: flex-start; font-size: var(--fs-small); }
.summary-box li svg { color: var(--turquoise); flex-shrink: 0; margin-top: .2em; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; max-width: 720px; margin: 2em auto 0; }
.tags li { background: var(--bg-deep); color: var(--ink-soft); font-size: var(--fs-tiny); font-weight: 600; padding: .4em .9em; border-radius: 999px; }

.related-strip { max-width: 1040px; margin: 60px auto 0; }

/* ============ ΣΕΛΙΔΑ ΠΑΙΧΝΙΔΙΟΥ ============ */
.game-hero { padding: 30px 0 10px; }
.game-hero__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 4vw, 60px); align-items: center; }
.game-hero__frame { aspect-ratio: 4/5; border-radius: 50% 50% 16px 16px / 36% 36% 16px 16px; overflow: hidden; box-shadow: var(--shadow-lift); }
.game-hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.game-hero__genres { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.game-hero__genres a { font-size: var(--fs-tiny); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--turquoise); text-decoration: none; background: var(--turquoise-soft); padding: .4em .9em; border-radius: 999px; }
.game-hero__title { font-size: var(--fs-hero); margin-bottom: .2em; }
.game-hero__tagline { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--ink-soft); margin-bottom: 1em; }
.game-hero__dev { font-size: var(--fs-small); color: var(--ink-faint); margin-bottom: 1.6em; }
.game-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.game-hero__stats { display: flex; gap: 26px; margin-top: 28px; flex-wrap: wrap; }
.game-hero__stat dt { font-size: var(--fs-tiny); color: var(--ink-faint); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .3em; }
.game-hero__stat dd { margin: 0; font-weight: 700; color: var(--navy-dark); }

@media (max-width: 900px) {
  .game-hero__grid { grid-template-columns: 1fr; }
  .game-hero__frame { max-width: 300px; margin: 0 auto; }
}

.shot-strip { max-width: 1040px; margin: 40px auto 0; }
.shot-strip__title { font-size: var(--fs-h2); margin-bottom: .7em; }
.shot-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.shot-strip__item { margin: 0; }
.shot-strip__item img { width: 100%; height: auto; aspect-ratio: 8 / 5; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
.shot-strip__item figcaption { margin-top: .6em; font-size: var(--fs-small); color: var(--ink-soft); line-height: 1.5; }
.shot-strip__note { margin-top: 18px; font-size: var(--fs-tiny); color: var(--ink-faint); font-style: italic; }

@media (max-width: 760px) {
  .shot-strip__grid { grid-template-columns: 1fr; gap: 24px; }
}

.game-section { max-width: 780px; margin: 0 auto; padding: 36px 0; border-top: 1px solid var(--surface-line); }
.game-section:first-of-type { border-top: none; }
.game-section h2 { font-size: var(--fs-h2); }
.game-section p { font-size: 1.08rem; line-height: 1.75; }

.why-play { display: grid; gap: 16px; margin-top: 1.4em; }
.why-play li { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; background: var(--surface); border: 1px solid var(--surface-line); border-radius: var(--radius-md); }
.why-play li svg { color: var(--terracotta); flex-shrink: 0; margin-top: .15em; }

.verdict-panel { max-width: 780px; margin: 0 auto; background: var(--bg-deep); border-radius: var(--radius-lg); padding: 30px 34px; display: flex; align-items: center; gap: 24px; }
.verdict-panel__score { width: 78px; height: 78px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; flex-shrink: 0; }
.verdict-panel__text { margin: 0; font-family: var(--font-display); font-size: 1.15rem; font-style: italic; color: var(--navy-dark); }

/* ============ ΓΕΝΙΚΑ GRID / ΛΙΣΤΕΣ ============ */
.chips-nav { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 36px; }
.chips-nav a { text-decoration: none; padding: .6em 1.2em; border-radius: 999px; background: var(--surface); border: 1px solid var(--surface-line); font-size: var(--fs-small); font-weight: 600; color: var(--ink-soft); transition: all .2s var(--ease); }
.chips-nav a:hover, .chips-nav a[aria-current='page'] { background: var(--navy); border-color: var(--navy); color: #fff; }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 4vw, 60px); align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ============ ΠΙΝΑΚΑΣ / RANKED ΛΙΣΤΑ (Δημοφιλή) ============ */
.ranked-list { display: flex; flex-direction: column; gap: 18px; }
.ranked-row {
  display: grid; grid-template-columns: 64px 130px 1fr; gap: 24px; align-items: center;
  padding: 20px; background: var(--surface); border: 1px solid var(--surface-line); border-radius: var(--radius-md);
}
.ranked-row__n { font-family: var(--font-display); font-size: 2.4rem; color: var(--terracotta); font-weight: 700; text-align: center; }
.ranked-row__frame { aspect-ratio: 4/5; border-radius: 40% 40% 8px 8px / 28% 28% 8px 8px; overflow: hidden; }
.ranked-row__frame img { width: 100%; height: 100%; object-fit: cover; }
.ranked-row__title { font-family: var(--font-display); font-size: 1.3rem; margin: 0 0 .3em; }
.ranked-row__title a { text-decoration: none; color: var(--navy-dark); }
.ranked-row__title a:hover { color: var(--terracotta); }
.ranked-row__why { color: var(--ink-soft); font-size: var(--fs-small); margin: 0; }

@media (max-width: 620px) {
  .ranked-row { grid-template-columns: 40px 80px 1fr; padding: 14px; gap: 14px; }
  .ranked-row__n { font-size: 1.6rem; }
}

/* ============ ΦΟΡΜΑ ΕΠΙΚΟΙΝΩΝΙΑΣ ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 60px); align-items: start; }
.contact-card { background: var(--surface); border: 1px solid var(--surface-line); border-radius: var(--radius-md); padding: 22px 24px; display: flex; gap: 16px; margin-bottom: 16px; }
.contact-card__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--turquoise-soft); color: var(--turquoise); display: grid; place-items: center; flex-shrink: 0; }
.contact-card h3 { font-size: 1rem; margin: 0 0 .3em; }
.contact-card p { margin: 0; color: var(--ink-soft); font-size: var(--fs-small); }
.contact-card a { color: var(--navy); font-weight: 600; }

.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 700; font-size: var(--fs-small); margin-bottom: .5em; color: var(--navy-dark); }
.form-field input, .form-field textarea {
  width: 100%; padding: .9em 1em; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  background: var(--surface); transition: border-color .2s var(--ease);
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--turquoise); outline: none; }
.form-note { font-size: var(--fs-tiny); color: var(--ink-faint); margin-top: 10px; }

@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============ 404 ============ */
.not-found { text-align: center; padding: clamp(70px, 12vh, 130px) 0; }
.not-found__mark { font-family: var(--font-display); font-size: clamp(4rem, 12vw, 7rem); color: var(--terracotta); line-height: 1; margin-bottom: .2em; }
.not-found h1 { font-size: var(--fs-h1); }
.not-found p { color: var(--ink-soft); font-size: var(--fs-lead); max-width: 46ch; margin: 0 auto 2em; }
.not-found__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ ΥΠΟΣΕΛΙΔΟ ============ */
.site-footer { background: var(--navy-dark); color: rgba(245, 239, 226, .82); margin-top: 40px; }
.site-footer__top { padding: clamp(40px, 6vw, 70px) 0 40px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; }
.site-footer__brand { display: flex; align-items: center; gap: .6em; text-decoration: none; margin-bottom: 14px; }
.site-footer__brand span { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: #fff; }
.site-footer__desc { font-size: var(--fs-small); max-width: 32ch; color: rgba(245, 239, 226, .65); }
.site-footer__heading { color: #fff; font-size: var(--fs-tiny); font-weight: 700; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 16px; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a { text-decoration: none; color: rgba(245, 239, 226, .78); font-size: var(--fs-small); transition: color .2s var(--ease); }
.site-footer__col a:hover { color: #fff; }
.site-footer__bottom { border-top: 1px solid rgba(245, 239, 226, .14); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: var(--fs-tiny); color: rgba(245, 239, 226, .55); }

@media (max-width: 860px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .site-footer__top { grid-template-columns: 1fr; }
}

/* ============ ΓΕΝΙΚΑ ΒΟΗΘΗΤΙΚΑ ============ */
.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.empty-state h2 { font-size: 1.3rem; color: var(--navy-dark); }

.measure { max-width: 70ch; color: var(--ink-soft); }
.block-spacer { margin: 30px 0 60px; }
.stack-sm { margin-top: 10px; }
.stack-md { margin-top: 20px; }
.stack-lg { margin-top: 24px; }
.stack-xl { margin-top: 30px; }
.text-center { text-align: center; }
.section-head--center { justify-content: center; text-align: center; flex-direction: column; }
.eyebrow--center { justify-content: center; }
.lead-text { font-size: 1.2rem; color: var(--ink-soft); }
.game-section--wide { max-width: none; }
.section--flush-top { padding-top: 0; }
.btn--on-dark { color: #fff; border-color: rgba(255, 255, 255, .3); }
.more--block { display: block; margin-top: .6em; }
.verdict-panel--spaced { margin-bottom: 30px; }
.verdict-panel--narrow { max-width: 720px; }
