/* ============================================================
   MIGHTY CLASH ARCADE — styles.css
   Design: Neo-Brutalist | Yellow #FACC15 + Black #111 + White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary:        #FACC15;
  --primary-dark:   #EAB308;
  --primary-light:  #FEF3C7;
  --accent:         #EF4444;
  --accent-dark:    #DC2626;
  --bg:             #FFFFFF;
  --surface:        #F5F5F5;
  --text:           #111111;
  --text-muted:     #6B7280;
  --border:         #111111;
  --border-width:   3px;
  --shadow:         4px 4px 0 #111;
  --shadow-hover:   6px 6px 0 #111;
  --radius-btn:     4px;
  --radius-card:    0px;
  --radius-input:   0px;
  --font:           'Sora', sans-serif;
  --max-w:          1140px;
  --base-fs:        17px;
  --section-py:     72px;
  --spacing:        16px;
  --transition:     all 0.15s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: var(--base-fs);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul { list-style: none; }

/* ── Utilities ──────────────────────────────────────────────── */
.mc-wrap {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--spacing);
}

.mc-section {
  padding-block: var(--section-py);
}

.mc-heading {
  margin-bottom: 48px;
}

.mc-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.mc-heading p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 10px;
  max-width: 560px;
}

.mc-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: var(--border-width) solid var(--border);
  margin-bottom: 12px;
}

.mc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.mc-gradient-text {
  background: linear-gradient(90deg, #111 0%, #6B7280 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Scroll Reveal ──────────────────────────────────────────── */
.mc-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mc-reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ────────────────────────────────────────────────── */
.mc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

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

.mc-btn-primary {
  background: var(--primary);
  color: var(--text);
  box-shadow: var(--shadow);
}

.mc-btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-hover);
}

.mc-btn-secondary {
  background: var(--text);
  color: #fff;
  box-shadow: var(--shadow);
}

.mc-btn-secondary:hover {
  background: #333;
  box-shadow: var(--shadow-hover);
}

.mc-btn-outline {
  background: transparent;
  color: var(--text);
  box-shadow: var(--shadow);
}

.mc-btn-outline:hover {
  background: var(--surface);
  box-shadow: var(--shadow-hover);
}

.mc-btn-glow {
  background: var(--primary);
  color: var(--text);
  box-shadow: var(--shadow), 0 0 0 4px var(--primary-light);
}

.mc-btn-glow:hover {
  box-shadow: var(--shadow-hover), 0 0 0 6px var(--primary-light);
}

.mc-btn-lg {
  font-size: 1.05rem;
  padding: 16px 36px;
}

/* ── Header ─────────────────────────────────────────────────── */
.mc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: var(--border-width) solid var(--border);
}

.mc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.mc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.mc-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border: var(--border-width) solid var(--border);
  font-size: 1.1rem;
  box-shadow: 2px 2px 0 var(--border);
  flex-shrink: 0;
}

.mc-nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mc-nav-desktop a {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 14px;
  border: 2px solid transparent;
  border-radius: var(--radius-btn);
  color: var(--text);
  transition: var(--transition);
}

.mc-nav-desktop a:hover,
.mc-nav-desktop a.active {
  background: var(--primary);
  border-color: var(--border);
  box-shadow: 2px 2px 0 var(--border);
}

.mc-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: var(--border-width) solid var(--border);
  padding: 9px 10px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--border);
}

.mc-nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text);
  transition: var(--transition);
}

/* Mobile Nav Overlay */
.mc-nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--primary);
  border: var(--border-width) solid var(--border);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mc-nav-mobile.open {
  display: flex;
}

.mc-nav-mobile a {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  padding: 14px 32px;
  border: var(--border-width) solid var(--border);
  width: min(400px, 90vw);
  text-align: center;
  background: var(--bg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.mc-nav-mobile a:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.mc-nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--text);
  color: #fff;
  border: none;
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius-btn);
}

/* ── Age Modal ──────────────────────────────────────────────── */
#ageModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(17,17,17,0.9);
  align-items: center;
  justify-content: center;
  padding: var(--spacing);
}

