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

:root {
  --navy: #1a2744;
  --navy-light: #243259;
  --gold: #f5c842;
  --gold-dark: #d4a800;
  --white: #ffffff;
  --off-white: #f7f5f0;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --text: #1f2937;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(26,39,68,0.12);
  --shadow-lg: 0 12px 48px rgba(26,39,68,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; }

a { color: inherit; text-decoration: none; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--navy);
  line-height: 1;
}

.section-header.light h2 { color: var(--white); }
.section-header.light .label { color: var(--gold); }

.label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,200,66,0.4);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-nav {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  transition: background 0.2s;
}

.btn-nav:hover { background: var(--gold-dark); }

.btn-full { width: 100%; text-align: center; font-size: 1rem; padding: 16px; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}

#navbar.scrolled {
  background: var(--navy);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

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

.nav-logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.6));
}

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

.nav-links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f1c3a 0%, #1a2744 50%, #243259 100%);
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(245,200,66,0.08) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5c842' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 700px;
}

.hero-logo {
  width: 160px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-content h1 {
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.hero-content h1 span { color: var(--gold); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  letter-spacing: 0.05em;
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== ABOUT ===== */
#about {
  padding: 100px 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-text strong { color: var(--navy); }

.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 2px solid var(--gray-light);
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--gold-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}

.about-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ===== TOURNAMENT ===== */
#tournament {
  padding: 100px 0;
  background: var(--navy);
}

.tournament-card {
  background: var(--navy-light);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  border: 1px solid rgba(245,200,66,0.15);
  box-shadow: var(--shadow-lg);
}

.tc-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.tc-info h3 {
  font-size: 1.9rem;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.1;
}

.tc-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.tc-details li {
  color: rgba(255,255,255,0.85);
  font-size: 0.97rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tc-details strong { color: var(--white); }
.icon { font-size: 1.1rem; }

.tc-countdown {
  background: rgba(245,200,66,0.06);
  border: 1px solid rgba(245,200,66,0.2);
  border-radius: var(--radius);
  padding: 32px;
}

.countdown-label {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.cd-unit {
  text-align: center;
  background: var(--navy);
  border-radius: 8px;
  padding: 16px 8px;
}

.cd-unit span {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.cd-unit small {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  display: block;
}

.earlybird-box {
  background: linear-gradient(135deg, rgba(245,200,66,0.15), rgba(245,200,66,0.05));
  border: 1px solid rgba(245,200,66,0.3);
  border-radius: 8px;
  padding: 16px 20px;
  color: var(--gold);
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.5;
}

/* ===== GALLERY CAROUSEL ===== */
#gallery {
  padding: 80px 0 0;
  background: var(--off-white);
}

.gallery-carousel {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  margin-top: 48px;
}

.gc-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gc-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

.gc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gc-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,18,40,0.75), transparent);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 40px 32px 20px;
  letter-spacing: 0.02em;
}

.gc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,39,68,0.6);
  border: 1px solid rgba(245,200,66,0.3);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.gc-btn:hover {
  background: rgba(245,200,66,0.25);
  border-color: var(--gold);
}

.gc-prev { left: 20px; }
.gc-next { right: 20px; }

.gc-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.gc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
}

.gc-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .gallery-carousel { height: 300px; }
  .gc-btn { width: 40px; height: 40px; font-size: 1rem; }
}

/* ===== WINNERS ===== */
#winners {
  padding: 100px 0;
  background: var(--navy);
}

.winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.winner-card {
  background: var(--navy-light);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 4px solid rgba(245,200,66,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

/* Karten mit Foto */
.wc-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0d1626;
}
.wc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.winner-card:hover .wc-photo img { transform: scale(1.06); }
.wc-body { padding: 18px 20px 24px; }
.winner-card.no-photo .wc-body { padding: 28px 20px; }

.winner-card.highlight {
  border-top-color: var(--gold);
  background: linear-gradient(135deg, rgba(245,200,66,0.12), rgba(26,39,68,0.6));
}

.winner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.wc-trophy { font-size: 2.4rem; margin-bottom: 10px; }

.wc-edition {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}

.wc-team {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 6px;
}

.wc-year {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}

.winners-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.winners-note a { color: var(--gold); text-decoration: underline; }

/* ===== REGELWERK ===== */
#regelwerk {
  padding: 100px 0;
  background: var(--off-white);
}
.regelwerk-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.regelwerk-preview {
  position: relative;
  max-width: 460px;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s ease;
}
.regelwerk-preview img {
  width: 100%;
  display: block;
}
.regelwerk-preview:hover { transform: translateY(-5px); }
.regelwerk-zoom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 34px 16px 14px;
  background: linear-gradient(transparent, rgba(26,39,68,0.88));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
}
.regelwerk-download { text-decoration: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(10,15,28,0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: 95%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 28px;
  font-size: 2.6rem;
  line-height: 1;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}
.lightbox-close:hover { opacity: 1; transform: scale(1.1); }

/* ===== CREW ===== */
#crew {
  padding: 100px 0;
  background: var(--off-white);
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 28px;
}

