/* ─── Variables ─── */
:root {
  --black: #0D0D0D;
  --yellow: #FDDA24;
  --red: #EF3340;
  --white: #FFFFFF;
  --off-white: #F7F5F0;
  --gray: #6B6B6B;
  --light-gray: #E8E8E8;
  --border: #D4D4D4;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-sm: 8px;
}

/* ─── Devil icon: shift purple emoji hue to red ─── */
.devil-icon { display: inline-block; filter: hue-rotate(90deg) saturate(1.8) brightness(1.05); }

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--off-white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

/* ─── Slogan Ticker ─── */
.slogan-ticker {
  background: var(--yellow);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
}
.ticker-track {
  display: inline-block;
  animation: ticker 22s linear infinite;
  font-family: 'Bebas Neue', cursive;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--black);
}
.ticker-track span { padding: 0 16px; }
.ticker-sep { opacity: 0.7; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Language Bar ─── */
.lang-bar {
  background: var(--black);
  padding: 6px 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}
.lang-btn {
  background: transparent;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
  transition: all 0.2s;
}
.lang-btn.active {
  background: var(--yellow);
  color: var(--black);
}
.lang-btn:hover:not(.active) { color: #ff6b6b; }

/* ─── Header ─── */
.site-header {
  background: var(--black);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-flag {
  display: flex;
  height: 32px;
  width: 22px;
  border-radius: 3px;
  overflow: hidden;
}
.logo-flag span {
  flex: 1;
}
.logo-flag .f-black { background: #0D0D0D; border: 1px solid #333; }
.logo-flag .f-yellow { background: var(--yellow); }
.logo-flag .f-red { background: var(--red); }
.logo-text {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.05em;
}
.logo-text span { color: var(--yellow); }
.header-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.header-nav a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--yellow); }

/* ─── Ad Zones ─── */
.ad-zone {
  background: var(--black);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2), 0 0 15px rgba(253,218,36,0.1);
}
.ad-zone:hover {
  border-color: var(--red);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25), 0 0 20px rgba(239,51,64,0.25);
}
.ad-zone::before {
  content: 'ADVERTENTIE';
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 8px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
}
.ad-zone-leaderboard {
  width: 100%;
  max-width: 728px;
  height: 90px;
  margin: 0 auto;
}
.ad-zone-rect {
  width: 300px;
  height: 250px;
  flex-shrink: 0;
}
.ad-zone-banner {
  width: 100%;
  height: 80px;
}
.ad-zone svg { opacity: 0.25; }

.ad-strip {
  padding: 16px 24px;
  display: flex;
  justify-content: center;
}

/* ─── Hero ─── */
.hero {
  background: var(--red);
  position: relative;
  overflow: hidden;
  padding: 72px 24px 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 28px,
    rgba(0,0,0,0.06) 28px,
    rgba(0,0,0,0.06) 30px
  );
  pointer-events: none;
}
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(52px, 9vw, 96px);
  color: #fff;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
  margin-bottom: 16px;
}
.hero h1 em {
  color: var(--yellow);
  font-style: normal;
}
.hero-sub {
  font-size: 18px;
  color: #fff;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 32px;
}
/* Mockup player portraits in hero */
.hero-mockups {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 200px;
  padding: 16px 0;
  pointer-events: none;
}
.hero-mockups-left { left: 24px; }
.hero-mockups-right { right: 24px; }
.hero-mockup-img {
  width: 100%;
  height: 0;
  flex: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  filter: brightness(0.92) saturate(1.1);
  max-height: 210px;
}
@media (max-width: 1100px) {
  .hero-mockups { width: 140px; }
}
@media (max-width: 860px) {
  .hero-mockups { display: none; }
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--yellow);
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  letter-spacing: 0.06em;
  padding: 14px 36px;
  border-radius: 40px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 40px;
  color: var(--yellow);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: #fff;
  opacity: 0.8;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── Belgian stripe accent ─── */
.stripe-accent {
  height: 6px;
  background: linear-gradient(90deg, var(--black) 33.3%, var(--yellow) 33.3% 66.6%, var(--red) 66.6%);
}

/* ─── Main Content ─── */
.main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 32px;
  align-items: start;
}

/* ─── Section titles ─── */
.section-title {
  font-size: 36px;
  margin-bottom: 8px;
}
.section-subtitle {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 28px;
}

