/* Grand Deck Arena — sports-media portal */
:root {
  --ink: #07110c;
  --ink-soft: #0e1a14;
  --panel: #13221a;
  --panel-2: #1a2e24;
  --felt: #145c3f;
  --felt-bright: #1f7a54;
  --gold: #d4b45a;
  --gold-soft: #e8d49a;
  --cream: #f3f0e6;
  --muted: #9bb0a4;
  --line: rgba(212, 180, 90, 0.22);
  --danger: #c45c4a;
  --ok: #3d9b6e;
  --radius: 2px;
  --font-display: "Teko", "Arial Narrow", sans-serif;
  --font-body: "Sora", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--gold);
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 0.4em;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
}

h3 {
  font-size: 1.55rem;
  text-transform: uppercase;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Atmosphere */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(31, 122, 84, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(212, 180, 90, 0.12), transparent 50%),
    linear-gradient(180deg, #0a140f 0%, var(--ink) 40%, #050a08 100%);
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23d4b45a' stroke-width='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(7, 17, 12, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--cream);
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

.brand-sub {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: none;
}

@media (min-width: 720px) {
  .brand-sub {
    display: inline;
  }
}

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

.nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 0.75rem;
  border: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--gold);
  border-color: var(--line);
  background: rgba(212, 180, 90, 0.06);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 0.45rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(7, 17, 12, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem;
  }

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

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line);
  background: rgba(20, 92, 63, 0.35);
  color: var(--gold-soft);
}

.badge--live {
  border-color: rgba(61, 155, 110, 0.5);
  color: #8fd4b0;
}

.badge--age {
  border-color: rgba(196, 92, 74, 0.55);
  color: #f0b0a4;
  font-weight: 700;
  min-width: 2.4rem;
  justify-content: center;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.85);
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 17, 12, 0.25) 0%, rgba(7, 17, 12, 0.55) 45%, rgba(7, 17, 12, 0.96) 100%),
    linear-gradient(110deg, rgba(20, 92, 63, 0.45), transparent 55%),
    radial-gradient(circle at 70% 40%, rgba(212, 180, 90, 0.18), transparent 40%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.015) 18px,
      rgba(255, 255, 255, 0.015) 19px
    ),
    var(--ink-soft);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 10% 5% auto auto;
  width: min(48vw, 420px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  transform: rotate(8deg);
  opacity: 0.5;
  animation: frameDrift 12s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 18%;
  width: min(36vw, 280px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
  animation: lineSweep 5s ease-in-out infinite;
}

@keyframes frameDrift {
  from {
    transform: rotate(8deg) translateY(0);
  }
  to {
    transform: rotate(6deg) translateY(12px);
  }
}

@keyframes lineSweep {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.85);
  }
  50% {
    opacity: 0.9;
    transform: scaleX(1);
  }
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  animation: riseIn 0.7s ease both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0;
  animation: riseIn 0.8s ease 0.08s both;
}

.hero-brand span {
  color: var(--gold);
}

.hero-lead {
  max-width: 34rem;
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0.75rem 0 1.75rem;
  animation: riseIn 0.8s ease 0.16s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: riseIn 0.8s ease 0.24s both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  transition: transform 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
}

.btn:hover {
  background: var(--gold-soft);
  color: var(--ink);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(243, 240, 230, 0.35);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

/* Featured event strip */
.featured-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  animation: riseIn 0.9s ease 0.3s both;
}

.meta-item dt {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.25rem;
}

.meta-item dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
}

/* Countdown */
.countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0 0;
}

.countdown-unit {
  min-width: 4.2rem;
  padding: 0.65rem 0.75rem;
  background: rgba(19, 34, 26, 0.85);
  border: 1px solid var(--line);
  text-align: center;
}

.countdown-unit strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--gold);
}

.countdown-unit span {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section--panel {
  background: linear-gradient(180deg, rgba(19, 34, 26, 0.55), rgba(14, 26, 20, 0.9));
  border-block: 1px solid var(--line);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head p {
  max-width: 28rem;
  color: var(--muted);
  margin: 0;
}

/* Notice / mandatory disclaimer */
.notice {
  border: 1px solid rgba(212, 180, 90, 0.35);
  background: rgba(20, 92, 63, 0.18);
  padding: 1.25rem 1.35rem;
  margin: 2rem 0;
}

.notice strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.notice p:last-child {
  margin-bottom: 0;
  color: var(--cream);
}

/* Event schedule list */
.event-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.event-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(155, 176, 164, 0.15);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, padding 0.2s;
}

.event-row:hover {
  background: rgba(212, 180, 90, 0.05);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.event-row.is-current {
  background: rgba(20, 92, 63, 0.2);
  border-color: var(--line);
  padding-inline: 0.75rem;
}

.event-date {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1.1;
}

.event-date small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.event-main h3 {
  font-size: 1.35rem;
  margin: 0 0 0.2rem;
}

.event-main p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.event-flag {
  font-size: 1.35rem;
  line-height: 1;
}

@media (max-width: 640px) {
  .event-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "date flag"
      "main main";
  }

  .event-date {
    grid-area: date;
  }

  .event-main {
    grid-area: main;
  }

  .event-flag {
    grid-area: flag;
  }
}

/* Structure grid */
.structure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.structure-item {
  padding: 1.25rem;
  border-left: 2px solid var(--gold);
  background: rgba(19, 34, 26, 0.65);
}

.structure-item dt {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.4rem;
}

.structure-item dd {
  margin: 0;
  font-size: 0.95rem;
}

/* Responsible */
.rg-box {
  display: grid;
  gap: 1.25rem;
  padding: 1.75rem;
  border: 1px solid rgba(196, 92, 74, 0.35);
  background: rgba(196, 92, 74, 0.06);
}

.rg-box ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.rg-box a {
  color: var(--gold-soft);
}

/* About / legal prose */
.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: 2rem;
}

.prose ul {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-card {
  padding: 1.25rem;
  background: var(--panel);
  border: 1px solid var(--line);
}

.contact-card h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-card a {
  color: var(--cream);
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--gold);
}

/* Page hero (inner) */
.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
}

.page-hero .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  background: #050a08;
  padding: 2.5rem 0 2rem;
}

.footer-plaques {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-bottom: 2rem;
}

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

@media (max-width: 480px) {
  .footer-plaques {
    grid-template-columns: 1fr;
  }
}

.plaque {
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(19, 34, 26, 0.7);
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--cream);
  text-align: center;
}

.plaque strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(155, 176, 164, 0.12);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-age {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-copy {
  width: 100%;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Cookie bar */
.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 520px;
  margin-inline: auto;
  padding: 1rem 1.15rem;
  background: var(--panel-2);
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  display: none;
}

.cookie-bar.is-visible {
  display: block;
  animation: riseIn 0.4s ease;
}

.cookie-bar p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 0.85rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

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

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

.mt-0 {
  margin-top: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}
