/*
Theme Name: VDP Paintball
Theme URI: https://vdp-paintball.de
Author: VDP - Verband Deutscher Paintballer
Author URI: https://vdp-paintball.de
Description: Official WordPress theme for the Verband Deutscher Paintballer (VDP) - Germany's paintball association. Clean, modern design with German national colors.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: vdp
Tags: sports, association, german, paintball, modern
*/

/* ============================================================
   VDP Design System — German National Paintball Association
   Colors: Modern Germany — Black / Red / Gold + Dynamic Accents
   ============================================================ */

:root {
  /* German national palette — modern reinterpretation */
  --vdp-black:    #0D0D0D;
  --vdp-charcoal: #1A1A1A;
  --vdp-dark:     #111827;
  --vdp-red:      #CC0000;
  --vdp-red-deep: #A00000;
  --vdp-red-glow: #FF2222;
  --vdp-gold:     #E8A800;
  --vdp-gold-lt:  #F5C842;
  --vdp-gold-dim: #B88400;

  /* Accent & utility */
  --vdp-white:    #FFFFFF;
  --vdp-offwhite: #F8F6F2;
  --vdp-light:    #EBEBEB;
  --vdp-muted:    #6B6B6B;
  --vdp-border:   rgba(0,0,0,0.09);
  --vdp-border-dk: rgba(255,255,255,0.1);

  /* Typography */
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--vdp-offwhite);
  color: var(--vdp-black);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.display-xl { font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 800; letter-spacing: -0.03em; }
.display-lg { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 700; }
.display-md { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; }
.display-sm { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 600; }

.body-lg { font-size: 1.125rem; line-height: 1.7; }
.body-md { font-size: 1rem; line-height: 1.65; }
.body-sm { font-size: 0.875rem; line-height: 1.6; }
.label   { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--sm { max-width: 780px; }
.container--md { max-width: 1024px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: 0.75rem; }
.gap-md { gap: 1.5rem; }
.gap-lg { gap: 2.5rem; }

.text-center { text-align: center; }
.text-right  { text-align: right; }

/* ============================================================
   Colors & Backgrounds
   ============================================================ */
.bg-black    { background: var(--vdp-black); color: var(--vdp-white); }
.bg-charcoal { background: var(--vdp-charcoal); color: var(--vdp-white); }
.bg-red      { background: var(--vdp-red); color: var(--vdp-white); }
.bg-gold     { background: var(--vdp-gold); color: var(--vdp-black); }
.bg-white    { background: var(--vdp-white); color: var(--vdp-black); }
.bg-offwhite { background: var(--vdp-offwhite); color: var(--vdp-black); }
.bg-light    { background: var(--vdp-light); color: var(--vdp-black); }

.text-red    { color: var(--vdp-red); }
.text-gold   { color: var(--vdp-gold); }
.text-muted  { color: var(--vdp-muted); }
.text-white  { color: var(--vdp-white); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border: 2px solid transparent;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary   { background: var(--vdp-red); color: var(--vdp-white); border-color: var(--vdp-red); }
.btn-primary:hover { background: var(--vdp-red-deep); border-color: var(--vdp-red-deep); transform: translateY(-2px); }
.btn-gold      { background: var(--vdp-gold); color: var(--vdp-black); border-color: var(--vdp-gold); }
.btn-gold:hover { background: var(--vdp-gold-lt); transform: translateY(-2px); }
.btn-outline   { background: transparent; color: var(--vdp-black); border-color: rgba(0,0,0,0.25); }
.btn-outline:hover { background: var(--vdp-black); color: var(--vdp-white); border-color: var(--vdp-black); }
.btn-outline-white { background: transparent; color: var(--vdp-white); border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: var(--vdp-white); color: var(--vdp-black); }
.btn-lg  { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm  { padding: 0.5rem 1.2rem; font-size: 0.8rem; }
.btn-pill{ border-radius: 50px; }

/* ============================================================
   Navigation
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s var(--ease);
}

.site-header.scrolled {
  background: rgba(13, 13, 13, 0.99);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--vdp-white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo-badge {
  width: 40px;
  height: 40px;
  background: var(--vdp-red);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  color: white;
  letter-spacing: 0.02em;
}

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

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: var(--r-sm);
  transition: all 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--vdp-white);
  background: rgba(255,255,255,0.08);
}

.nav-links a.current {
  color: var(--vdp-gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vdp-white);
  transition: all 0.3s;
  border-radius: 2px;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--vdp-black);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(204,0,0,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(232,168,0,0.08) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(204,0,0,0.15);
  border: 1px solid rgba(204,0,0,0.3);
  color: var(--vdp-red-glow);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--vdp-red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--vdp-red);
}

.hero-title {
  color: var(--vdp-white);
  margin-bottom: 1.5rem;
}

.hero-title .accent-red  { color: var(--vdp-red); }
.hero-title .accent-gold { color: var(--vdp-gold); }

.hero-description {
  color: rgba(255,255,255,0.65);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 2.5rem;
  padding: 2rem 0;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--vdp-white);
  line-height: 1;
}

.hero-stat-value span { color: var(--vdp-gold); }
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

/* ============================================================
   Section Headers
   ============================================================ */
.section-header {
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vdp-red);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--vdp-red);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--vdp-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--vdp-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--vdp-border);
  transition: all 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.card-dark {
  background: var(--vdp-charcoal);
  border-color: rgba(255,255,255,0.06);
  color: var(--vdp-white);
}

.card-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--vdp-light);
}

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