/* ─── Upload Card ─── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  margin-bottom: 24px;
}

/* ── Upload card: black bg, yellow/white text ── */
#upload-card {
  background: var(--black);
}
#upload-card .section-title {
  color: var(--yellow);
}
#upload-card .section-subtitle {
  color: rgba(255,255,255,0.65);
}
#upload-card .upload-zone {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
}
#upload-card .upload-zone:hover,
#upload-card .upload-zone.drag-over {
  border-color: var(--yellow);
  background: rgba(253,218,36,0.08);
}
#upload-card .upload-title { color: #fff; }
#upload-card .upload-hint { color: rgba(255,255,255,0.5); }
#upload-card .upload-hint strong { color: var(--yellow); }
#upload-card .upload-icon { color: var(--black); }

/* ── Style picker card: yellow bg, black text ── */
#style-card {
  background: var(--yellow);
}
#style-card .section-title,
#style-card .section-subtitle { color: var(--black); }
#style-card .style-card {
  background: #fff;
  border-color: rgba(0,0,0,0.12);
}
#style-card .style-card:hover {
  border-color: var(--black);
  background: #fff;
}
#style-card .style-card.selected {
  border-color: var(--black);
  background: var(--black);
  color: var(--yellow);
}
#style-card .style-card.selected .style-label { color: var(--yellow); }
#style-card .style-card.selected .style-desc { color: rgba(253,218,36,0.7); }

/* ── Generate card: red bg, black button ── */
#generate-card {
  background: var(--red);
}
#generate-card .btn-generate {
  background: var(--black);
  color: var(--yellow);
}
#generate-card .btn-generate:hover:not(:disabled) {
  background: #1a1a1a;
  color: var(--yellow);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.upload-zone {
  border: 3px dashed var(--border);
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  background: var(--off-white);
}
.upload-zone:hover, .upload-zone.drag-over {
  border-color: var(--yellow);
  background: #fffbea;
}
.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.upload-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.upload-icon svg { width: 24px; height: 24px; }
.upload-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  margin-bottom: 6px;
}
.upload-hint { font-size: 13px; color: var(--gray); }
.upload-hint strong { color: var(--black); }

.preview-container {
  display: none;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.preview-container img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.preview-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.preview-remove:hover { background: var(--red); }

/* ─── Style Selector ─── */
.style-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.style-card {
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--off-white);
  position: relative;
}
.style-card:hover {
  border-color: var(--yellow);
  background: #fffbea;
}
.style-card.selected {
  border-color: var(--black);
  background: var(--yellow);
}
.style-card.selected .style-check { opacity: 1; }
.style-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.style-check svg { width: 12px; height: 12px; stroke: var(--yellow); }
.style-emoji { font-size: 36px; margin-bottom: 8px; }
.style-label {
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  margin-bottom: 4px;
}
.style-desc { font-size: 12px; color: var(--gray); }
.style-card.selected .style-desc { color: rgba(0,0,0,0.6); }

/* ─── Generate Button ─── */
.btn-generate {
  width: 100%;
  background: var(--black);
  color: var(--yellow);
  font-family: 'Bebas Neue', cursive;
  font-size: 24px;
  letter-spacing: 0.06em;
  padding: 18px 24px;
  border-radius: var(--radius);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-generate:hover:not(:disabled) {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(239,51,64,0.35);
}
.btn-generate:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.btn-generate .spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(253,218,36,0.3);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn-generate.loading .spinner { display: block; }
.btn-generate.loading .btn-text { opacity: 0.7; }

/* ─── Loading Overlay ─── */
.loading-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,0.85);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.loading-overlay.visible { display: flex; }
.loading-ball {
  font-size: 64px;
  line-height: 1;
  animation: bounce 1s ease-in-out infinite;
}
.loading-text {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  color: var(--yellow);
  letter-spacing: 0.06em;
}
.progress-bar-wrap {
  width: 260px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 99px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--yellow);
  border-radius: 99px;
  transition: width 0.4s ease;
}
.loading-sub { color: rgba(255,255,255,0.55); font-size: 14px; }

