/* =========================================
   Play Central — Newspaper redesign
   Palette: #fefefe / #0c0c0c / #8b0000 / #d4d4d4
   ========================================= */

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

html { -webkit-text-size-adjust: 100%; }

body {
  background: #fefefe;
  color: #0c0c0c;
  font-family: 'Source Serif Pro', 'Source Serif 4', Georgia, 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

/* Typography ------------------------------------------------ */
h1, h2, h3, h4, .display-title {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: #0c0c0c;
  font-weight: 800;
  letter-spacing: -0.005em;
}

h1 { font-size: 2.6rem; line-height: 1.1; margin-bottom: 18px; }
h2 { font-size: 1.9rem; line-height: 1.15; margin-bottom: 18px; }
h3 { font-size: 1.45rem; line-height: 1.2; margin-bottom: 6px; }
h4 { font-size: 1.05rem; line-height: 1.25; margin-bottom: 6px; }
p  { margin-bottom: 14px; }

a { color: #8b0000; text-decoration: none; border-bottom: 1px solid transparent; }
a:hover { border-bottom-color: #8b0000; }

.kicker,
.mono,
.badge,
.dateline,
.section-meta {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0c0c0c;
}

.muted { color: #555; }

/* Layout ---------------------------------------------------- */
.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 24px;
}

.rule-double {
  border-top: 1px solid #0c0c0c;
  border-bottom: 1px solid #0c0c0c;
  height: 5px;
  margin: 0;
}

.rule-thin {
  height: 0;
  border: 0;
  border-top: 1px solid #d4d4d4;
  margin: 0;
}

.section-divider {
  border-top: 1px solid #0c0c0c;
  border-bottom: 1px solid #0c0c0c;
  height: 5px;
  margin: 48px auto;
  max-width: 1500px;
}

/* Cookie banner --------------------------------------------- */
.cookie-banner {
  background: #fefefe;
  border-bottom: 1px solid #d4d4d4;
  padding: 12px 0;
}
.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cookie-inner p {
  margin: 0;
  font-size: 14px;
  font-family: 'Source Serif Pro', Georgia, serif;
}

/* Header / Masthead ----------------------------------------- */
.site-header {
  padding: 22px 0 0;
}

.masthead-dateline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid #d4d4d4;
}
.masthead-dateline span { white-space: nowrap; }
.masthead-dateline .center { flex: 1; text-align: center; }
.masthead-dateline .right { text-align: right; }

.site-logo {
  text-align: center;
  padding: 26px 0 18px;
}
.site-logo a {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  color: #0c0c0c;
  letter-spacing: -0.01em;
  line-height: 1;
  border: 0;
  display: inline-block;
}
.site-logo a:hover { color: #8b0000; }

.masthead-rule {
  border-top: 1px solid #0c0c0c;
  border-bottom: 1px solid #0c0c0c;
  height: 5px;
}

.site-nav {
  padding: 14px 0 18px;
  border-bottom: 1px solid #d4d4d4;
}
.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.nav-list a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0c0c0c;
  border-bottom: 0;
}
.nav-list a:hover { color: #8b0000; }

/* Hero ------------------------------------------------------ */
#hero {
  padding: 64px 0 56px;
  text-align: center;
}
.hero-content {
  max-width: 640px;
  margin: 0 auto;
}
.hero-content .kicker {
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #8b0000;
  color: #8b0000;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 22px;
}
.hero-content .lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #2a2a2a;
}

/* Section titles ------------------------------------------- */
.section {
  padding: 52px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 42px;
}
.section-header .kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #8b0000;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}
.section-header .section-sub {
  font-size: 1rem;
  color: #444;
  max-width: 600px;
  margin: 6px auto 0;
}

/* Games grid ------------------------------------------------ */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid #d4d4d4;
  border-left: 1px solid #d4d4d4;
}
.catalog-grid .game {
  padding: 32px;
  border-right: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
  background: #fefefe;
  display: flex;
  flex-direction: column;
}
.game-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8b0000;
  margin-bottom: 12px;
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 10px;
}
.game-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}
.game-icon {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid #d4d4d4;
  flex-shrink: 0;
}
.game-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1.15;
  margin-bottom: 4px;
}
.game-developer {
  font-style: italic;
  font-size: 0.9rem;
  color: #555;
}
.game-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
.screenshots img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #d4d4d4;
}