#ageModal.show {
  display: flex;
}

.mc-modal-box {
  background: var(--bg);
  border: var(--border-width) solid var(--border);
  box-shadow: 8px 8px 0 var(--border);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.mc-modal-box .mc-logo-icon {
  margin-inline: auto;
  width: 56px;
  height: 56px;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.mc-modal-box h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.mc-modal-box p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.mc-modal-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Cookie Banner ──────────────────────────────────────────── */
#cookieBanner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--text);
  color: #fff;
  border-top: var(--border-width) solid var(--border);
  padding: 16px var(--spacing);
}

#cookieBanner.show {
  display: block;
}

.mc-cookie-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.mc-cookie-inner p {
  font-size: 0.88rem;
  color: #d1d5db;
  flex: 1;
  min-width: 200px;
}

.mc-cookie-inner a {
  color: var(--primary);
  text-decoration: underline;
}

.mc-cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ── Hero ───────────────────────────────────────────────────── */
.mc-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  border-bottom: var(--border-width) solid var(--border);
  position: relative;
  overflow: hidden;
}

.mc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(17,17,17,0.04) 39px, rgba(17,17,17,0.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(17,17,17,0.04) 39px, rgba(17,17,17,0.04) 40px);
  pointer-events: none;
}

.mc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.mc-hero-text {
  max-width: 560px;
}

.mc-hero-text h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.mc-hero-text h1 em {
  font-style: normal;
  background: var(--primary);
  padding: 0 6px;
  border: var(--border-width) solid var(--border);
  box-shadow: 3px 3px 0 var(--border);
  display: inline-block;
}

.mc-hero-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.65;
}

.mc-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.mc-hero-visual {
  position: relative;
}

.mc-hero-preview {
  background: var(--surface);
  border: var(--border-width) solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}

.mc-hero-preview-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--primary-light);
  padding: 24px;
  text-align: center;
}

.mc-hero-preview-icon {
  font-size: 4rem;
  line-height: 1;
}

.mc-hero-preview h3 {
  font-size: 1.25rem;
  font-weight: 800;
}

.mc-hero-preview p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.mc-hero-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border: var(--border-width) solid var(--border);
  box-shadow: 2px 2px 0 var(--border);
}

/* Scroll indicator */
.mc-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  z-index: 2;
}

.mc-scroll-arrow {
  width: 32px;
  height: 32px;
  border: var(--border-width) solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounceDown 1.4s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ── Features ───────────────────────────────────────────────── */
.mc-features-bg {
  background: var(--surface);
  border-top: var(--border-width) solid var(--border);
  border-bottom: var(--border-width) solid var(--border);
}

.mc-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mc-feature-card {
  background: var(--bg);
  border: var(--border-width) solid var(--border);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-radius: var(--radius-card);
}

.mc-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.mc-feature-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border: var(--border-width) solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  box-shadow: 2px 2px 0 var(--border);
}

.mc-feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.mc-feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Game Section ───────────────────────────────────────────── */
.mc-game-bg {
  background: var(--text);
  border-top: var(--border-width) solid var(--border);
  border-bottom: var(--border-width) solid var(--border);
}

.mc-game-bg .mc-heading h2 {
  color: #fff;
}

.mc-game-bg .mc-heading p {
  color: #9ca3af;
}

.mc-game-bg .mc-tag {
  background: var(--primary);
  color: var(--text);
}

.mc-game-container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.mc-game-card {
  border: var(--border-width) solid #444;
  box-shadow: var(--shadow);
  overflow: hidden;
  background: #000;
}

.mc-game-frame {
  position: relative;
  background: #000;
}

.mc-game-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  border: none;
}

.mc-game-fullscreen {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background: rgba(17,17,17,0.85);
  color: #fff;
  border: 2px solid #555;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  border-radius: 2px;
}

.mc-game-fullscreen:hover {
  background: var(--primary);
  color: var(--text);
  border-color: var(--text);
}

.mc-game-details {
  color: #fff;
}

.mc-game-details h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}

