:root {
  --bg: #0a0f0a;
  --bg2: #0d1a0d;
  --card: rgba(50, 205, 50, 0.06);
  --card2: rgba(50, 205, 50, 0.08);
  --text: rgba(255, 255, 255, 0.94);
  --muted: rgba(255, 255, 255, 0.75);
  --muted2: rgba(255, 255, 255, 0.60);
  --border: rgba(50, 205, 50, 0.25);
  --accent: #32cd32;
  --accent2: #7fff00;
  --accent-glow: rgba(50, 205, 50, 0.4);
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  --glow: 0 0 20px rgba(50, 205, 50, 0.3);
  --radius: 18px;
  --radius2: 24px;
  --max: 1100px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: 
    radial-gradient(ellipse 1000px 600px at 15% 5%, rgba(50, 205, 50, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 800px 500px at 85% 10%, rgba(127, 255, 0, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 600px 400px at 50% 80%, rgba(0, 100, 0, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--sans);
  min-height: 100vh;
}

a { color: inherit; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #000000;
  padding: 10px 12px;
  border-radius: 10px;
}

.skip:focus { left: 12px; top: 12px; z-index: 9999; }

.header {
  position: relative;
  z-index: 20;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

.header-logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  display: block;
  max-height: 80px;
  width: auto;
  max-width: 100%;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-link {
  font-size: 14px;
  text-decoration: none;
  color: #1f2937;
  padding: 8px 12px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.nav-link:hover { 
  background: rgba(134, 239, 172, 0.25); 
  color: #14532d;
}

.main { padding-bottom: 30px; }

.hero {
  padding: 38px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.hero-title-row {
  margin: 0 0 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hero-title {
  margin: 0;
  min-width: 0;
}

.hero-title-date {
  display: block;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.05;
  font-weight: 800;
  color: var(--text);
}

.more-dates-btn {
  white-space: nowrap;
  padding-inline: 16px;
  border-color: rgba(50, 205, 50, 0.45);
  background: rgba(0, 0, 0, 0.35);
}

.hero-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 16px;
  font-weight: 500;
}

.hero-tagline {
  margin: 0 0 16px;
  font-size: 18px;
  color: var(--text);
}

.prize-banner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px;
  margin: 16px 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.15) 100%);
  border: 2px solid rgba(255, 215, 0, 0.5);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2), var(--shadow);
}

.prize-lead {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd700;
}

.prize-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.prize-sub {
  font-size: 14px;
  color: var(--muted);
}

.prize-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.prize-pill {
  background: rgba(10, 15, 10, 0.45);
  border: 1px solid rgba(255, 215, 0, 0.45);
  border-radius: 12px;
  padding: 10px 12px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.prize-pill-amount {
  display: block;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.45);
}

.prize-pill-label {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
}

.prize-pill-note {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--muted2);
}

.pricing {
  margin: 16px 0;
}

.pricing-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.pricing-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pricing-tier {
  flex: 1 1 100px;
  padding: 12px 16px;
  background: rgba(50, 205, 50, 0.08);
  border: 1px solid rgba(50, 205, 50, 0.2);
  border-radius: 12px;
  text-align: center;
}

.pricing-tier.early {
  background: linear-gradient(135deg, rgba(50, 205, 50, 0.2) 0%, rgba(50, 205, 50, 0.1) 100%);
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(50, 205, 50, 0.2);
}

.tier-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.pricing-tier.early .tier-label {
  color: var(--accent);
}

.tier-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin: 4px 0;
}

.pricing-tier.early .tier-price {
  color: var(--accent2);
}

.tier-date {
  font-size: 11px;
  color: var(--muted2);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.pill {
  background: rgba(50, 205, 50, 0.1);
  border: 1px solid rgba(50, 205, 50, 0.3);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}

.btn {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(50, 205, 50, 0.1);
  color: var(--text);
  padding: 11px 14px;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn:hover { 
  background: rgba(50, 205, 50, 0.2);
  border-color: var(--accent);
  box-shadow: var(--glow);
}

.btn.primary {
  background: linear-gradient(135deg, rgba(50, 205, 50, 0.3), rgba(34, 139, 34, 0.3));
  border-color: var(--accent);
}

.btn.small { padding: 9px 12px; font-size: 13px; }

.event-code {
  background: linear-gradient(180deg, rgba(50, 205, 50, 0.12), rgba(50, 205, 50, 0.06));
  border: 1px solid rgba(50, 205, 50, 0.3);
  border-radius: var(--radius);
  padding: 14px;
  max-width: 420px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.event-code-label {
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.event-code-value {
  display: inline-flex;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 22px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid var(--accent);
  color: var(--accent2);
  padding: 10px 14px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0 15px rgba(50, 205, 50, 0.2);
}

.event-code-value:hover {
  background: rgba(50, 205, 50, 0.15);
  box-shadow: 0 0 25px rgba(50, 205, 50, 0.4);
}

.event-code-help {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted2);
}

.hero-note {
  margin: 16px 0 0;
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.55;
}

.hero-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.hero-link-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(50, 205, 50, 0.15) 0%, rgba(50, 205, 50, 0.05) 100%);
  border: 1px solid rgba(50, 205, 50, 0.25);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-link-btn:hover {
  background: linear-gradient(135deg, rgba(50, 205, 50, 0.25) 0%, rgba(50, 205, 50, 0.1) 100%);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), var(--glow);
}

.hero-link-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}