/* Buttons (outline rectangles) ------------------------------ */
.btn {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0c0c0c;
  background: transparent;
  border: 1px solid #0c0c0c;
  border-radius: 0;
  padding: 12px 22px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.btn:hover {
  background: #0c0c0c;
  color: #fefefe;
  border-color: #0c0c0c;
}
.btn-accent {
  border-color: #8b0000;
  color: #8b0000;
}
.btn-accent:hover {
  background: #8b0000;
  color: #fefefe;
  border-color: #8b0000;
}
.btn-block {
  display: block;
  width: 100%;
  margin-top: auto;
}

/* About ----------------------------------------------------- */
.about-content {
  max-width: 1500px;
  margin: 0 auto;
  column-gap: 36px;
}
.about-content p {
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-content p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
  font-weight: 900;
  float: left;
  line-height: 0.9;
  padding: 6px 10px 0 0;
  color: #8b0000;
}

/* Q&A ------------------------------------------------------- */
.qa-list {
  max-width: 1500px;
  margin: 0 auto;
}
.qa-item {
  padding: 22px 0;
  border-bottom: 1px solid #d4d4d4;
}
.qa-item:first-child { border-top: 1px solid #d4d4d4; }
.qa-q {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #0c0c0c;
}
.qa-q::before {
  content: "Otázka — ";
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8b0000;
  margin-right: 4px;
  font-weight: 400;
}
.qa-a {
  font-size: 1rem;
  line-height: 1.65;
  color: #1a1a1a;
}
.qa-a::before {
  content: "Odpoveď — ";
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0c0c0c;
  margin-right: 4px;
}

/* Voices / testimonials ------------------------------------- */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid #d4d4d4;
  border-left: 1px solid #d4d4d4;
}
.voice {
  padding: 26px 28px;
  border-right: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
}
.voice blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 14px;
  color: #0c0c0c;
}
.voice blockquote::before {
  content: "\201C";
  font-size: 2.4rem;
  line-height: 0;
  color: #8b0000;
  margin-right: 4px;
  vertical-align: -0.35em;
}
.voice cite {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal;
  color: #555;
}

/* Process list ---------------------------------------------- */
.process {
  max-width: 1500px;
  margin: 0 auto;
  list-style: none;
  counter-reset: step;
}
.process li {
  counter-increment: step;
  position: relative;
  padding: 18px 0 18px 56px;
  border-bottom: 1px solid #d4d4d4;
}
.process li:first-child { border-top: 1px solid #d4d4d4; }
.process li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #8b0000;
  font-weight: 600;
}
.process h4 { margin-bottom: 6px; font-size: 1.1rem; }
.process p { margin-bottom: 0; font-size: 0.98rem; line-height: 1.6; color: #1a1a1a; }

/* Subscribe form ------------------------------------------- */
#subscribe {
  background: #fefefe;
}
.subscribe-wrap {
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid #0c0c0c;
  padding: 36px 32px;
  text-align: center;
}
.subscribe-wrap h2 { margin-bottom: 10px; }
.subscribe-wrap .form-sub {
  font-size: 0.98rem;
  color: #444;
  margin-bottom: 22px;
}
.form-group { margin-bottom: 12px; }
.form-group input {
  width: 100%;
  padding: 12px 14px;
  background: #fefefe;
  border: 1px solid #d4d4d4;
  border-radius: 0;
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 1rem;
  color: #0c0c0c;
  outline: none;
}
.form-group input:focus {
  border-color: #0c0c0c;
}
.form-group input::placeholder {
  color: #888;
  font-style: italic;
}
#subscribeForm .btn-block { margin-top: 8px; }

.success-msg {
  display: none;
  margin-top: 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8b0000;
}
.success-msg.show { display: block; }

/* Consent checkbox ----------------------------------------- */
.consent-field { margin-bottom: 14px; }
.consent { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; font-size: 13px; color: #444; line-height: 1.5; }
.consent input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: #8b0000; }

/* Footer ---------------------------------------------------- */
.site-footer {
  border-top: 1px solid #0c0c0c;
  padding: 28px 0 36px;
  margin-top: 40px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #333;
  text-align: center;
}
.site-footer a {
  color: #333;
  border-bottom: 0;
}
.site-footer a:hover { color: #8b0000; }

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 14px;
}
.footer-address {
  font-style: normal;
  margin-bottom: 8px;
}
.site-footer p { margin-bottom: 6px; }

/* Wide screens ---------------------------------------------- */
@media (min-width: 1400px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .voices-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile ---------------------------------------------------- */
@media (max-width: 760px) {
  .container { padding: 0 18px; }

  body { font-size: 15px; }

  .masthead-dateline {
    flex-direction: column;
    gap: 4px;
    font-size: 10px;
  }
  .masthead-dateline .center,
  .masthead-dateline .right { text-align: center; }

  .site-logo { padding: 20px 0 14px; }

  .nav-list { gap: 18px; }

  #hero { padding: 44px 0 36px; }
  .hero-content h1 { font-size: 1.9rem; }
  .hero-content .lead { font-size: 1rem; }

  .section { padding: 36px 0; }
  .section-divider { margin: 32px auto; }

  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .catalog-grid .game { padding: 24px 20px; }

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

  .game-head { gap: 12px; }
  .game-icon { width: 60px; height: 60px; }
  .game-title { font-size: 1.25rem; }

  .subscribe-wrap { padding: 26px 20px; }

  .process li { padding-left: 44px; }

  .cookie-inner { flex-direction: column; align-items: stretch; text-align: center; }
}

@media (max-width: 420px) {
  h1 { font-size: 1.7rem; }
  .site-logo a { font-size: 2rem; }
  .screenshots { grid-template-columns: 1fr; }
}

/* Centered subscribe form — final pass */
#subscribe { display: flex; justify-content: center; }
#subscribe > .container { width: 100%; }
#subscribe > .container > *,
#subscribe .form-wrap,
#subscribe .subscribe-wrap,
#subscribe .subscribe-card,
#subscribe .mailwrap,
#subscribe .card { margin-left: auto !important; margin-right: auto !important; }
#subscribe form, #subscribe form > * { text-align: left; }
#subscribe .section-head, #subscribe h2, #subscribe .form-subtitle, #subscribe .subtitle, #subscribe .sub, #subscribe .kicker { text-align: center; }