.card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--vdp-light) 0%, var(--vdp-border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vdp-muted);
  font-size: 2.5rem;
}

.card-body {
  padding: 1.5rem;
}

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

.card-tag {
  display: inline-block;
  background: rgba(204,0,0,0.08);
  color: var(--vdp-red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

.card-date {
  font-size: 0.8rem;
  color: var(--vdp-muted);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.card-excerpt {
  font-size: 0.9rem;
  color: var(--vdp-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--vdp-border);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vdp-red);
  transition: gap 0.2s;
}

.read-more:hover { gap: 0.7rem; }

/* ============================================================
   Blog Page
   ============================================================ */
.page-header {
  padding: 160px 0 80px;
  background: var(--vdp-black);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 50% 100%, rgba(204,0,0,0.15) 0%, transparent 70%);
}

.page-header-content { position: relative; z-index: 2; }
.page-header h1 { color: var(--vdp-white); }
.page-header p  { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-top: 1rem; max-width: 520px; }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  padding: 4rem 0;
  align-items: start;
}

.blog-posts-grid {
  display: grid;
  gap: 2rem;
}

.blog-post-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.blog-post-featured .card-img-wrap {
  aspect-ratio: 1;
  height: 100%;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--vdp-white);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  border: 1px solid var(--vdp-border);
  margin-bottom: 1.5rem;
}

.sidebar-widget-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--vdp-red);
  display: inline-block;
}

/* ============================================================
   Registration Form
   ============================================================ */
.registration-section {
  padding: 5rem 0;
  background: var(--vdp-offwhite);
}

.form-card {
  background: var(--vdp-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 8px 64px rgba(0,0,0,0.08);
  border: 1px solid var(--vdp-border);
}

.form-card-header {
  background: var(--vdp-black);
  padding: 2.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.form-card-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vdp-red) 0%, var(--vdp-gold) 100%);
}

.form-card-header h2 { color: var(--vdp-white); margin-bottom: 0.5rem; }
.form-card-header p  { color: rgba(255,255,255,0.55); }

.form-card-body { padding: 2.5rem 3rem; }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--vdp-black);
  letter-spacing: 0.04em;
}

.form-label .required { color: var(--vdp-red); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--vdp-black);
  background: var(--vdp-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--vdp-red);
  box-shadow: 0 0 0 3px rgba(204,0,0,0.08);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea { resize: vertical; min-height: 100px; }

.form-hint { font-size: 0.75rem; color: var(--vdp-muted); }

.form-divider {
  height: 1px;
  background: var(--vdp-border);
  margin: 1.5rem 0;
}

.form-section-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vdp-muted);
  margin-bottom: 1.25rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--vdp-red);
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.875rem;
  color: var(--vdp-muted);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-group label a { color: var(--vdp-red); text-decoration: underline; }

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--vdp-border);
}

.form-login-link {
  font-size: 0.875rem;
  color: var(--vdp-muted);
}
.form-login-link a { color: var(--vdp-red); font-weight: 600; }

/* Player ID badge preview */
.id-badge-preview {
  background: var(--vdp-black);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.id-badge-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--r-md);
  background: var(--vdp-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.id-badge-info { flex: 1; }
.id-badge-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: white; }
.id-badge-id { font-family: monospace; font-size: 0.75rem; color: var(--vdp-gold); letter-spacing: 0.1em; }

/* ============================================================
   Teams Overview
   ============================================================ */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: var(--vdp-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--vdp-border);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.team-card-banner {
  height: 120px;
  position: relative;
  overflow: hidden;
}

.team-card-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--vdp-black) 0%, var(--vdp-charcoal) 100%);
}

.team-card-banner-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.team-card-body { padding: 1.25rem; }

.team-badge {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  margin-top: -36px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border: 2px solid var(--vdp-white);
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-league {
  font-size: 0.75rem;
  color: var(--vdp-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-stats {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--vdp-border);
}

.team-stat { text-align: center; }
.team-stat-val {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--vdp-black);
}
.team-stat-lbl { font-size: 0.7rem; color: var(--vdp-muted); text-transform: uppercase; letter-spacing: 0.06em; }

.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1.5px solid rgba(0,0,0,0.15);
  background: var(--vdp-white);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--vdp-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--vdp-black);
  border-color: var(--vdp-black);
  color: var(--vdp-white);
}

