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

/* ── Variables ── */

:root {
  --bg:           #f4f6f9;
  --bg-card:      #ffffff;
  --bg-elevated:  #eaecf2;
  --text:         #0d1117;
  --text-muted:   #64748b;
  --accent:       #0F2744;
  --accent-mid:   #1a4a7a;
  --accent-light: #1d5fa8;
  --red:          #ff3b30;
  --border:       #dde1ea;
  --success:      #16a34a;
  --error:        #dc2626;
}

/* ── Reset ── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

a { color: var(--accent-light); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ── Layout ── */

.container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }
section + section { border-top: 1px solid var(--border); }

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 8px;
  max-width: 580px;
}

/* ── Header: 2-row centered ── */

header {
  background: var(--accent);
  border-bottom: 1px solid rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 20px 12px;
  gap: 10px;
}

.logo img {
  height: 51px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
nav a:hover { color: #fff; background: rgba(255,255,255,0.1); text-decoration: none; }

/* ── Hero ── */

.hero {
  padding: 80px 0 72px;
  text-align: center;
  background:
    linear-gradient(rgba(15, 39, 68, 0.82), rgba(15, 39, 68, 0.82)),
    url('/images/records.jpeg') center/cover no-repeat;
  color: #fff;
}

.hero h1 {
  font-size: clamp(52px, 10vw, 96px);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.0;
}

.hero-event-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: none;
}

.hero-event-dot {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* Hero — animate on page load */
.hero h1       { animation: fadeInUp 0.9s ease 0.08s both; }
.hero-subtitle { animation: fadeInUp 0.85s ease 0.28s both; }
.hero-actions  { animation: fadeInUp 0.8s ease 0.50s both; }

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
  font-family: inherit;
  white-space: nowrap;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: scale(0.97); box-shadow: none; }

.btn-primary  { background: #fff; color: var(--accent); }
.btn-outline  { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.btn-outline:hover { opacity: 1; background: rgba(255,255,255,0.1); }

.btn-hero-primary { background: var(--red); color: #fff; font-size: 15px; font-weight: 700; }
.btn-hero-primary:hover { opacity: 1; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,59,48,0.4); }

/* ── Stats + Social ── */

.stats-section {
  background: var(--bg-card);
  border-top: none !important;
  padding: 56px 0 48px;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  text-transform: uppercase;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

.stats-tagline {
  text-align: center;
  font-size: 15px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: color 0.15s, background 0.15s, border-color 0.15s, transform 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
  color: var(--accent);
  background: var(--bg-elevated);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  text-decoration: none;
}

.social-link svg { width: 18px; height: 18px; }

/* ── How It Works ── */

.how-it-works h2 {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

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

.how-it-works-cta {
  margin-top: 36px;
  text-align: center;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  border-color: rgba(15,39,68,0.22);
}

.step-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.step p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ── YouTube Section ── */

.yt-section {
  background: var(--accent);
  padding: 0;
  border-top: none !important;
}

.yt-section-logo {
  display: flex;
  justify-content: center;
  padding-top: 56px;
}

.yt-section-logo img {
  height: 80px;
  width: auto;
  border-radius: 6px;
}

.yt-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 0;
  padding: 80px 0 64px;
  align-items: center;
}

.yt-content {
  padding-right: 48px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.yt-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.yt-icon {
  width: 36px;
  height: 36px;
  color: var(--red);
  flex-shrink: 0;
}

.yt-logo-row h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.yt-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 340px;
}

.yt-btn {
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
}
.yt-btn:hover { opacity: 1; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,59,48,0.35); }

.yt-times {
  padding-left: 48px;
}

.yt-times-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.yt-times-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.yt-tz {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 16px;
}
.yt-tz:first-child { padding-left: 0; }

.yt-tz-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.yt-tz-day {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
}

.yt-tz-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
}

.yt-tz-ampm {
  font-size: 16px;
  font-weight: 700;
  vertical-align: middle;
}

.yt-tz-city {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
  display: block;
}

.yt-tz-zone {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  display: block;
}

.yt-tagline {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  padding: 20px 0 52px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── Rules ── */

.rules h2 {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.rules .section-sub { margin-bottom: 32px; }

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

.rule-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.rule-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  border-color: rgba(15,39,68,0.22);
}

.rule-icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.rule-icon svg { width: 100%; height: 100%; }

.rule-card h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.rule-card p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

.rule-link {
  display: block;
  margin-top: 8px;
  color: var(--accent-light);
  text-decoration: underline;
  font-size: 12px;
  white-space: nowrap;
}
.rule-link:hover { color: var(--accent); }

/* ── Submit Section ── */

.submit-section { background: var(--bg); }

.submit-header { margin-bottom: 32px; }

.submit-header h2 {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

/* Two-column layout: form (left) + meta boxes (right) */
.submit-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 24px;
  align-items: start;
}

.submit-form-col { min-width: 0; }

.submit-meta-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Meta boxes */
.meta-box {
  background: var(--accent);
  border-radius: 8px;
  padding: 22px 20px;
  color: #fff;
}

.meta-box-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
  display: block;
}

.meta-countdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.meta-countdown-grid .countdown-unit {
  text-align: center;
  background: rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 10px 6px 8px;
}

.meta-countdown-grid .countdown-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
  min-width: 0;
}

.meta-countdown-grid .countdown-unit-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-top: 4px;
}

