/* =============================================
   HV ILSENBURG e.V. – MAIN STYLESHEET
   Vereinsfarben: Gelb (#F5D800) & Schwarz (#0D0D0D)
   ============================================= */

/* --- CSS VARIABLES --- */
:root {
  --yellow:     #F5D800;
  --yellow-dim: #d4bb00;
  --yellow-glow: rgba(245,216,0,0.25);
  --black:      #0D0D0D;
  --black-mid:  #181818;
  --black-soft: #232323;
  --black-card: #1a1a1a;
  --grey-light: #888;
  --grey-mid:   #555;
  --white:      #FFFFFF;
  --off-white:  #f0f0f0;
  --text-muted: #aaa;

  --font-main: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,0,0,0.5);
  --shadow-y:   0 8px 40px rgba(245,216,0,0.15);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --header-h:   80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-main); }
ul { list-style: none; }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245,216,0,0.12);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(13,13,13,0.97);
  border-bottom-color: rgba(245,216,0,0.25);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform var(--transition);
}

.logo-wrap:hover .logo-img {
  transform: rotate(-5deg) scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--yellow);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.72rem;
  color: var(--grey-light);
  letter-spacing: 0.05em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--off-white);
  transition: var(--transition);
  letter-spacing: 0.01em;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 2rem);
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--yellow);
  background: rgba(245,216,0,0.08);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

@media (min-width: 901px) and (max-width: 1250px) {
  .nav-link {
    font-size: 0.8rem;
    padding: 0.5rem 0.6rem;
  }
  .header-inner {
    padding: 0 1rem;
    gap: 0.5rem;
  }
  .logo-title {
    font-size: 1.1rem;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}

.hamburger:hover { background: rgba(245,216,0,0.1); }

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =============================================
   PAGE SYSTEM
   ============================================= */
.page {
  display: none;
  min-height: 100vh;
  animation: fadeInPage 0.4s ease forwards;
}

.page.active {
  display: block;
}

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

/* =============================================
   SECTION HELPERS
   ============================================= */
.section {
  padding: 5rem 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  background: var(--yellow-glow);
  color: var(--yellow);
  border: 1px solid rgba(245,216,0,0.3);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-title .accent { color: var(--yellow); }

.section-desc {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 1.05rem;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(245,216,0,0.3);
}

.btn-primary:hover {
  background: #ffe500;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,216,0,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}

.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,216,0,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(245,216,0,0.04) 0%, transparent 50%),
    linear-gradient(135deg, #0d0d0d 0%, #181818 50%, #0d0d0d 100%);
  z-index: 0;
}

/* animated handball pattern */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(245,216,0,0.06) 1px, transparent 0);
  background-size: 48px 48px;
  animation: bgMove 20s linear infinite;
}

@keyframes bgMove {
  0%   { transform: translate(0,0); }
  100% { transform: translate(48px,48px); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.4) 60%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: slideInLeft 0.6s ease both;
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero-title-line {
  display: block;
  animation: slideInLeft 0.6s ease both;
}

.hero-title-line:nth-child(1) { animation-delay: 0.1s; }
.hero-title-line:nth-child(2) { animation-delay: 0.2s; color: var(--yellow); }
.hero-title-line:nth-child(3) { animation-delay: 0.3s; }

.hero-sub {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  animation: slideInLeft 0.6s ease 0.4s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: slideInLeft 0.6s ease 0.5s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--grey-light);
  font-size: 0.75rem;
  font-family: var(--font-main);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeIn 1s ease 1s both;
}

.scroll-arrow {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  border-radius: 2px;
  animation: scrollPulse 1.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--yellow);
  padding: 1.5rem 2rem;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-num {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 2rem;
  color: var(--black);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.78rem;
  color: rgba(0,0,0,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.2);
}

/* =============================================
   NEWS SECTION
   ============================================= */
.news-section { background: var(--black-mid); }

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.news-card {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,216,0,0.25);
  box-shadow: var(--shadow-y);
}

.news-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.news-card:hover .news-card-img img {
  transform: scale(1.05);
}

.news-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.news-card-body {
  padding: 1.75rem;
}