.mc-game-details p {
  font-size: 0.92rem;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 16px;
}

.mc-game-warning {
  background: rgba(239,68,68,0.12);
  border: 2px solid var(--accent);
  padding: 14px 16px;
  margin-top: 20px;
  font-size: 0.82rem;
  color: #fca5a5;
  line-height: 1.6;
}

.mc-game-warning strong {
  color: #ef4444;
  display: block;
  margin-bottom: 4px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── How It Works ───────────────────────────────────────────── */
.mc-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mc-step-card {
  background: var(--bg);
  border: var(--border-width) solid var(--border);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.mc-step-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.mc-step-num {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border: var(--border-width) solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 2px 2px 0 var(--border);
}

.mc-step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.mc-step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Stats ──────────────────────────────────────────────────── */
.mc-stats-bg {
  background: var(--primary);
  border-top: var(--border-width) solid var(--border);
  border-bottom: var(--border-width) solid var(--border);
}

.mc-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.mc-stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: var(--border-width) solid var(--border);
}

.mc-stat-item:last-child {
  border-right: none;
}

.mc-stat-num {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 6px;
}

.mc-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.mc-faq-bg {
  background: var(--surface);
  border-top: var(--border-width) solid var(--border);
  border-bottom: var(--border-width) solid var(--border);
}

.mc-faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mc-faq-item {
  border: var(--border-width) solid var(--border);
  background: var(--bg);
  margin-top: -3px;
}

.mc-faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  gap: 12px;
  transition: var(--transition);
}

.mc-faq-toggle:hover {
  background: var(--primary-light);
}

.mc-faq-item.open .mc-faq-toggle {
  background: var(--primary);
}

.mc-faq-chevron {
  font-style: normal;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  line-height: 1;
}

.mc-faq-item.open .mc-faq-chevron {
  transform: rotate(180deg);
}

.mc-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mc-faq-item.open .mc-faq-body {
  max-height: 600px;
}

.mc-faq-text {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: var(--border-width) solid var(--border);
  padding-top: 16px;
}

/* ── Article ────────────────────────────────────────────────── */
.mc-article-bg {
  border-top: var(--border-width) solid var(--border);
  border-bottom: var(--border-width) solid var(--border);
}

.mc-article-body {
  max-width: 760px;
  margin-inline: auto;
}

.mc-article-body h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 28px 0 10px;
}

.mc-article-body p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.mc-article-body p:first-child {
  margin-top: 0;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.mc-cta-section {
  background: var(--primary);
  border-top: var(--border-width) solid var(--border);
  border-bottom: var(--border-width) solid var(--border);
  text-align: center;
  padding-block: var(--section-py);
}

.mc-cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.15;
}

.mc-cta-section p {
  font-size: 1.05rem;
  color: var(--text);
  opacity: 0.75;
  margin-bottom: 32px;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 32px;
}

.mc-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ─────────────────────────────────────────────────── */
.mc-footer {
  background: var(--text);
  color: #fff;
  border-top: var(--border-width) solid var(--border);
}

.mc-footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-block: 56px;
}

.mc-footer-brand .mc-logo {
  color: #fff;
  margin-bottom: 14px;
}

.mc-footer-brand .mc-logo-icon {
  background: var(--primary);
}

.mc-footer-brand p {
  font-size: 0.88rem;
  color: #9ca3af;
  line-height: 1.65;
  margin-bottom: 12px;
  max-width: 260px;
}

.mc-footer-brand .mc-maple {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  border: 2px solid var(--primary);
  display: inline-block;
  padding: 4px 10px;
}

.mc-footer-links h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #333;
}

.mc-footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mc-footer-links a {
  font-size: 0.9rem;
  color: #9ca3af;
  transition: var(--transition);
}