/* ─── Result Card ─── */
.result-card {
  display: none;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.result-card.visible { display: block; }
.result-header {
  background: var(--black);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.result-header-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  color: var(--yellow);
  letter-spacing: 0.05em;
}
.result-body { padding: 24px; }
.result-image-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.result-image-wrap img {
  width: 100%;
  object-fit: cover;
}
.result-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--black);
  color: var(--yellow);
  font-family: 'Bebas Neue', cursive;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
}
.result-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-action {
  flex: 1;
  min-width: 120px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-download {
  background: var(--black);
  color: var(--yellow);
}
.btn-download:hover { background: #333; }
.btn-share-fb { background: #1877F2; color: white; }
.btn-share-fb:hover { background: #166fe5; }
.btn-share-wa { background: #25D366; color: white; }
.btn-share-wa:hover { background: #20bd5a; }
.btn-share-x { background: #000; color: white; border: 1px solid #333; }
.btn-share-x:hover { background: #222; }
.btn-share-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.btn-share-ig:hover { filter: brightness(1.1); }
.btn-retry {
  width: 100%;
  margin-top: 12px;
  background: var(--off-white);
  color: var(--black);
  border: 2px solid var(--border);
}
.btn-retry:hover { border-color: var(--black); background: var(--light-gray); }

/* ─── Sidebar ─── */
.sidebar { display: flex; flex-direction: column; gap: 24px; padding-top: 0; }
.sidebar-ad-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  text-align: center;
  margin-bottom: 6px;
}
.tips-card {
  background: var(--black);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--white);
}
.tips-card h3 {
  font-size: 22px;
  color: var(--yellow);
  margin-bottom: 16px;
}
.tips-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.tips-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
}
.tips-list li::before {
  content: '⚽';
  flex-shrink: 0;
  margin-top: 1px;
}
.history-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.history-card h3 { font-size: 22px; margin-bottom: 12px; }
.history-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.history-year {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Bebas Neue', cursive;
  font-size: 18px;
  padding: 2px 12px;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* ─── How it works ─── */
.how-section {
  background: var(--black);
  padding: 80px 24px;
}
.how-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.how-inner h2 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--yellow);
  margin-bottom: 10px;
}
.how-inner .section-subtitle {
  color: rgba(255,255,255,0.55);
  margin-bottom: 52px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
}
.step-num {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', cursive;
  font-size: 24px;
  margin: 0 auto 16px;
}
.step-icon { font-size: 32px; margin-bottom: 12px; }
.step-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}
.step-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.step-arrow {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--yellow);
  font-size: 24px;
  z-index: 1;
}
.step-card:last-child .step-arrow { display: none; }

/* ─── Gallery ─── */
.gallery-section {
  padding: 80px 24px;
  background: var(--off-white);
}
.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-inner h2 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 8px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--light-gray);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  flex-direction: column;
  gap: 8px;
  color: var(--gray);
  font-size: 13px;
  font-weight: 600;
}
.gallery-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.gallery-item-inner span:first-child { font-size: 48px; }

/* ─── Ad Mid Strip ─── */
.ad-mid-section {
  background: white;
  padding: 24px;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

/* ─── Privacy page ─── */
.privacy-section {
  padding: 56px 24px 80px;
  background: var(--white);
}
.privacy-inner {
  max-width: 720px;
  margin: 0 auto;
}
.privacy-page-title {
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 4px;
}
.privacy-meta {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 48px;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 24px;
}
.privacy-block {
  margin-bottom: 40px;
}
.privacy-block h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--light-gray);
}
.privacy-block p {
  font-size: 15px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 14px;
}
.privacy-block p:last-child { margin-bottom: 0; }
.privacy-block ol {
  padding-left: 20px;
  margin: 12px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.privacy-block ol li {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}
.privacy-block a {
  color: var(--red);
  text-decoration: underline;
}
.privacy-block a:hover { color: var(--black); }

/* ─── Footer ─── */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.45);
  padding: 40px 24px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand .logo-text { font-size: 18px; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 13px; line-height: 1.6; }