/* ============================================================
   National Team Roster
   ============================================================ */
.national-header {
  background: var(--vdp-black);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.national-flag-stripe {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--vdp-black) 33.33%, var(--vdp-red) 33.33%, var(--vdp-red) 66.66%, var(--vdp-gold) 66.66%);
}

.national-eagle-bg {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18rem;
  opacity: 0.03;
  user-select: none;
  line-height: 1;
}

.roster-table-wrap {
  background: var(--vdp-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--vdp-border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  margin: 2.5rem 0;
}

.roster-table-header {
  background: var(--vdp-black);
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 48px 1fr 1fr 1fr 100px 80px;
  gap: 1rem;
  align-items: center;
}

.roster-table-header span {
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.roster-row {
  display: grid;
  grid-template-columns: 48px 1fr 1fr 1fr 100px 80px;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--vdp-border);
  transition: background 0.15s;
}

.roster-row:last-child { border-bottom: none; }
.roster-row:hover { background: var(--vdp-offwhite); }

.player-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--vdp-muted);
  text-align: center;
}

.player-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--vdp-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--vdp-muted);
  flex-shrink: 0;
}

.player-info { display: flex; align-items: center; gap: 0.75rem; }
.player-name { font-weight: 600; font-size: 0.95rem; }
.player-alias { font-size: 0.8rem; color: var(--vdp-muted); font-style: italic; }

.player-pos-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pos-front  { background: rgba(204,0,0,0.1); color: var(--vdp-red); }
.pos-mid    { background: rgba(232,168,0,0.12); color: var(--vdp-gold-dim); }
.pos-back   { background: rgba(0,0,0,0.07); color: var(--vdp-charcoal); }

.player-caps {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vdp-black);
  text-align: center;
}

.player-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
}

.status-active   { background: rgba(22,163,74,0.1); color: #15803d; }
.status-inactive { background: rgba(0,0,0,0.06); color: var(--vdp-muted); }
.status-injured  { background: rgba(204,0,0,0.08); color: var(--vdp-red); }

/* Roster stats strip */
.roster-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
}

.roster-stat {
  background: var(--vdp-white);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  border: 1px solid var(--vdp-border);
  text-align: center;
}

.roster-stat-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.roster-stat-lbl {
  font-size: 0.75rem;
  color: var(--vdp-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ============================================================
   German Flag Stripe Divider
   ============================================================ */
.flag-stripe {
  height: 5px;
  background: linear-gradient(90deg, var(--vdp-black) 33.33%, var(--vdp-red) 33.33%, var(--vdp-red) 66.66%, var(--vdp-gold) 66.66%);
  width: 100%;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--vdp-black);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
  margin-top: 1rem;
  color: rgba(255,255,255,0.5);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vdp-gold);
  margin-bottom: 1rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--vdp-white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  font-size: 0.85rem;
}
.social-link:hover { background: var(--vdp-red); }

/* ============================================================
   Announcements / News Strip
   ============================================================ */
.news-strip {
  background: var(--vdp-red);
  padding: 0.6rem 0;
  overflow: hidden;
}

.news-strip-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.news-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--vdp-white);
  font-size: 0.8rem;
  font-weight: 600;
}

.news-strip-dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .roster-table-wrap { overflow-x: auto; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 120px 0 80px; }
  .roster-table-header,
  .roster-row {
    grid-template-columns: 40px 1fr 1fr;
  }
  .roster-stats-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-card-body { padding: 1.5rem; }
  .form-card-header { padding: 1.5rem; }
  .form-submit-row { flex-direction: column; gap: 1rem; align-items: stretch; }
  .blog-post-featured { grid-template-columns: 1fr; }
}

/* ============================================================
   Animations & Transitions
   ============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-up {
  animation: fade-up 0.6s var(--ease) both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ============================================================
   WordPress-specific classes
   ============================================================ */
.entry-content h1,
.entry-content h2,
.entry-content h3 { margin: 2rem 0 1rem; font-family: var(--font-display); }
.entry-content p  { margin-bottom: 1rem; }
.entry-content ul,
.entry-content ol { margin: 1rem 0 1rem 1.5rem; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content blockquote {
  border-left: 4px solid var(--vdp-red);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--vdp-muted);
}

.alignnone   { margin: 1.5em 1.5em 1.5em 0; }
.aligncenter { display: block; margin: 1.5em auto; }
.alignright  { float: right; margin: 1.5em 0 1.5em 1.5em; }
.alignleft   { float: left; margin: 1.5em 1.5em 1.5em 0; }

.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--vdp-muted); margin-top: 0.5rem; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