.meta-count {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  text-align: center;
  display: block;
}

/* Event badge */
.event-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.event-badge.closed { background: var(--bg-elevated); color: var(--text-muted); }

/* Form */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
}

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

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"] {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.form-group input:focus { border-color: var(--accent-light); }

/* Drop zone */
.drop-zone {
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 36px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
  background: var(--bg);
}

.drop-zone:hover, .drop-zone.dragover {
  border-color: var(--accent-light);
  background: #eef4fb;
}

.drop-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.drop-zone-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin: 0 auto 12px;
  opacity: 0.5;
}
.drop-zone-icon svg { width: 100%; height: 100%; }

.drop-zone-text { font-size: 14px; color: var(--text-muted); margin-bottom: 4px; }
.drop-zone-hint { font-size: 12px; color: var(--text-muted); opacity: 0.65; }
.drop-zone-filename { font-size: 13px; font-weight: 600; color: var(--accent-light); margin-top: 10px; }

.form-submit { margin-top: 24px; }

.btn-submit {
  width: 100%;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 16px;
  border: none;
}
.btn-submit:hover { opacity: 1; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,59,48,0.35); }
.btn-submit:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

.form-message {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 5px;
  font-size: 14px;
  display: none;
}
.form-message.error   { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; display: block; }
.form-message.success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; display: block; }

/* Closed state — 3-card grid */
.closed-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.closed-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.closed-card-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.closed-card-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.closed-show-times {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
  flex: 1;
}

.closed-show-times span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

.closed-show-times strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.closed-action-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-light);
  text-decoration: underline;
  white-space: nowrap;
  align-self: flex-start;
}
.closed-action-link:hover { color: var(--accent); }

/* Hero pill — closed variant */
.hero-event-pill.closed-pill {
  background: rgba(255,255,255,0.18);
}
.hero-event-pill.closed-pill .hero-event-dot {
  animation: none;
  opacity: 0.5;
}

/* ── Footer ── */

footer {
  background: var(--accent);
  border-top: 1px solid rgba(0,0,0,0.2);
  padding: 36px 0;
  text-align: center;
}
footer p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ── Success Modal ── */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  animation: modal-fade 0.2s ease;
}

@keyframes modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-box {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 48px 36px 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  animation: modal-up 0.25s ease;
}

@keyframes modal-up {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.modal-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--success);
  margin-bottom: 16px;
}