.crew-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  transition: transform 0.2s, box-shadow 0.2s;
}
.crew-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.crew-photo {
  width: 130px;
  height: 130px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 6px 18px rgba(26,39,68,0.15);
}
.crew-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.crew-photo.crew-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}
.crew-placeholder span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.crew-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 10px;
}

.crew-role {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.role-leitung   { background: rgba(245,200,66,0.18); color: var(--gold-dark); }
.role-marketing { background: rgba(26,39,68,0.08);  color: var(--navy); }
.role-verkauf   { background: rgba(34,139,94,0.12); color: #1f7a52; }

/* ===== REVIEWS ===== */
#reviews {
  padding: 100px 0;
  background: var(--off-white);
}

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

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.review-card.featured {
  border-color: var(--gold);
  position: relative;
}

.review-card.featured::before {
  content: '⭐ Top Review';
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 50px;
}

.review-stars {
  color: var(--gold-dark);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
}

.review-author small {
  color: var(--gray);
  font-size: 0.78rem;
}

/* ===== FORMS ===== */
#register {
  padding: 100px 0;
  background: var(--navy);
}

.form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--navy-light);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
}

.form-wrap.dark .form-group label { color: rgba(255,255,255,0.85); }
.form-wrap.dark input,
.form-wrap.dark select,
.form-wrap.dark textarea {
  background: var(--navy);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}
.form-wrap.dark input::placeholder,
.form-wrap.dark textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-wrap.dark input:focus,
.form-wrap.dark select:focus,
.form-wrap.dark textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,200,66,0.1);
}
.form-wrap.dark select option { background: var(--navy); }
.form-wrap.dark .form-check { color: rgba(255,255,255,0.6); }
.form-wrap.dark .success-box h3 { color: var(--white); }
.form-wrap.dark .success-box p { color: rgba(255,255,255,0.7); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,39,68,0.08);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53e3e;
}

.form-group textarea { resize: vertical; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: var(--gray);
}

.form-check input { margin-top: 3px; flex-shrink: 0; accent-color: var(--navy); }
.form-check .link { color: var(--gold-dark); text-decoration: underline; }

/* ===== TURNIER INFO BOX ===== */
.turnier-info-box {
  max-width: 760px;
  margin: 0 auto 32px;
  background: rgba(245,200,66,0.07);
  border: 1px solid rgba(245,200,66,0.25);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.tib-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.tib-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.tib-item strong { color: var(--white); }

/* ===== CONFIRM DETAILS ===== */
.confirm-details {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 16px 0;
  text-align: left;
}

.confirm-details h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  margin-top: 14px;
}

.confirm-details h4:first-child { margin-top: 0; }

.confirm-details ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.confirm-details li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.confirm-details strong { color: var(--white); }

@media (max-width: 600px) {
  .turnier-info-box { grid-template-columns: 1fr; }
}

/* ===== DEADLINE BOX ===== */
.deadline-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
}

.deadline-box strong { color: var(--white); }

/* ===== PAYPAL HINT ===== */
.paypal-hint {
  background: rgba(0, 112, 186, 0.1);
  border: 1px solid rgba(0, 112, 186, 0.3);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.paypal-hint p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.btn-paypal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #0070ba;
  color: #fff;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-paypal:hover { background: #005ea6; transform: translateY(-1px); }
.btn-paypal strong { color: #ffd700; }

/* ===== EARLYBIRD HINT ===== */
.earlybird-hint {
  background: rgba(245,200,66,0.1);
  border: 1px solid rgba(245,200,66,0.25);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--gold);
  font-size: 0.88rem;
  text-align: center;
  margin-bottom: 16px;
}

/* ===== PAYMENT INFO ===== */
.payment-info {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  text-align: left;
}

.payment-info strong { color: var(--white); }

/* ===== SPONSOR ===== */
#sponsor {
  padding: 100px 0;
  background: var(--off-white);
}

.sponsor-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.sponsor-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.sponsor-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.sponsor-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 0.95rem;
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.sp-package {
  border-radius: 12px;
  padding: 22px 18px;
  text-align: left;
}