.footer-links h4 {
  font-family: 'Bebas Neue', cursive;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links ul li a {
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links ul li a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a:hover { color: var(--yellow); }

/* ─── Toast ─── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--black);
  color: var(--yellow);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
  z-index: 300;
  transition: transform 0.3s ease;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ─── Error state ─── */
.error-msg {
  display: none;
  background: #FFF0F0;
  border: 1px solid #FFB3B3;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--red);
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}
.error-msg.visible { display: block; }

.disclaimer {
  margin-top: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  text-align: center;
  line-height: 1.6;
}

/* ─── Animations ─── */
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .main-container { grid-template-columns: 220px 1fr 220px; gap: 20px; }
}
@media (max-width: 1024px) {
  .main-container { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding-top: 0; }
  .ad-zone-rect { width: 100%; height: 120px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .hero { padding: 48px 16px 56px; }
  .hero-stats { gap: 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .result-actions { flex-direction: column; }
  .ad-zone-leaderboard { height: 60px; font-size: 11px; }
}
@media (max-width: 480px) {
  .style-grid { grid-template-columns: 1fr 1fr; }
  .main-container { padding: 32px 16px; }
  .card { padding: 20px; }
}

/* ─── Ad Rotator ─── */
.ad-rotator { position: relative; }
.ad-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.ad-slide.active { opacity: 1; pointer-events: auto; }
.ad-slot-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: 40px;
  padding: 10px 24px;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.ad-slot-cta:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 16px rgba(239,51,64,0.35);
}
.ad-slot-num {
  background: var(--black);
  color: var(--yellow);
  font-family: 'Bebas Neue', cursive;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════
   SPONSORS STRIP (homepage bottom)
════════════════════════════════════════════════════ */
.sponsors-strip {
  background: var(--black);
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  min-height: 72px;
}
.sponsors-label {
  background: var(--yellow);
  color: var(--black);
  font-family: 'Bebas Neue', cursive;
  font-size: 15px;
  letter-spacing: 0.14em;
  padding: 0 28px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.sponsors-ticker-wrap {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.sponsors-track {
  display: inline-block;
  animation: sponsors-scroll 36s linear infinite;
}
@keyframes sponsors-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.sponsor-item {
  display: inline-flex;
  align-items: center;
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--white);
  padding: 0 36px;
}
.sponsor-item--empty {
  color: rgba(255,255,255,0.32);
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 4px;
  font-size: 16px;
  letter-spacing: 0.08em;
  padding: 7px 24px;
}
.sponsor-dot {
  color: var(--yellow);
  opacity: 0.4;
  font-size: 12px;
  padding: 0 6px;
}
.sponsors-cta-link {
  flex-shrink: 0;
  background: var(--red);
  color: var(--white);
  font-family: 'Bebas Neue', cursive;
  font-size: 16px;
  letter-spacing: 0.1em;
  padding: 0 32px;
  display: flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.sponsors-cta-link:hover { background: #c62a33; color: var(--white); }

/* ════════════════════════════════════════════════════
   ADVERTEER PAGE
════════════════════════════════════════════════════ */

/* Hero */
.adv-hero {
  background: var(--black);
  padding: 88px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.adv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 28px,
    rgba(255,255,255,0.02) 28px,
    rgba(255,255,255,0.02) 30px
  );
  pointer-events: none;
}
.adv-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}
.adv-hero h1 {
  font-size: clamp(44px, 8vw, 82px);
  color: var(--white);
  margin: 20px 0 24px;
}
.adv-hero h1 em { color: var(--yellow); font-style: normal; }
.adv-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.adv-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-adv-primary {
  background: var(--yellow);
  color: var(--black);
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  letter-spacing: 0.08em;
  padding: 15px 40px;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-adv-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
.btn-adv-secondary {
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-adv-secondary:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* Why section */
.adv-why {
  padding: 80px 24px;
  background: var(--off-white);
}
.adv-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.adv-section-title {
  font-size: clamp(32px, 5vw, 52px);
  text-align: center;
  margin-bottom: 48px;
}
.adv-section-title em { color: var(--red); font-style: normal; }
.adv-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.adv-why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.adv-why-icon { font-size: 42px; margin-bottom: 16px; display: block; }
.adv-why-card h3 { font-size: 22px; margin-bottom: 10px; }
.adv-why-card p { font-size: 14px; color: var(--gray); line-height: 1.75; }

/* Placement mockup */
.adv-placement { padding: 80px 24px; background: #fff; }
.adv-placement-inner { max-width: 860px; margin: 0 auto; }
.placement-mockup {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}
.pm-header {
  background: var(--black);
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 5px;
}
.pm-dot { width: 8px; height: 8px; border-radius: 50%; }
.pm-top-ad {
  background: rgba(239,51,64,0.07);
  border: 2px dashed var(--red);
  margin: 10px 14px;
  border-radius: 6px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pm-body {
  display: grid;
  grid-template-columns: 90px 1fr 90px;
  gap: 10px;
  padding: 10px 14px 18px;
}
.pm-sidebar-ad {
  background: rgba(239,51,64,0.07);
  border: 2px dashed var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 4px;
  line-height: 1.4;
}
.pm-content {
  background: var(--light-gray);
  border-radius: 6px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gray);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.placement-legend {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
}
.legend-dot { width: 12px; height: 12px; background: var(--red); border-radius: 2px; flex-shrink: 0; }

/* Packages */
.adv-packages { padding: 88px 24px; background: var(--off-white); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  align-items: start;
}
.package-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 28px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s;
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.package-card.featured {
  border-color: var(--yellow);
  background: var(--black);
  color: var(--white);
  padding-top: 52px;
}
.package-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  font-family: 'Bebas Neue', cursive;
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 4px 20px;
  border-radius: 20px;
  white-space: nowrap;
}
.package-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.package-card.featured .package-name { color: var(--yellow); }
.package-tagline {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.6;
}
.package-card.featured .package-tagline { color: rgba(255,255,255,0.55); }
.package-price {
  font-family: 'Bebas Neue', cursive;
  font-size: 52px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--red);
  margin-bottom: 2px;
}
.package-card.featured .package-price { color: var(--yellow); }
.package-price-note {
  font-size: 11px;
  color: var(--gray);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.package-card.featured .package-price-note { color: rgba(255,255,255,0.35); }

/* Two-tier pricing */
.package-tiers {
  display: flex;
  align-items: stretch;
  margin: 16px 0 6px;
}
.price-tier {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
}
.price-tier:first-child { border-right: 1px solid var(--border); }
.tier-label {
  display: block;
  font-family: 'Bebas Neue', cursive;
  font-size: 11px;
  letter-spacing: 0.13em;
  color: var(--gray);
}
.tier-dates {
  display: block;
  font-size: 10px;
  color: var(--gray);
  margin: 2px 0 8px;
  opacity: 0.7;
}
.tier-price {
  display: block;
  font-family: 'Bebas Neue', cursive;
  font-size: 36px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--black);
}
.tier-price--full { color: var(--red); }
.package-card.featured .tier-label { color: rgba(255,255,255,0.45); }
.package-card.featured .tier-dates { color: rgba(255,255,255,0.35); }
.package-card.featured .tier-price { color: rgba(255,255,255,0.85); }
.package-card.featured .tier-price--full { color: var(--yellow); }
.package-card.featured .price-tier:first-child { border-right-color: rgba(255,255,255,0.12); }
.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
  margin-bottom: 28px;
}
.package-features li {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.45;
}
.package-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.package-card.featured .package-features li { color: rgba(255,255,255,0.85); }
.package-card.featured .package-features li::before { color: var(--yellow); }
.package-avail {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--gray);
}
.package-card.featured .package-avail { color: rgba(255,255,255,0.5); }
.avail-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.package-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-family: 'Bebas Neue', cursive;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: filter 0.15s;
  background: var(--red);
  color: var(--white);
}
.package-card.featured .package-cta { background: var(--yellow); color: var(--black); }
.package-cta:hover { filter: brightness(1.1); }

/* Process Steps */
.process-steps {
  margin-top: 56px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.process-title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.process-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.process-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--white);
  background: var(--red);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-icon { font-size: 28px; line-height: 1; }
.process-step h4 {
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--black);
  margin: 0;
}
.process-step p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}
.process-arrow {
  flex-shrink: 0;
  align-self: center;
  font-size: 22px;
  color: var(--border);
  padding: 0 12px;
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .process-grid { flex-direction: column; align-items: stretch; gap: 12px; }
  .process-arrow { transform: rotate(90deg); align-self: center; padding: 0; margin: 0; }
}

/* Contact CTA */
.adv-contact {
  padding: 88px 24px;
  background: var(--red);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.adv-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 28px,
    rgba(0,0,0,0.06) 28px,
    rgba(0,0,0,0.06) 30px
  );
  pointer-events: none;
}
.adv-contact-inner { position: relative; max-width: 620px; margin: 0 auto; }
.adv-contact h2 { font-size: clamp(36px, 6vw, 64px); color: var(--white); margin-bottom: 20px; }
.adv-contact p { font-size: 17px; color: rgba(255,255,255,0.82); margin-bottom: 40px; line-height: 1.75; }
.btn-contact-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black);
  color: var(--yellow);
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  letter-spacing: 0.08em;
  padding: 17px 44px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-contact-email:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.4); color: var(--yellow); }

/* Responsive: adverteer page */
@media (max-width: 900px) {
  .adv-why-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 600px) {
  .adv-why-grid { grid-template-columns: 1fr; }
  .sponsors-label { display: none; }
  .pm-body { grid-template-columns: 48px 1fr 48px; }
}
