/* ============================================================
   NIMBUS CARDS & GAMES — Main Stylesheet
   Brand Colors:
     Teal:       #7DD3D3  (primary background / hero)
     Gold:       #D4A847  (primary accent)
     Light Gold: #E8C96A
     Dark:       #1A1A1A
     Off-White:  #F8F6F0
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:       #7DD3D3;
  --teal-dark:  #5BBFBF;
  --gold:       #D4A847;
  --gold-light: #E8C96A;
  --dark:       #1A1A1A;
  --dark2:      #2C2C2C;
  --off-white:  #F8F6F0;
  --white:      #FFFFFF;
  --shadow:     0 4px 24px rgba(0,0,0,0.12);
  --radius:     14px;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Nunito', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--dark);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gold);
  transition: background 0.3s;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo .logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--off-white);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--off-white);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px 8px;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--teal) 0%, #9AE0E0 40%, #B8EBEB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: min(480px, 85vw);
  margin: 0 auto 24px;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.18));
}

.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--dark);
  margin-bottom: 36px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* floating clouds decoration */
.hero-clouds { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.cloud {
  position: absolute;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
}
.c1 { width: 300px; height: 120px; top: 15%; right: -60px; animation: drift 18s ease-in-out infinite; }
.c2 { width: 200px; height: 80px; bottom: 20%; left: -40px; animation: drift 22s ease-in-out infinite reverse; }
.c3 { width: 160px; height: 65px; top: 60%; right: 10%; animation: drift 15s ease-in-out infinite 3s; }

@keyframes drift {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(20px) translateY(-10px); }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(212, 168, 71, 0.45);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 24px rgba(212, 168, 71, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2.5px solid var(--dark);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--off-white);
}