.hero-link-sub {
  font-size: 13px;
  color: var(--muted);
}

.sponsors {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.sponsor {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: rgba(50, 205, 50, 0.08);
  border: 1px solid rgba(50, 205, 50, 0.2);
  border-radius: 16px;
  transition: all 0.2s ease;
}

.sponsor:hover {
  border-color: rgba(50, 205, 50, 0.4);
  box-shadow: var(--glow);
}

.sponsor-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  text-align: center;
}

.sponsor-logo {
  width: 100%;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
  padding: 10px;
}

.sponsor-url {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  word-break: break-all;
}

.sponsor-url:hover {
  color: var(--accent);
  text-decoration: underline;
}

.how-to-play {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(50, 205, 50, 0.2);
}

.how-to-play > .team-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 22px;
}

.how-title {
  margin: 0 0 14px;
  font-size: 22px;
  color: var(--accent);
}

.how-text {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 58ch;
}

.how-text:last-child {
  margin-bottom: 0;
}

.how-text strong {
  color: var(--accent2);
}

.how-screenshot-inline {
  margin: 4px 0 16px;
  max-width: 340px;
}

.how-screenshot {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(50, 205, 50, 0.28);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: var(--shadow);
}

.btn.primary.how-video-btn,
.btn.primary.how-video-btn:visited {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #6e1e2b, #4a0f19);
  border-color: #a3384d;
  color: #ffffff;
}

.how-video-btn::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #ffffff;
}

.btn.primary.how-video-btn:hover,
.btn.primary.how-video-btn:focus-visible,
.btn.primary.how-video-btn:active {
  background: linear-gradient(135deg, #8a2536, #5d1623);
  border-color: #d55a72;
  box-shadow: 0 0 16px rgba(138, 37, 54, 0.45);
}

.hero-card {
  background: linear-gradient(180deg, rgba(50, 205, 50, 0.1), rgba(50, 205, 50, 0.04));
  border: 1px solid rgba(50, 205, 50, 0.25);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.card-title {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--accent);
}

.card-text {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.45;
}

.card-subtitle {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--accent2);
}

.reg-paths {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
}