.sp-package.bronze   { background: var(--navy); border: 1px solid rgba(205,127,50,0.5); }
.sp-package.silver   { background: var(--navy); border: 1px solid rgba(180,180,200,0.5); }
.sp-package.gold-pkg { background: var(--navy); border: 1px solid var(--gold); }

.sp-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.sp-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.sp-desc {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
}

.sponsor-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
}

/* ===== SUCCESS BOX ===== */
.success-box {
  text-align: center;
  padding: 48px 32px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #22c55e;
  color: white;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-box h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.success-box p {
  color: var(--gray);
  margin-bottom: 12px;
  line-height: 1.7;
}

/* social btn in footer */
.social-btn.ig:hover { color: #e1306c; border-color: #e1306c; }
.social-btn.wa:hover { color: #25d366; border-color: #25d366; }
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 4px; }
.footer-contact a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }

/* ===== SPINNER ===== */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid var(--navy);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-left: 8px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.hidden { display: none !important; }

/* ===== HERO SLIDESHOW ===== */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide video,
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ===== VIDEO HERO ===== */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay-video {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 18, 40, 0.78) 0%,
    rgba(26, 39, 68, 0.65) 60%,
    rgba(10, 18, 40, 0.80) 100%
  );
  z-index: 1;
}

#hero .hero-content { z-index: 2; }
#hero .hero-scroll  { z-index: 2; }

/* ===== COLORED LOGO ===== */
.logo-colored {
  filter: none !important;
  opacity: 1 !important;
  /* drop-shadow so logo pops on dark background */
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.45)) !important;
}

.nav-logo img.logo-colored {
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.5)) !important;
}

/* ===== SECTION SUB ===== */
.section-sub {
  margin-top: 10px;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}

/* ===== CURRENT SPONSORS ===== */
#current-sponsors {
  padding: 100px 0;
  background: var(--navy);
}

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

.sponsor-logo-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sponsor-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.slc-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  min-height: 110px;
  border-radius: var(--radius);
  text-align: center;
  gap: 4px;
  border: 1px solid rgba(255,255,255,0.08);
}

.slc-inner strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.slc-inner small {
  font-size: 0.72rem;
  opacity: 0.7;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.slc-inner img {
  max-height: 60px;
  max-width: 120px;
  object-fit: contain;
}

/* Brand colour themes */
.slc-inner.redbull  { background: #cc0001; color: #fff; }
.slc-bull           { font-size: 1.6rem; line-height: 1; }

.slc-inner.krostitzer { background: #1a6b35; color: #fff; }

.slc-inner.casablanca { background: #fff; padding: 14px 18px; }
.slc-inner.casablanca img { max-height: 100px; max-width: 170px; }

.slc-inner.leimbach   { background: #2a2a2a; color: #fff; }

.slc-inner.iba        { background: #fff; padding: 20px 24px; }
.slc-inner.iba img    { max-height: 70px; }

.slc-inner.harry      { background: #b30000; color: #fff; }

.slc-inner.langnese   { background: #00478f; color: #fff; }

.slc-inner.velvet     { background: #fff; padding: 18px 24px; }
.slc-inner.velvet img { max-height: 90px; max-width: 160px; }

/* ===== SPONSOR PACKAGE LIST ===== */
.sp-tier {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 4px;
}

.sp-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sp-list li {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  padding-left: 14px;
  position: relative;
}

.sp-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 1px;
}

.sp-package.bronze .sp-name,
.sp-package.silver .sp-name,
.sp-package.gold-pkg .sp-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .slc-inner { padding: 20px 12px; min-height: 90px; }
}

/* ===== FOOTER ===== */
footer {
  background: #0f1c3a;
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  margin-bottom: 12px;
}

.footer-logo p {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact p { font-size: 0.9rem; }

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

.social-btn {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding: 20px 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--gold); }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .about-grid,
  .tournament-card,
  .sponsor-wrap { grid-template-columns: 1fr; }

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

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-logo { grid-column: 1 / -1; }

  .winner-card { padding: 22px 16px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .burger { display: flex; z-index: 1001; }

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

  .form-wrap { padding: 28px 20px; }

  .tournament-card { padding: 28px 20px; gap: 28px; }

  .sponsor-packages { grid-template-columns: 1fr; gap: 8px; }

  .stats-row { gap: 24px; }

  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .winners-grid { grid-template-columns: repeat(2, 1fr); }
  .countdown-grid { gap: 8px; }
  .cd-unit span { font-size: 1.5rem; }
}