/* ---------- WELCOME STRIP ---------- */
.welcome-strip {
  background: var(--dark);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.strip-items {
  display: inline-flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  padding-right: 48px;
}

.strip-items span {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 80px 24px;
}

.section-dark {
  background: var(--dark2);
  color: var(--off-white);
}

.section-teal {
  background: linear-gradient(135deg, var(--teal) 0%, #9AE0E0 100%);
  color: var(--dark);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 8px;
}

.section-dark .section-title::after { background: var(--teal); }
.section-teal .section-title::after { background: var(--dark); }

.section-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 48px;
  opacity: 0.85;
}

/* ---------- TCG CARD GRID ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 24px;
}

.game-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--accent, var(--gold));
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.16);
}

.game-card-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.game-card-logo {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.game-card-logo img {
  max-height: 72px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.game-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.game-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
}

/* ---------- CARD GRADING ---------- */
.section-grading {
  background: linear-gradient(160deg, #0e1a2b 0%, #152236 60%, #0e1a2b 100%);
  color: var(--off-white);
}

.section-grading .section-title { color: var(--gold); }
.section-grading .section-title::after { background: var(--gold); }
.section-grading .section-sub { color: rgba(255,255,255,0.75); }

/* Process steps */
.grading-steps {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.grading-step {
  flex: 1;
  min-width: 180px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,168,71,0.2);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}

.grading-step:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-3px);
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.grading-step h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.grading-step p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

.grading-arrow {
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.5;
  align-self: center;
  flex-shrink: 0;
  padding-top: 4px;
}

/* Pricing block */
.grading-pricing {
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(212,168,71,0.08);
  border: 1px solid rgba(212,168,71,0.3);
  border-radius: var(--radius);
  padding: 28px 36px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.grading-fee-highlight {
  text-align: center;
  flex-shrink: 0;
}

.gfee-amount {
  font-family: var(--font-head);
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.gfee-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.gfee-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.grading-fee-list {
  border-left: 1px solid rgba(212,168,71,0.25);
  padding-left: 32px;
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gfee-line {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.gfee-check {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Partner cards */
.grading-partners-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--off-white);
  margin-bottom: 24px;
}

.grading-partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.partner-card {
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.2s;
}

.partner-card:hover { transform: translateY(-4px); }

.partner-card h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.partner-tagline {
  font-size: 0.92rem;
  font-style: italic;
  margin-bottom: 16px;
  opacity: 0.75;
}

.partner-card p:not(.partner-tagline) {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.partner-logo-wrap {
  margin-bottom: 20px;
}

.partner-wordmark {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 8px 20px;
  border-radius: 6px;
}

/* TAG card */
.partner-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(125,211,211,0.3);
}

.partner-tag h3 { color: var(--teal); }
.partner-tag .partner-tagline { color: rgba(125,211,211,0.8); }
.partner-tag p:not(.partner-tagline) { color: rgba(255,255,255,0.75); }

.tag-wordmark {
  background: var(--teal);
  color: var(--dark);
  font-size: 1.4rem;
}

.tag-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(125,211,211,0.15);
  border: 1px solid var(--teal);
  color: var(--teal);
}

/* Beckett card */
.partner-beckett {
  background: linear-gradient(145deg, #0a0a0a 0%, #111111 100%);
  border: 1px solid #8a7230;
}

.partner-beckett h3 { color: var(--gold); }
.partner-beckett .partner-tagline { color: rgba(212,168,71,0.8); }
.partner-beckett p:not(.partner-tagline) { color: rgba(255,255,255,0.75); }

.beckett-wordmark {
  background: linear-gradient(135deg, #c9a227 0%, #f0d060 50%, #c9a227 100%);
  color: #0a0a0a;
  font-size: 1.4rem;
}

.beckett-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: #0a0a0a;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  text-shadow: 0 0 8px rgba(212,168,71,0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .grading-partners { grid-template-columns: 1fr; }
  .grading-arrow { display: none; }
  .grading-step { min-width: 140px; }
}

/* ---------- WARHAMMER FEATURE GRID ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background 0.2s, transform 0.2s;
}

.feature-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.feature-card-img {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.feature-card-img img {
  max-height: 80px;
  max-width: 100%;
  object-fit: contain;
}

.feature-army-logos {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.army-nameplate {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Space Marines: Imperial gold & blue — bold, heraldic */
.space-marines-plate {
  background: linear-gradient(145deg, #0d2f6e 0%, #1a4aab 60%, #0d2f6e 100%);
  color: #f0c040;
  border: 1px solid #c8a030;
  text-shadow: 0 0 8px rgba(240,192,64,0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Necrons: Ancient machine-death — black metal with sickly green glow */
.necrons-plate {
  background: linear-gradient(145deg, #050505 0%, #0a0a0a 60%, #050505 100%);
  color: #39ff6a;
  border: 1px solid #1aff5e;
  text-shadow: 0 0 10px #39ff6a, 0 0 20px rgba(57,255,106,0.4);
  box-shadow: inset 0 0 12px rgba(57,255,106,0.08);
  font-family: 'Courier New', monospace;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--gold);
}

.feature-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
}

.army-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.army-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.space-marines { background: #1E40AF; color: #fff; }
.necrons       { background: #16A34A; color: #fff; }

/* ---------- RETRO LOUNGE PRICING ---------- */
.lounge-pricing {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--dark);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 40px;
  border-left: 5px solid var(--gold);
  flex-wrap: wrap;
}

.pricing-card {
  text-align: center;
  flex-shrink: 0;
}

.pricing-amount {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.pricing-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.pricing-how {
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 32px;
  flex: 1;
  min-width: 200px;
}

.pricing-how h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.pricing-how ol {
  list-style: decimal;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pricing-how ol li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ---------- GROUP PRICING ---------- */
.group-pricing {
  margin-bottom: 40px;
}

.group-pricing h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.group-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.group-card {
  flex: 1;
  min-width: 160px;
  max-width: 240px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  position: relative;
}

.group-card-best {
  border-top-color: var(--teal-dark);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
}

.group-best-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

.group-size {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.group-price {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.group-regular {
  font-size: 0.8rem;
  color: #999;
  text-decoration: line-through;
  margin-top: 4px;
}

.group-savings {
  display: inline-block;
  margin-top: 8px;
  background: #dcfce7;
  color: #16a34a;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 50px;
}

.group-note {
  font-size: 0.88rem;
  color: #666;
  font-style: italic;
}

/* ---------- RETRO GAMING ---------- */
.console-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.console-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  border-bottom: 4px solid var(--gold);
  transition: transform 0.2s;
}

.console-card:hover { transform: translateY(-5px); }

.console-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.console-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.console-logo img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.console-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.console-card li {
  font-size: 0.92rem;
  padding: 5px 0;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
}

.console-card li:last-child { border-bottom: none; }

.tournament-callout {
  background: linear-gradient(135deg, var(--dark) 0%, #3A3A3A 100%);
  color: var(--off-white);
  border-radius: var(--radius);
  padding: 32px 36px;
  text-align: center;
  border-left: 5px solid var(--gold);
}

.tournament-callout h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--gold);
}

.tournament-callout p { font-size: 1rem; line-height: 1.6; }
.tournament-callout a { color: var(--teal); font-weight: 700; }
.tournament-callout a:hover { text-decoration: underline; }

/* ---------- EVENTS ---------- */
.events-container {
  max-width: 800px;
  margin: 0 auto;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.event-item {
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  transition: transform 0.15s;
}

.event-item:hover { transform: translateX(4px); }

.event-date {
  min-width: 64px;
  text-align: center;
  background: var(--dark);
  color: var(--gold);
  border-radius: 10px;
  padding: 10px 8px;
  flex-shrink: 0;
}

.event-date .month {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
}

.event-date .day {
  font-family: var(--font-head);
  font-size: 1.8rem;
  line-height: 1;
  display: block;
}

.event-info h4 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.event-info p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
}

.event-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 6px;
}

.tag-tcg      { background: #FBBF24; color: #1A1A1A; }
.tag-retro    { background: #6366F1; color: #fff; }
.tag-warhammer{ background: #EF4444; color: #fff; }
.tag-community{ background: #10B981; color: #fff; }
.tag-special  { background: #D4A847; color: #1A1A1A; }

.calendar-note {
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.contact-block h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-block p,
.contact-block a {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
}

.contact-block a:hover { color: var(--teal); }

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.social-btn {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--off-white) !important;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s;
}

.social-btn:hover { background: var(--gold); color: var(--dark) !important; }

.social-btn-instagram {
  background: linear-gradient(45deg, #833AB4, #C13584, #E1306C, #FD1D1D) !important;
  border-color: transparent !important;
  color: #fff !important;
}
.social-btn-instagram:hover {
  filter: brightness(1.15);
  background: linear-gradient(45deg, #833AB4, #C13584, #E1306C, #FD1D1D) !important;
  color: #fff !important;
}

.social-btn-tcg {
  background: #0078d4 !important;
  border-color: transparent !important;
  color: #fff !important;
}
.social-btn-tcg:hover {
  background: #005ea2 !important;
  color: #fff !important;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark);
  border-top: 2px solid var(--gold);
  padding: 36px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin: 0 auto 16px;
  border-radius: 6px;
}

.footer p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.footer a { color: var(--teal); }
.footer a:hover { text-decoration: underline; }

.footer-copy {
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35) !important;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

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

  .nav-links a {
    padding: 12px 28px;
    width: 100%;
  }

  .nav-links a::after { display: none; }

  .nav-toggle { display: block; }

  .hero { padding: 90px 20px 50px; }
  .section { padding: 60px 20px; }

  .strip-items {
    animation-duration: 20s;
  }

  .card-grid,
  .feature-grid,
  .console-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .card-grid,
  .feature-grid,
  .console-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo { width: 90vw; }

  .event-item { flex-direction: column; align-items: flex-start; }

  .contact-block { flex-direction: column; gap: 8px; }
}
