/* Pokémon Burza CZ/SK landing page — pixel-art-aware brand baseline */

:root {
  --bg: #0a1428;
  --surface: #0f1d36;
  --surface-2: #16284b;
  --text: #f5f7fb;
  --text-soft: #c3cce0;
  --accent: #ffcb05;     /* Pokémon yellow */
  --accent-2: #3b82f6;   /* deep blue */
  --link: #fde68a;
  --link-hover: #ffd84d;
  --max: 880px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover { color: var(--link-hover); }

/* Hero */
.hero {
  background:
    linear-gradient(180deg, rgba(10,20,40,0.55) 0%, rgba(10,20,40,0.95) 100%),
    url('/main-cover.jpg') center / cover no-repeat;
  padding: 96px 24px 80px;
  border-bottom: 1px solid var(--surface-2);
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.hero h1 {
  margin: 0 0 16px;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero-sub {
  margin: 0 0 28px;
  font-size: 19px;
  color: var(--text);
  max-width: 720px;
}
.cta-primary {
  display: inline-block;
  background: var(--accent);
  color: #0a1428;
  font-weight: 700;
  font-size: 17px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255,203,5,0.25);
  transition: transform 0.1s ease, box-shadow 0.15s ease;
}
.cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255,203,5,0.35);
  color: #0a1428;
}

/* Main content sections */
main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.content-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--surface-2);
}
.content-section h2 {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.content-section p {
  margin: 0 0 14px;
  color: var(--text-soft);
}
.content-section p:last-child {
  margin-bottom: 0;
}

/* Brand-surfaces grid */
.brand-surfaces {
  padding: 56px 0 72px;
}
.brand-surfaces h2 {
  margin: 0 0 24px;
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
}
.surface-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.surface {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s ease, transform 0.1s ease;
}
.surface:hover {
  background: var(--surface-2);
  transform: translateY(-1px);
  color: var(--text);
}
.surface-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}
.surface-handle {
  font-size: 17px;
  font-weight: 600;
  color: var(--accent);
}

/* Footer */
footer {
  background: var(--surface);
  border-top: 1px solid var(--surface-2);
  padding: 32px 24px;
  font-size: 14px;
  color: var(--text-soft);
}
footer p {
  max-width: var(--max);
  margin: 0 auto 8px;
}
footer .copy {
  margin-top: 6px;
  opacity: 0.7;
}
footer a { color: var(--link); }

/* Responsive tweaks */
@media (max-width: 640px) {
  .hero { padding: 64px 20px 56px; }
  .hero h1 { font-size: 34px; }
  .hero-sub { font-size: 17px; }
  main { padding: 0 20px; }
  .content-section { padding: 36px 0; }
  .content-section h2 { font-size: 22px; }
  body { font-size: 16px; }
}