.news-date {
  display: block;
  font-size: 0.8rem;
  color: var(--yellow);
  font-family: var(--font-main);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.news-card-title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.news-card-text {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.news-link {
  color: var(--yellow);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.88rem;
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.news-link:hover { gap: 0.5rem; }

/* News side cards */
.news-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-card-small {
  display: flex;
  gap: 1rem;
  background: var(--black-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition), border-color var(--transition);
  padding: 1rem;
}

.news-card-small:hover {
  transform: translateX(4px);
  border-color: rgba(245,216,0,0.2);
}

.news-card-small-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-card-small-body { flex: 1; }

.news-card-small-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.news-card-small-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =============================================
   PLACEHOLDER IMAGES
   ============================================= */
.placeholder-img {
  background: linear-gradient(135deg, var(--black-soft) 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--grey-mid);
  font-size: 0.8rem;
  font-family: var(--font-main);
  letter-spacing: 0.05em;
}

.placeholder-content svg { width: 60px; height: 60px; }

.placeholder-img-sm {
  background: linear-gradient(135deg, var(--black-soft) 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.placeholder-content-sm svg { width: 36px; height: 36px; }

.placeholder-img-wide {
  background: linear-gradient(135deg, var(--black-soft) 0%, #262626 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* =============================================
   TEAM TEASER
   ============================================= */
.team-teaser {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.team-teaser-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  z-index: 0;
}

.team-teaser-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.team-teaser-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(245,216,0,0.1);
}

.team-teaser-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.team-teaser-img-wrap:hover .team-teaser-img {
  transform: scale(1.03);
}

.team-teaser-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.5) 0%, transparent 50%);
}

.team-teaser-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.team-teaser-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tt-stat {
  display: flex;
  flex-direction: column;
}

.tt-num {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--yellow);
  line-height: 1;
}

.tt-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

/* =============================================
   SPONSORS TEASER (HOME)
   ============================================= */
.sponsors-teaser { background: var(--black-mid); }

.sponsors-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.sponsor-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  background: #fff;
  border-radius: var(--radius);
  border: 2px solid rgba(245,216,0,0);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  min-width: 200px;
  max-width: 280px;
}

.sponsor-logo-item img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: transform var(--transition);
}

.sponsor-logo-item:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: 0 8px 32px rgba(245,216,0,0.25);
}

.sponsor-logo-item:hover img {
  transform: scale(1.05);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 4rem) 2rem 4rem;
  overflow: hidden;
}

.page-hero--dark {
  background: linear-gradient(135deg, #0a0a0a 0%, #181818 100%);
}

.page-hero--team {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1500 50%, #181818 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(245,216,0,0.04) 1px, transparent 0);
  background-size: 32px 32px;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(245,216,0,0.04) 0%, transparent 100%);
  pointer-events: none;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(245,216,0,0.06) 0%, transparent 70%);
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin: 0.75rem 0 1rem;
  letter-spacing: -0.03em;
}

.page-hero-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* =============================================
   LEAGUE TABLE
   ============================================= */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow);
}

.league-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--black-card);
  font-family: var(--font-main);
  font-size: 0.93rem;
}

.league-table thead {
  background: var(--yellow);
}

.league-table th {
  color: var(--black);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  text-align: center;
  white-space: nowrap;
}

.th-rank { width: 50px; }
.th-team { text-align: left; }
.th-pts { width: 80px; }

.league-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition);
}

.league-table tbody tr:last-child { border-bottom: none; }

.league-table tbody tr:hover {
  background: rgba(245,216,0,0.05);
}

.league-table td {
  padding: 1rem 1.25rem;
  color: var(--off-white);
  text-align: center;
}

.rank span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.06);
}