.modal-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 88px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.modal-heading {
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.modal-detail {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.modal-actions { display: flex; flex-direction: column; gap: 10px; }

.btn-modal-primary {
  width: 100%;
  background: var(--accent);
  color: #fff;
  padding: 13px;
  font-size: 14px;
}

.btn-modal-outline {
  width: 100%;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 13px;
  font-size: 14px;
}

/* ── Watch Video Button ── */

.btn-video {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.btn-video:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  opacity: 1;
  transform: translateY(-1px);
}

/* ── Video Modal ── */

.video-modal-box {
  position: relative;
  width: 100%;
  max-width: 820px;
  animation: modal-up 0.25s ease;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.15s;
}
.video-modal-close:hover { color: #fff; }

.video-ratio {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}

.video-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Scroll Animations ── */

body.js-ready .anim {
  opacity: 0;
  transition: opacity 0.8s ease;
}

body.js-ready .anim.is-visible {
  opacity: 1;
}

/* Stagger delays for grid items */
body.js-ready .steps .step.anim:nth-child(2)        { transition-delay: 0.07s; }
body.js-ready .steps .step.anim:nth-child(3)        { transition-delay: 0.14s; }
body.js-ready .steps .step.anim:nth-child(4)        { transition-delay: 0.21s; }
body.js-ready .rules-grid .rule-card.anim:nth-child(2) { transition-delay: 0.07s; }
body.js-ready .rules-grid .rule-card.anim:nth-child(3) { transition-delay: 0.14s; }
body.js-ready .rules-grid .rule-card.anim:nth-child(4) { transition-delay: 0.21s; }
body.js-ready .rules-grid .rule-card.anim:nth-child(5) { transition-delay: 0.28s; }
body.js-ready .rules-grid .rule-card.anim:nth-child(6) { transition-delay: 0.35s; }

/* ── Reduced Motion ── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-delay: 0ms !important;
  }
}

/* ── Utilities ── */

.hidden { display: none !important; }

/* ── Responsive: Tablet (768px) ── */

@media (max-width: 768px) {
  section { padding: 60px 0; }

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

  .stat-value { font-size: clamp(36px, 8vw, 56px); }

  .yt-inner {
    grid-template-columns: 1fr;
    padding: 64px 0 52px;
    gap: 36px;
  }

  .yt-content {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 36px;
    text-align: center;
    align-items: center;
  }

  .yt-logo-row { justify-content: center; }

  .yt-desc { margin-left: auto; margin-right: auto; }

  .yt-times {
    padding-left: 0;
    text-align: center;
  }

  .yt-times-label { text-align: center; }

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

  .closed-cards { grid-template-columns: repeat(2, 1fr); }

  .submit-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .submit-meta-col {
    flex-direction: row;
    gap: 16px;
  }

  .submit-meta-col .meta-box { flex: 1; }
}

/* ── Responsive: Mobile (480px) ── */

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 52px 0; }

  header .container { padding: 12px 16px 10px; }
  nav a { padding: 5px 8px; font-size: 12px; }

  .hero { padding: 64px 0 52px; }
  .hero h1 { font-size: clamp(44px, 13vw, 72px); }
  .hero-subtitle { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }

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

  .stats-row { flex-direction: column; gap: 28px; }
  .stat-divider { width: 60px; height: 1px; }
  .stat-item { padding: 0; }

  .yt-inner { padding: 52px 0 44px; }
  .yt-times-grid { flex-direction: column; gap: 0; }
  .yt-tz { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .yt-tz:last-child { border-bottom: none; }
  .yt-tz-divider { display: none; }
  .yt-tz-time { font-size: 28px; }
  .yt-tagline { font-size: 10px; letter-spacing: 0.08em; padding: 16px 0 44px; }

  .rules-grid { grid-template-columns: 1fr; }

  .closed-cards { grid-template-columns: 1fr; }

  .submit-meta-col {
    flex-direction: column;
    gap: 12px;
  }

  .meta-count { font-size: 56px; }

  .form-card { padding: 24px 18px; }

  .modal-box { padding: 36px 24px 28px; }
  .modal-number { font-size: 72px; }
}