.reg-path {
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(50, 205, 50, 0.2);
  border-radius: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.reg-path strong {
  color: var(--accent);
}

.reg-path-link {
  color: var(--accent2);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reg-path-link:hover {
  color: #ffffff;
}

.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.store {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(50, 205, 50, 0.2);
  border-radius: 16px;
  padding: 12px;
  transition: all 0.2s ease;
}

.store:hover {
  border-color: rgba(50, 205, 50, 0.4);
  box-shadow: var(--glow);
}

.store-link {
  display: block;
}

.store-badge {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.qr {
  width: 100%;
  height: auto;
  margin-top: 10px;
  border-radius: 14px;
  background: #ffffff;
  padding: 10px;
}

.store-meta { margin-top: 10px; }

.store-meta-title { font-weight: 700; font-size: 14px; color: var(--accent); }

.store-meta-sub { font-size: 12px; color: var(--muted2); margin-top: 3px; }

.link-list {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(50, 205, 50, 0.2);
}

.event-code-section {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(50, 205, 50, 0.2);
}

.event-code-section .card-title,
.event-code-section .card-subtitle {
  margin-bottom: 6px;
}

.event-code-section .card-text {
  margin-bottom: 12px;
}

.event-code-section .event-code {
  max-width: none;
}

.online-reg-section {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(50, 205, 50, 0.2);
}

.online-reg-section .card-subtitle {
  margin-bottom: 6px;
}

.online-reg-section .card-text {
  margin-bottom: 12px;
}

.online-reg-section .team-btn {
  width: 100%;
  box-sizing: border-box;
  display: block;
  margin-top: 1rem;
}

.link-list-title {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--accent);
}

.link-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(50, 205, 50, 0.15);
  margin-bottom: 10px;
  transition: all 0.2s ease;
}

.link-item:hover {
  border-color: rgba(50, 205, 50, 0.3);
}

.link-label {
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-top: 2px;
  font-weight: 600;
}

.link-url {
  font-size: 13px;
  word-break: break-all;
  color: var(--text);
  text-decoration: none;
}

.link-url:hover { text-decoration: underline; color: var(--accent); }

.section {
  padding: 34px 0;
}

.section.alt {
  background: rgba(50, 205, 50, 0.03);
  border-top: 1px solid rgba(50, 205, 50, 0.15);
  border-bottom: 1px solid rgba(50, 205, 50, 0.15);
}

.section-title {
  margin: 0 0 10px;
  font-size: 26px;
  color: var(--accent);
}

.section-subtitle {
  margin: 0 0 18px;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.step {
  background: rgba(50, 205, 50, 0.08);
  border: 1px solid rgba(50, 205, 50, 0.2);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.step-num {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #228b22);
  border: none;
  font-weight: 800;
  color: #000;
}

.step-title {
  margin: 12px 0 8px;
  font-size: 16px;
}

.step-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.mini-list {
  margin: 12px 0 0;
  padding-left: 16px;
  color: var(--muted2);
  line-height: 1.5;
  font-size: 13px;
}

.mini-cta { margin-top: 14px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  background: rgba(50, 205, 50, 0.08);
  border: 1px solid rgba(50, 205, 50, 0.2);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.card-link {
  display: block;
  margin-top: 10px;
  text-decoration: none;
  color: var(--text);
  word-break: break-all;
  font-size: 13px;
}

.card-link:hover { text-decoration: underline; }

.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.faq-item {
  background: rgba(50, 205, 50, 0.08);
  border: 1px solid rgba(50, 205, 50, 0.2);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: all 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(50, 205, 50, 0.4);
  box-shadow: 0 0 15px rgba(50, 205, 50, 0.1);
}

.faq-q {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s ease;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-a {
  color: var(--muted);
  padding: 10px 2px 2px;
  line-height: 1.55;
}

.share {
  margin-top: 22px;
  background: rgba(50, 205, 50, 0.08);
  border: 1px solid rgba(50, 205, 50, 0.2);
  border-radius: var(--radius2);
  padding: 16px;
  box-shadow: var(--shadow);
}

.share-title { margin: 0 0 6px; font-size: 18px; color: var(--accent); }

.share-sub { margin: 0 0 12px; color: var(--muted); }

.share-box {
  width: 100%;
  resize: vertical;
  border-radius: 14px;
  border: 1px solid rgba(50, 205, 50, 0.25);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  padding: 12px;
  line-height: 1.45;
  font-family: var(--sans);
  transition: border-color 0.2s ease;
}

.share-box:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(50, 205, 50, 0.2);
}

.share-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.toast {
  margin-top: 10px;
  min-height: 18px;
  color: var(--accent);
  font-size: 13px;
}

.contact-card {
  background: rgba(50, 205, 50, 0.08);
  border: 1px solid rgba(50, 205, 50, 0.2);
  border-radius: var(--radius2);
  padding: 20px;
  max-width: 500px;
  box-shadow: var(--shadow);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(50, 205, 50, 0.15);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact-item:hover {
  background: rgba(50, 205, 50, 0.1);
  border-color: var(--accent);
  box-shadow: var(--glow);
}

.contact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
}

.contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.contact-hint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.footer {
  padding: 24px 0 40px;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(50, 205, 50, 0.15);
  padding-top: 16px;
  color: var(--muted);
}

.footer-title { font-weight: 700; color: var(--accent); }

.footer-sub { font-size: 13px; color: var(--muted2); }

.footer-links { display: flex; gap: 12px; flex-wrap: wrap; }

.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(50, 205, 50, 0.15);
  background: rgba(50, 205, 50, 0.05);
  transition: all 0.2s ease;
}

.footer-link:hover { 
  color: var(--accent); 
  background: rgba(50, 205, 50, 0.15);
  border-color: rgba(50, 205, 50, 0.3);
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .nav { display: none; }
  .header-inner { justify-content: center; }
  .store-grid { grid-template-columns: 1fr; }
  .prize-pill-grid { grid-template-columns: 1fr; }
  .how-screenshot-inline { max-width: 100%; }
}

@media (max-width: 520px) {
  .hero-title-row {
    flex-wrap: wrap;
  }
}

/* Site Footer */
.site-footer {
  padding: 2.5rem 1rem;
  text-align: center;
}

.footer-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.06);
}

.footer-link-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

@media print {
  .header, .cta-row, .nav, .toast, .footer-links, .more-dates-btn { display: none; }
  html, body { background: #ffffff; color: #000000; }
  .hero-title-date { color: #006400; }
  .hero-card, .event-code, .step, .card, .faq-item, .share { box-shadow: none; }
  .link-url, .card-link { color: #000000; text-decoration: underline; }
}