.rank-1 span { background: #ffd700; color: #000; }
.rank-2 span { background: #c0c0c0; color: #000; }
.rank-3 span { background: #cd7f32; color: #000; }

.team-name {
  text-align: left;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.table-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 50%;
}

.team-hvi {
  color: var(--yellow);
  font-weight: 800;
}

.highlight-row {
  background: rgba(245,216,0,0.07) !important;
  border-left: 3px solid var(--yellow);
}

.pts {
  font-weight: 800;
  color: var(--yellow);
}

.diff.pos { color: #4ade80; }
.diff.neg { color: #f87171; }

.table-note {
  font-size: 0.78rem;
  color: var(--grey-mid);
  padding: 1rem 1.25rem;
  background: var(--black-card);
  border-top: 1px solid rgba(255,255,255,0.05);
  font-style: italic;
}

/* =============================================
   TEAM PHOTO
   ============================================= */
.team-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(245,216,0,0.2);
  box-shadow: 0 0 60px rgba(245,216,0,0.1);
  position: relative;
}

.team-photo-full {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: cover;
  display: block;
}

.team-photo-caption {
  background: rgba(13,13,13,0.9);
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
  padding: 0.75rem;
  font-family: var(--font-main);
  letter-spacing: 0.05em;
}

/* =============================================
   PLAYERS GRID
   ============================================= */
.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
}

.player-card {
  background: var(--black-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform var(--transition), border-color var(--transition);
  cursor: pointer;
}

.player-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,216,0,0.3);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.player-img-placeholder {
  height: 180px;
  background: linear-gradient(160deg, var(--black-soft) 0%, #252500 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
}

.player-number {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 0.78rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.player-avatar-icon svg { width: 50px; height: 50px; }

.placeholder-text {
  font-size: 0.72rem;
  color: var(--grey-mid);
  font-family: var(--font-main);
  letter-spacing: 0.05em;
}

.player-info {
  padding: 0.75rem;
  text-align: center;
}

.player-name {
  display: block;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
}

.player-pos {
  display: block;
  font-size: 0.75rem;
  color: var(--yellow);
  margin-top: 0.2rem;
}

/* =============================================
   NEWS FULL PAGE
   ============================================= */
.news-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.news-full-card {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform var(--transition), border-color var(--transition);
}

.news-full-card:first-child {
  grid-column: 1 / -1;
}

.news-full-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,216,0,0.2);
}

.nfc-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.nfc-img { position: relative; }

.nfc-body {
  padding: 1.75rem;
}

.nfc-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.nfc-cat {
  background: rgba(245,216,0,0.1);
  color: var(--yellow);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.nfc-title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.news-full-card:first-child .nfc-title {
  font-size: 1.6rem;
}

.nfc-body p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

/* =============================================
   JUGEND PAGE
   ============================================= */
.jugend-intro {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}

.jugend-text p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.jugend-contact-box {
  background: linear-gradient(135deg, rgba(245,216,0,0.1) 0%, rgba(245,216,0,0.04) 100%);
  border: 1px solid rgba(245,216,0,0.2);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-top: 2rem;
}

.jugend-contact-box h3 {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.jugend-contact-box p {
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.jugend-placeholder {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jugend-placeholder .placeholder-content {
  gap: 1rem;
  font-size: 0.9rem;
}

.jugend-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.jugend-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.jugend-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,216,0,0.25);
}

.jugend-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.jugend-card h3 {
  font-family: var(--font-main);
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.jugend-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

.jugend-info-box {
  background: linear-gradient(135deg, var(--black-card) 0%, #1f1f1f 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.jugend-info-box h3 {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.jugend-info-box p {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 0.75rem;
}

/* =============================================
   SPONSORS PAGE
   ============================================= */
.sponsors-full-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.sponsor-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}

.sponsor-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,216,0,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,216,0,0.1);
}

.sponsor-card-logo {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  border-right: 1px solid rgba(0,0,0,0.08);
  min-height: 180px;
}

.sponsor-card-logo img {
  max-height: 130px;
  max-width: 210px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}

.sponsor-card:hover .sponsor-card-logo img {
  transform: scale(1.06);
}

.sponsor-card-body {
  padding: 2rem 2.5rem;
}

.sponsor-name {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.sponsor-location {
  color: var(--yellow);
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.sponsor-desc {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.sponsor-link-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(245,216,0,0.1);
  color: var(--yellow);
  border: 1px solid rgba(245,216,0,0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.85rem;
  transition: background var(--transition), color var(--transition);
}

.sponsor-card:hover .sponsor-link-btn {
  background: var(--yellow);
  color: var(--black);
}

.sponsor-become-box {
  background: linear-gradient(135deg, rgba(245,216,0,0.08) 0%, rgba(245,216,0,0.02) 100%);
  border: 1px solid rgba(245,216,0,0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
}

.sponsor-become-box h3 {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.sponsor-become-box p {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.team-join-box {
  background: linear-gradient(135deg, rgba(245,216,0,0.08) 0%, rgba(245,216,0,0.02) 100%);
  border: 1px solid rgba(245,216,0,0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  margin-top: 4rem;
}

.team-join-box h3 {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.team-join-box p {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* =============================================
   FANSHOP
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.product-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245,216,0,0.25);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.product-img-wrapper {
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1.5rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--transition);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.05);
}

.product-title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  margin: 0 0 0.5rem;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 1.25rem;
  flex-grow: 1;
}

.product-price {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--yellow);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--yellow);
}

.footer-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.footer-nav {
  display: flex;
  gap: 0.5rem 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--grey-light);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--yellow); }

.footer-copy p {
  font-size: 0.8rem;
  color: var(--grey-mid);
  line-height: 1.6;
}

/* Social Media Footer */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-social-label {
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.footer-social-icons {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: var(--grey-light);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
}

.social-icon-link:hover {
  color: var(--yellow);
  background: rgba(245, 216, 0, 0.12);
  border-color: rgba(245, 216, 0, 0.4);
  transform: translateY(-3px) scale(1.08);
}

/* =============================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================= */
.legal-content {
  max-width: 900px;
  line-height: 1.8;
}

.legal-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(245, 216, 0, 0.25);
}

.legal-block {
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 3px solid rgba(245, 216, 0, 0.2);
  margin-bottom: 0.5rem;
}

.legal-block h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.legal-block p {
  color: var(--grey-light);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.legal-block--separator {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* =============================================
   VORSTAND PAGE
   ============================================= */
.vorstand-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.vorstand-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.vorstand-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 216, 0, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.vorstand-img-placeholder {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px dashed rgba(245, 216, 0, 0.2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-shrink: 0;
}

.vorstand-img-placeholder svg {
  color: var(--yellow);
}

.placeholder-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vorstand-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.vorstand-role {
  font-size: 0.85rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.vorstand-name {
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

/* Responsiveness for vorstand card */
@media (max-width: 600px) {
  .vorstand-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
  }
}

/* =============================================
   MOBILE MENU
   ============================================= */
.main-nav.mobile-open {
  display: flex;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hamburger { display: flex; }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(13,13,13,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(245,216,0,0.1);
    z-index: 999;
  }

  .nav-link { font-size: 1.1rem; padding: 0.75rem 1rem; }

  .news-grid { grid-template-columns: 1fr; }
  .news-full-grid { grid-template-columns: 1fr; }
  .news-full-card:first-child { grid-column: auto; }
  .team-teaser-inner { grid-template-columns: 1fr; }
  .team-teaser-img { height: 280px; }
  .jugend-intro { grid-template-columns: 1fr; }
  .jugend-cards-grid { grid-template-columns: 1fr; }
  .sponsor-card { grid-template-columns: 1fr; }
  .sponsor-card-logo { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .stats-inner { gap: 1.5rem; }
  .stat-divider { display: none; }
}

@media (max-width: 600px) {
  :root { --header-h: 65px; }
  
  .section { padding: 2.5rem 0; }
  .container { padding: 0 1.25rem; }
  
  /* Hero-Bereich Optimierungen */
  .page-hero {
    padding: calc(var(--header-h) + 2rem) 1.25rem 3rem;
  }
  
  .page-hero-title {
    font-size: clamp(2rem, 8vw, 2.6rem) !important;
  }
  
  .hero-content {
    padding: 0 0.25rem;
  }
  
  .hero-title {
    font-size: clamp(2rem, 9vw, 2.8rem) !important;
  }
  
  .hero-sub {
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.6;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-top: 2rem;
  }
  
  .hero-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Spieler & Offizielle Grid */
  .players-grid { 
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); 
    gap: 1rem;
  }
  
  .player-card {
    padding: 0.75rem;
  }
  
  .player-name {
    font-size: 0.95rem;
    margin-top: 0.5rem;
  }
  
  .player-number {
    font-size: 0.85rem;
    padding: 0.2rem 0.5rem;
  }

  /* Grid-Anpassungen für Jugend & Mitglieds-Detailboxen */
  .jugend-details-container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .jugend-staff-section, .jugend-times-section {
    padding: 1.5rem !important;
  }

  #page-mitglied .container > div:first-child {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  #page-mitglied .container > div:first-child > div {
    padding: 1.5rem !important;
  }

  /* Sponsoren-Karten mobil */
  .sponsor-card {
    padding: 1.5rem;
    gap: 1.25rem;
  }
  
  .sponsor-card-logo {
    padding: 1.25rem;
  }
  
  .sponsor-become-box, .team-join-box {
    padding: 2rem 1.25rem;
  }
  
  .sponsor-become-box h3, .team-join-box h3 {
    font-size: 1.4rem;
  }

  /* News-Karten & Bilder mobil */
  .news-card-img {
    height: 180px !important;
  }
  
  .news-card-body {
    padding: 1.25rem;
  }
  
  .news-card-title {
    font-size: 1.15rem;
  }
  
  .nfc-body {
    padding: 1.5rem 1.25rem;
  }
  
  .nfc-title {
    font-size: 1.35rem;
  }

  /* Statistiken mobil */
  .stats-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  
  .stat-item {
    padding: 0.5rem 0;
  }
  
  .sponsors-logos {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .section-title { 
    font-size: clamp(1.6rem, 6vw, 2.2rem); 
  }

  /* Fanshop mobil */
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
  }
  
  .product-card {
    padding: 1rem;
  }
  
  .product-img-wrapper {
    margin-bottom: 1rem;
  }
  
  .product-title {
    font-size: 1rem;
  }
  
  .product-desc {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .product-price {
    font-size: 1.1rem;
  }
}

/* =============================================
   SCM TESTSPIEL PAGE STYLES
   ============================================= */
.scm-event-highlight {
  background: linear-gradient(135deg, rgba(245, 216, 0, 0.08) 0%, rgba(13, 13, 13, 0) 100%);
  border: 1px solid rgba(245, 216, 0, 0.15);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.scm-event-highlight::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245, 216, 0, 0.1) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.scm-versus-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.scm-versus-team {
  flex: 1;
  min-width: 280px;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.scm-versus-team:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 216, 0, 0.2);
}

/* Team colors accent bottom lines */
.scm-versus-team.team-scm {
  border-bottom: 4px solid #e10613; /* SC Magdeburg Red */
}
.scm-versus-team.team-opole {
  border-bottom: 4px solid #005ca9; /* Gwardia Opole Blue */
}

.scm-team-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
}

.scm-team-logo-placeholder {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.team-scm .scm-team-logo-placeholder {
  background: linear-gradient(135deg, #e10613, #008751); /* Red-Green */
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.team-opole .scm-team-logo-placeholder {
  background: linear-gradient(135deg, #005ca9, #e10613); /* Blue-Red */
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.scm-team-name {
  font-family: var(--font-main);
  font-weight: 850;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.scm-team-league {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.scm-vs-badge {
  font-family: var(--font-main);
  font-weight: 900;
  font-style: italic;
  font-size: 2.2rem;
  color: var(--yellow);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--black-soft);
  border: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--yellow-glow);
  z-index: 2;
}

.scm-facts-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.scm-fact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.scm-fact-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.scm-fact-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}

.scm-fact-value {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.4;
}

.scm-video-box {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 4rem 0;
  text-align: center;
}

.scm-video-placeholder {
  width: 100%;
  max-width: 760px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius);
  margin: 1.5rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.scm-video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(245, 216, 0, 0.4);
  transition: var(--transition);
}

.scm-video-placeholder:hover .scm-video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 4px 30px rgba(245, 216, 0, 0.6);
}

.event-sponsors-section {
  margin: 4rem 0;
  text-align: center;
}

.event-sponsors-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2rem;
}

.event-sponsor-placeholder-card {
  width: 180px;
  height: 100px;
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-light);
  font-size: 0.85rem;
  padding: 1rem;
  text-align: center;
  transition: var(--transition);
}

.event-sponsor-placeholder-card:hover {
  background: rgba(245, 216, 0, 0.02);
  border-color: rgba(245, 216, 0, 0.3);
  color: var(--yellow);
}

@media(max-width: 768px) {
  .scm-versus-container {
    flex-direction: column;
    gap: 1rem;
  }
  .scm-vs-badge {
    transform: rotate(90deg);
    margin: -0.5rem 0;
  }
  .scm-event-highlight {
    padding: 1.5rem;
  }
}

.main-sponsor-card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow) !important;
  box-shadow: 0 12px 50px rgba(245, 216, 0, 0.25) !important;
}

.main-sponsor-logo-link:hover {
  transform: scale(1.04);
}

.event-partner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6) !important;
}

.event-partner-logo-link:hover {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .scm-video-overlay-grad {
    background: linear-gradient(to bottom, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.3) 50%, rgba(13, 13, 13, 0.1) 100%) !important;
  }
  .scm-teaser-box {
    flex-direction: column !important;
  }
}

/* Video Modal Lightbox */
.video-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-modal.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 800px;
  background: #000;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-modal.open .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.video-modal-close:hover {
  color: var(--yellow);
}

.scm-gallery-placeholder-card:hover {
  background: rgba(255, 255, 255, 0.02) !important;
  border-color: var(--yellow) !important;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