.mc-footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.mc-footer-bottom {
  border-top: var(--border-width) solid #333;
  padding-block: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.mc-footer-bottom p {
  font-size: 0.82rem;
  color: #6b7280;
}

.mc-footer-disclaimer {
  font-size: 0.8rem;
  color: #4b5563;
  max-width: 600px;
  text-align: right;
  line-height: 1.5;
}

.mc-footer-age {
  display: inline-block;
  background: var(--primary);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border: 2px solid var(--text);
  margin-top: 6px;
}

/* ── Toast ──────────────────────────────────────────────────── */
.mc-toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.mc-toast {
  background: var(--text);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 20px;
  border: var(--border-width) solid var(--border);
  box-shadow: var(--shadow);
  min-width: 260px;
  max-width: 340px;
  pointer-events: all;
  animation: toastIn 0.2s ease forwards;
  border-left: 5px solid var(--primary);
}

.mc-toast.error {
  border-left-color: var(--accent);
}

.mc-toast.success {
  border-left-color: #22c55e;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Contact Form ───────────────────────────────────────────── */
.mc-contact-form {
  max-width: 640px;
  margin-inline: auto;
}

.mc-form-group {
  margin-bottom: 20px;
}

.mc-form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}

.mc-form-group input,
.mc-form-group select,
.mc-form-group textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 0.97rem;
  color: var(--text);
  background: var(--bg);
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius-input);
  padding: 12px 16px;
  outline: none;
  transition: var(--transition);
  box-shadow: 2px 2px 0 var(--border);
}

.mc-form-group input:focus,
.mc-form-group select:focus,
.mc-form-group textarea:focus {
  border-color: var(--primary-dark);
  box-shadow: 4px 4px 0 var(--border);
}

.mc-form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ── Game Page Specific ─────────────────────────────────────── */
.mc-game-page-hero {
  background: var(--text);
  border-bottom: var(--border-width) solid var(--border);
  padding-block: 48px 0;
  color: #fff;
}

.mc-game-page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.mc-game-page-hero p {
  color: #9ca3af;
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 580px;
}

.mc-game-full-frame {
  border: var(--border-width) solid #444;
  box-shadow: var(--shadow);
  overflow: hidden;
  background: #000;
  margin-top: 32px;
}

.mc-game-full-frame .mc-game-frame iframe {
  min-height: 650px;
}

.mc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 16px;
}

.mc-breadcrumb a {
  color: var(--primary);
  font-weight: 600;
}

.mc-breadcrumb span {
  opacity: 0.5;
}

/* ── Dividers ───────────────────────────────────────────────── */
.mc-divider {
  height: 0;
  border: none;
  border-top: var(--border-width) solid var(--border);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .mc-game-container {
    grid-template-columns: 1fr;
  }

  .mc-footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .mc-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .mc-stat-item:nth-child(2) {
    border-right: none;
  }

  .mc-stat-item:nth-child(3) {
    border-right: var(--border-width) solid var(--border);
    border-top: var(--border-width) solid var(--border);
  }

  .mc-stat-item:nth-child(4) {
    border-right: none;
    border-top: var(--border-width) solid var(--border);
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 48px;
  }

  .mc-nav-desktop {
    display: none;
  }

  .mc-nav-toggle {
    display: flex;
  }

  .mc-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mc-hero-visual {
    display: none;
  }

  .mc-hero-text h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .mc-features-grid,
  .mc-steps-grid {
    grid-template-columns: 1fr;
  }

  .mc-footer-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mc-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .mc-footer-disclaimer {
    text-align: left;
  }

  .mc-stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .mc-game-full-frame .mc-game-frame iframe {
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .mc-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .mc-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .mc-modal-btns {
    flex-direction: column;
  }

  .mc-stats-row {
    grid-template-columns: 1fr;
  }

  .mc-stat-item {
    border-right: none;
    border-bottom: var(--border-width) solid var(--border);
  }

  .mc-stat-item:last-child {
    border-bottom: none;
  }
}

/* ── Fullscreen iframe fix ──────────────────────────────────── */
.mc-game-frame:fullscreen,
.mc-game-frame:-webkit-full-screen,
.mc-game-frame:-moz-full-screen {
  background: #000;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mc-game-frame:fullscreen iframe,
.mc-game-frame:-webkit-full-screen iframe {
  width: 100%;
  height: 100%;
  min-height: unset;
}
