/* ============================================================
   SPARE RIBS BOWLING – Main Stylesheet
   Aesthetic: Bold industrial-sport, dark lanes, red accents
   ============================================================ */

:root {
  --red:        #D41F1F;
  --red-dark:   #A01515;
  --red-glow:   rgba(212, 31, 31, 0.25);
  --black:      #0D0D0D;
  --dark:       #151515;
  --dark2:      #1E1E1E;
  --dark3:      #2A2A2A;
  --lane:       #2C2416;
  --lane-light: #3D3120;
  --white:      #F5F0E8;
  --gray:       #888;
  --gray-light: #BBB;
  --gold:       #E8A020;
  --gold-light: #F5C842;

  --font-head:  'Bebas Neue', sans-serif;
  --font-body:  'Barlow', sans-serif;
  --nav-h:      70px;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(0,0,0,0.5);
  --shadow-red: 0 4px 24px rgba(212,31,31,0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,31,31,0.2);
  z-index: 1000;
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.8); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 100%; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 46px; width: auto; object-fit: contain; }
.nav-links {
  display: flex; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: .05em;
  color: var(--gray-light);
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0); transition: transform .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: .3s;
}

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

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0d0d0d 0%, #1a0a0a 50%, #0d0d0d 100%);
}

.lane-lines {
  position: absolute; inset: 0;
  display: flex; justify-content: center;
  opacity: .12;
}
.lane {
  flex: 1;
  border-right: 1px solid rgba(255,255,255,0.3);
  max-width: 180px;
}

.pins-bg {
  position: absolute;
  bottom: -30px; right: 5%;
  display: grid;
  grid-template-columns: repeat(4, 48px);
  grid-template-rows: repeat(4, 48px);
  gap: 8px;
  opacity: .06;
}
.pin {
  width: 42px; height: 42px;
  background: var(--white);
  border-radius: 50% 50% 40% 40%;
  clip-path: ellipse(40% 50% at 50% 50%);
}



.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  animation: heroFadeUp .8s ease both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-pre {
  font-family: var(--font-body);
  font-size: .85rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(5rem, 18vw, 14rem);
  line-height: .88;
  color: var(--white);
  text-shadow: 0 0 80px rgba(212,31,31,0.3);
}
.hero-title span { color: var(--red); }

.hero-sub {
  font-size: 1.2rem;
  color: var(--gray-light);
  font-style: italic;
  margin: 1.5rem 0 2.5rem;
}

.hero-cta {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex; align-items: center;
  justify-content: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray);
}
.stat-div {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: .08em;
  padding: .7rem 2rem;
  border-radius: var(--radius);
  cursor: pointer; border: none;
  transition: all .2s;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.btn-sm { padding: .45rem 1.2rem; font-size: .9rem; }
.btn-full { width: 100%; text-align: center; }

/* ── SECTIONS ── */
.section { padding: 5rem 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

.section-tag {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(212,31,31,0.4);
  padding: .25rem .75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 3rem;
}

/* ── HIGHLIGHTS CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}
.card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-red  { background: linear-gradient(135deg, var(--red-dark), #7a0f0f); }
.card-dark { background: var(--dark2); border: 1px solid var(--dark3); }
.card-icon { font-size: 1.8rem; margin-bottom: .75rem; }
.card-num  { font-family: var(--font-head); font-size: 2.5rem; line-height: 1; color: var(--white); }
.card-label{ font-weight: 600; margin: .25rem 0 .25rem; }
.card-sub  { font-size: .85rem; color: rgba(255,255,255,0.6); }

/* ── TEAM PREVIEW ── */
.team-preview { background: var(--dark); }
.players-strip {
  display: flex; gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.player-chip {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  cursor: pointer; transition: transform .2s;
}
.player-chip:hover { transform: translateY(-4px); }
.player-avatar {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--dark3);
  border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.3rem; color: var(--red);
  transition: background .2s, color .2s;
}
.player-chip:hover .player-avatar {
  background: var(--red); color: var(--white);
}
.player-chip span { font-size: .85rem; color: var(--gray-light); }
.team-cta { margin-top: 1rem; }

/* ── TERMINE PREVIEW ── */
.termine-list { display: flex; flex-direction: column; gap: .75rem; }
.termin-item {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  transition: border-color .2s, transform .2s;
}
.termin-item:hover {
  border-color: var(--red);
  transform: translateX(4px);
}
.termin-date {
  min-width: 52px; text-align: center;
  display: flex; flex-direction: column;
}
.termin-date .day  { font-family: var(--font-head); font-size: 1.8rem; line-height: 1; color: var(--red); }
.termin-date .month{ font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gray); }
.termin-info { flex: 1; display: flex; flex-direction: column; gap: .15rem; }
.termin-info strong { font-size: 1rem; }
.termin-info span { font-size: .82rem; color: var(--gray-light); }
.termin-type { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; padding: .1rem .5rem; border-radius: 4px; display: inline-block; width: fit-content; }
.termin-type.liga { background: rgba(212,31,31,0.2); color: var(--red); }
.termin-arrow { color: var(--gray); transition: color .2s; }
.termin-item:hover .termin-arrow { color: var(--red); }

/* ── PAGE HERO ── */
.page-hero {
  padding: calc(var(--nav-h) + 3rem) 1.5rem 3rem;
  background: linear-gradient(160deg, var(--dark) 0%, var(--lane) 100%);
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  margin-bottom: .75rem;
}
.page-hero p { color: var(--gray-light); font-size: 1.1rem; }
.lane-deco {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.03) 80px, rgba(255,255,255,0.03) 82px);
}

/* ── PLAYER CARDS ── */
.player-card {
  display: flex; gap: 2rem; align-items: flex-start;
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: border-color .25s, box-shadow .25s;
}
.player-card:hover {
  border-color: rgba(212,31,31,0.5);
  box-shadow: 0 0 30px rgba(212,31,31,0.1);
}
.player-card-star { border-color: rgba(232,160,32,0.4); }
.player-card-star:hover { border-color: var(--gold); box-shadow: 0 0 30px rgba(232,160,32,0.2); }

.player-card-avatar {
  min-width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--dark3);
  border: 2.5px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.6rem; color: var(--red);
}
.avatar-gold { border-color: var(--gold); color: var(--gold); }

.player-card-body { flex: 1; }
.player-card-header {
  display: flex; align-items: baseline;
  gap: 1rem; flex-wrap: wrap;
  margin-bottom: .5rem;
}
.player-card-header h2 {
  font-family: var(--font-head);
  font-size: 2rem; line-height: 1;
}
.player-nick { color: var(--gray); font-style: italic; font-size: .95rem; }
.star-badge {
  font-style: normal;
  background: rgba(232,160,32,0.15);
  color: var(--gold-light);
  font-size: .75rem;
  padding: .2rem .6rem;
  border-radius: 4px;
  border: 1px solid rgba(232,160,32,0.3);
}
.player-bio { color: var(--gray-light); margin-bottom: 1.5rem; font-size: .95rem; }

.player-stats-row {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.pstat {
  display: flex; flex-direction: column;
  background: var(--dark3);
  padding: .6rem 1rem;
  border-radius: var(--radius);
  min-width: 80px; text-align: center;
}
.pstat-num {
  font-family: var(--font-head);
  font-size: 1.5rem; color: var(--red); line-height: 1;
}
.pstat-lbl { font-size: .7rem; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; margin-top: .2rem; }
.pstat-gold .pstat-num { color: var(--gold); }

/* ── TERMINE FULL LIST ── */
.termine-group-label {
  font-family: var(--font-head); font-size: 1.6rem;
  color: var(--red);
  border-bottom: 1px solid var(--dark3);
  padding-bottom: .5rem;
  margin: 2.5rem 0 1.25rem;
}
.termine-full-list { display: flex; flex-direction: column; gap: .6rem; }
.filter-tabs {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.filter-btn {
  font-family: var(--font-head);
  font-size: .95rem;
  padding: .4rem 1.1rem;
  border: 1.5px solid var(--dark3);
  border-radius: 20px;
  background: transparent; color: var(--gray-light);
  cursor: pointer; transition: .2s;
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--red); color: var(--red);
}
.legend-row {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: .82rem; color: var(--gray);
}
.leg-item { display: flex; align-items: center; gap: .4rem; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-liga     { background: var(--red); }
.dot-training { background: #2E86AB; }
.dot-turnier  { background: var(--gold); }
.dot-done     { background: #555; }

.tf-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius);
  padding: .9rem 1.1rem;
  transition: border-color .2s, transform .2s;
}
.tf-item:hover { border-color: rgba(212,31,31,0.4); transform: translateX(3px); }
.tf-item.done { opacity: .65; }
.tf-item.next-game {
  border-color: var(--red);
  background: rgba(212,31,31,0.07);
}
.tf-date {
  min-width: 48px; text-align: center;
  display: flex; flex-direction: column;
}
.tf-day  { font-family: var(--font-head); font-size: 1.6rem; line-height: 1; color: var(--red); }
.tf-mon  { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); }
.tf-dot  { min-width: 10px; height: 10px; border-radius: 50%; margin: 0 .25rem; }
.tf-body { flex: 1; display: flex; flex-direction: column; gap: .15rem; }
.tf-body strong { font-size: .95rem; }
.tf-body span   { font-size: .8rem; color: var(--gray-light); }
.tf-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .2rem; }
.tag-liga, .tag-training, .tag-turnier, .tag-h, .tag-aw, .tag-done, .tag-next {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .08em;
  padding: .15rem .5rem; border-radius: 3px;
}
.tag-liga     { background: rgba(212,31,31,0.2); color: var(--red); }
.tag-training { background: rgba(46,134,171,0.2); color: #5BB8D4; }
.tag-turnier  { background: rgba(232,160,32,0.2); color: var(--gold-light); }
.tag-h        { background: rgba(40,160,80,0.15); color: #5DD490; }
.tag-aw       { background: rgba(100,100,200,0.15); color: #9090E8; }
.tag-done     { background: rgba(100,100,100,0.2); color: #888; }
.tag-next     { background: rgba(212,31,31,0.3); color: var(--red); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }

/* ── SHOP ── */
.shop-banner {
  background: linear-gradient(135deg, var(--red-dark), #7a0f0f);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.shop-banner h3 { font-family: var(--font-head); font-size: 2rem; margin-bottom: .5rem; }
.shop-banner p  { color: rgba(255,255,255,0.8); font-size: .95rem; }
.shop-banner-icon { font-size: 4rem; opacity: .7; }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.shop-card {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.shop-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.shop-card-img {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
}
.shop-card-img.shirt   { background: linear-gradient(135deg, #1a0a0a, #2d0d0d); }
.shop-card-img.hoodie  { background: linear-gradient(135deg, #0d0d1a, #141428); }
.shop-card-img.cap     { background: linear-gradient(135deg, #0d1a0d, #142814); }
.shop-card-img.bag     { background: linear-gradient(135deg, #1a1a0a, #2d2d0d); }
.shop-card-img.towel   { background: linear-gradient(135deg, #1a0a1a, #2d0d2d); }
.shop-card-img.sticker { background: linear-gradient(135deg, #0d1a1a, #0d2828); }
.shirt-preview { display: flex; align-items: center; justify-content: center; }
.shirt-shape, .hoodie-shape, .cap-shape, .bag-shape, .towel-shape, .sticker-shape {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.shirt-text { font-family: var(--font-head); font-size: 1.8rem; color: var(--red); }
.shop-card-body { padding: 1.25rem 1.5rem; }
.shop-card-body h4 { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: .4rem; }
.shop-card-body p  { font-size: .85rem; color: var(--gray-light); margin-bottom: 1rem; }
.shop-price {
  font-family: var(--font-head); font-size: 1.6rem;
  color: var(--red); margin-bottom: 1rem;
}
.shop-info-box {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.shop-info-box h3 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 2rem; }
.shop-steps {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: .5rem;
}
.shop-step {
  display: flex; flex-direction: column; align-items: center;
  gap: .75rem; max-width: 200px; text-align: center;
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.4rem;
}
.shop-step p { font-size: .9rem; color: var(--gray-light); }

/* ── KONTAKT ── */
.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.kontakt-form-wrap h3 {
  font-family: var(--font-head); font-size: 2rem; margin-bottom: 1.5rem;
}
.kontakt-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .85rem; color: var(--gray-light); letter-spacing: .05em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body); font-size: 1rem;
  padding: .7rem 1rem;
  transition: border-color .2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group select option { background: var(--dark2); }
.form-group textarea { resize: vertical; }
.form-success {
  text-align: center; padding: 3rem 2rem;
  background: var(--dark2); border-radius: var(--radius-lg);
}
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h4 { font-family: var(--font-head); font-size: 2rem; margin-bottom: .5rem; }

.kontakt-info { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.info-icon { font-size: 1.4rem; margin-top: .1rem; }
.info-card h4 { font-weight: 600; margin-bottom: .2rem; }
.info-card p  { font-size: .9rem; color: var(--gray-light); line-height: 1.5; }
.info-card a  { color: var(--red); }
.mitspielen-box {
  background: linear-gradient(135deg, rgba(212,31,31,0.15), rgba(212,31,31,0.05));
  border: 1px solid rgba(212,31,31,0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.mitspielen-box h4 { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: .5rem; }
.mitspielen-box p  { font-size: .9rem; color: var(--gray-light); margin-bottom: 1rem; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(212,31,31,0.2);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.5rem;
  text-align: center;
}
.footer-logo .logo-img { height: 50px; margin: 0 auto; }
.footer-links {
  display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center;
}
.footer-links a {
  color: var(--gray); font-size: .9rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--red); }
.footer-copy { font-size: .8rem; color: var(--gray); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: .5rem; }
  .nav-links.open {
    display: flex;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    padding: 1.5rem;
    border-bottom: 1px solid var(--dark3);
  }
  .burger { display: flex; }
  .player-card { flex-direction: column; }
  .kontakt-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .shop-banner { flex-direction: column; text-align: center; }
  .hero-cta { flex-direction: column; align-items: center; }
  .players-strip { justify-content: center; }
}

/* ── HERO LOGO ── */
.hero-logo-wrap {
  margin: 1.5rem auto;
  width: clamp(200px, 40vw, 340px);
}
.hero-logo {
  width: 100%; border-radius: 50%;
  box-shadow: 0 0 60px rgba(255,100,0,0.4), 0 0 120px rgba(212,31,31,0.25);
  animation: heroFadeUp .9s ease both, floatLogo 4s ease-in-out 1s infinite;
}
@keyframes floatLogo {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.footer-logo-img {
  width: 70px; height: 70px;
  border-radius: 50%; object-fit: cover;
  margin: 0 auto;
}

/* ── KPI ROW ── */
.kpi-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}
.kpi {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex; flex-direction: column; gap: .25rem;
  transition: border-color .2s, transform .2s;
}
.kpi:hover { border-color: var(--red); transform: translateY(-3px); }
.kpi-num {
  font-family: var(--font-head);
  font-size: 2.6rem; line-height: 1;
  color: var(--red);
}
.kpi-label { font-weight: 600; font-size: .95rem; }
.kpi-sub   { font-size: .78rem; color: var(--gray); }

/* ── SECTION SUB TITLE ── */
.section-sub-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gray-light);
  border-left: 3px solid var(--red);
  padding-left: .75rem;
  margin-bottom: 1rem;
  letter-spacing: .03em;
}

/* ── STATS TABLES ── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark3);
  margin-bottom: 1rem;
}
.stats-table {
  width: 100%; border-collapse: collapse;
  font-size: .9rem;
}
.stats-table thead tr {
  background: var(--dark3);
}
.stats-table th {
  padding: .75rem 1rem;
  text-align: left;
  font-family: var(--font-head);
  font-size: .95rem;
  color: var(--gray-light);
  letter-spacing: .05em;
  white-space: nowrap;
}
.stats-table td {
  padding: .65rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  white-space: nowrap;
}
.stats-table tr.done   { opacity: .75; }
.stats-table tr.upcoming td { color: var(--gray); font-style: italic; }
.stats-table tr:hover td { background: rgba(255,255,255,0.03); }

.league-self td { color: var(--white) !important; font-style: normal !important; opacity: 1 !important; }
.league-self { background: rgba(212,31,31,0.12); border-left: 3px solid var(--red); }
.league-table td:first-child { font-family: var(--font-head); font-size: 1.1rem; }

.ha {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  padding: .15rem .45rem; border-radius: 3px;
  letter-spacing: .05em;
}
.ha.he { background: rgba(40,160,80,0.2); color: #5DD490; }
.ha.aw { background: rgba(100,100,220,0.2); color: #9090F0; }

.res {
  display: inline-block;
  font-family: var(--font-head); font-size: 1rem;
  padding: .1rem .5rem; border-radius: 4px;
}
.res.win  { background: rgba(40,160,80,0.2); color: #5DD490; }
.res.loss { background: rgba(212,31,31,0.2); color: #E87070; }
.res.draw { background: rgba(232,160,32,0.2); color: var(--gold-light); }

/* ── DARK SECTION ── */
.dark-section { background: var(--dark); }

/* ── TEAM PAGE: PERSONAL STATS ── */
.player-personal-stats {
  margin-top: 2.5rem;
}
.player-personal-stats .section-sub-title {
  margin-bottom: 1.25rem;
}
.player-st-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.player-st-card {
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.player-st-card h5 {
  font-family: var(--font-head);
  font-size: 1.1rem; color: var(--gray-light);
  margin-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: .4rem;
}
.mini-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.mini-table td { padding: .3rem 0; }
.mini-table td:last-child { text-align: right; color: var(--red); font-weight: 600; }

/* ── LOGO AUDIO INTERACTION ── */
.logo-img, .hero-logo, .footer-logo-img {
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.logo-img:hover, .footer-logo-img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 8px rgba(255,100,0,0.6));
}
.hero-logo:hover {
  filter: drop-shadow(0 0 20px rgba(255,100,0,0.8));
}

/* Pulsing ring when song is playing */
.logo-playing {
  animation: logoPulse 1s ease-in-out infinite !important;
  filter: drop-shadow(0 0 16px rgba(255,100,0,0.9)) !important;
}
@keyframes logoPulse {
  0%,100% { transform: scale(1);    }
  50%      { transform: scale(1.06); }
}

/* Toast message */
#sr-toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(20,20,20,0.95);
  color: #fff;
  border: 1px solid rgba(255,100,0,0.5);
  border-radius: 30px;
  padding: .65rem 1.5rem;
  font-family: var(--font-body);
  font-size: .95rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  z-index: 9999;
  pointer-events: none;
}
#sr-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── BETA STICKER ── */
.beta-sticker {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(212, 31, 31, 0.65);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: .45rem .9rem;
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .08em;
  z-index: 998;
  pointer-events: none;
  user-select: none;
  box-shadow: 0 4px 16px rgba(212,31,31,0.2);
}
.beta-sticker::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.75);
  border-radius: 50%;
  margin-right: .5rem;
  vertical-align: middle;
  animation: betaPulse 1.4s ease-in-out infinite;
}
@keyframes betaPulse {
  0%,100% { opacity: .75; transform: scale(1); }
  50%      { opacity: .3; transform: scale(0.7); }
}


/* ── HERO PLAY HINT ── */
.hero-play-hint {
  font-size: .78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: -.75rem;
  margin-bottom: 1rem;
  animation: heroFadeUp 1s ease .3s both;
}

/* ── UNCLE SAM IMAGE ── */
.uncle-sam-img {
  width: clamp(220px, 45vw, 380px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(212,31,31,0.5));
  animation: heroFadeUp .7s ease both;
  transition: filter .3s, transform .3s;
}
.uncle-sam-img:hover {
  filter: drop-shadow(0 0 60px rgba(212,31,31,0.8));
  transform: scale(1.02);
}
.uncle-sam-wrap {
  width: auto;
  display: flex; justify-content: center;
}

/* ── COMING SOON STICKER ── */
.coming-soon-sticker {
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1a0800, #2a1000);
  border: 2px solid var(--red);
  box-shadow: 0 0 40px rgba(212,31,31,0.3), inset 0 0 40px rgba(212,31,31,0.05);
  padding: 2rem 2.5rem;
  animation: csPulse 3s ease-in-out infinite;
}
@keyframes csPulse {
  0%,100% { box-shadow: 0 0 30px rgba(212,31,31,0.3), inset 0 0 30px rgba(212,31,31,0.05); }
  50%      { box-shadow: 0 0 60px rgba(212,31,31,0.6), inset 0 0 50px rgba(212,31,31,0.1); }
}
.cs-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap; text-align: center;
}
.cs-icon { font-size: 2.5rem; }
.cs-text { display: flex; flex-direction: column; gap: .3rem; }
.cs-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--red);
  letter-spacing: .1em;
  line-height: 1;
}
.cs-sub {
  font-size: clamp(.85rem, 2vw, 1.05rem);
  color: var(--gray-light);
  font-style: italic;
}

/* ── IMPRESSUM ── */
.impressum-section {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--dark3);
}
.impressum-toggle {
  background: none;
  border: none;
  color: var(--gray);
  font-family: var(--font-body);
  font-size: .85rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  transition: color .2s;
}
.impressum-toggle:hover { color: var(--white); }

.impressum-box {
  display: none;
  margin-top: 1.5rem;
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  animation: heroFadeUp .3s ease both;
  max-width: 680px;
}
.impressum-box.open { display: block; }
.impressum-box h3 {
  font-family: var(--font-head);
  font-size: 1.8rem; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--dark3);
  padding-bottom: .75rem;
}
.imp-content p {
  font-size: .9rem;
  color: var(--gray-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.imp-content p strong { color: var(--white); display: block; margin-bottom: .25rem; }
.imp-content a { color: var(--red); }

/* ── HERO LAYOUT WITH WALLPAPER ── */
.hero-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative; z-index: 2;
}
.hero-right-spacer {
  flex: 1; max-width: 260px;
}

/* ── WALLPAPER CARD ── */
.hero-wallpaper-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: heroFadeUp .8s ease .2s both;
}

.wp-phone-frame {
  width: 130px;
  height: 280px;
  border-radius: 22px;
  border: 2.5px solid rgba(255,255,255,0.15);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.5),
    0 8px 32px rgba(0,0,0,0.6),
    0 0 20px rgba(255,80,0,0.3);
  position: relative;
  transition: box-shadow .3s, transform .3s;
  flex-shrink: 0;
}
.wp-phone-frame:hover {
  box-shadow:
    0 0 0 1px rgba(255,80,0,0.4),
    0 12px 40px rgba(0,0,0,0.7),
    0 0 40px rgba(255,80,0,0.5);
  transform: scale(1.03) translateY(-3px);
}
.wp-preview {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.wp-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-align: center;
}
.wp-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--red);
  font-weight: 600;
}
.wp-info p {
  font-size: .78rem;
  color: var(--gray-light);
  line-height: 1.4;
  margin: 0;
}
.wp-download-btn {
  font-size: .85rem !important;
  padding: .5rem 1.2rem !important;
  width: 100%;
  text-align: center;
}
.wp-hint {
  font-size: .65rem;
  color: var(--gray);
  line-height: 1.4;
  max-width: 130px;
}

/* ── RESPONSIVE: stack on mobile ── */
@media (max-width: 820px) {
  .hero-layout {
    flex-direction: column;
    gap: 2rem;
  }
  .hero-wallpaper-card {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }
  .wp-phone-frame {
    width: 90px;
    height: 195px;
  }
  .wp-info { align-items: flex-start; text-align: left; }
  .wp-hint { max-width: 180px; }
  .hero-right-spacer { display: none; }
}

/* ── SOCIAL LINKS ── */
.hero-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  animation: heroFadeUp 1s ease .4s both;
}
.social-link {
  display: flex; align-items: center; gap: .6rem;
  padding: .5rem 1.1rem;
  border-radius: 30px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.social-link:hover {
  transform: translateY(-2px);
}
.social-fb {
  background: rgba(24, 119, 242, 0.12);
  border-color: rgba(24, 119, 242, 0.4);
  color: #5899f5;
}
.social-fb:hover {
  background: rgba(24, 119, 242, 0.22);
  border-color: #1877f2;
  box-shadow: 0 4px 16px rgba(24,119,242,0.25);
}
.social-ig {
  background: rgba(225, 48, 108, 0.12);
  border-color: rgba(225, 48, 108, 0.4);
  color: #e1306c;
}
.social-ig:hover {
  background: rgba(225, 48, 108, 0.22);
  border-color: #e1306c;
  box-shadow: 0 4px 16px rgba(225,48,108,0.25);
}
.social-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

/* ── APP NAV LINK ── */
.nav-app-link {
  background: rgba(212,31,31,0.15) !important;
  border: 1px solid rgba(212,31,31,0.4) !important;
  border-radius: 20px !important;
  padding: 3px 12px !important;
  color: #F5F0E8 !important;
  transition: background 0.2s, border-color 0.2s !important;
}
.nav-app-link:hover {
  background: rgba(212,31,31,0.3) !important;
  border-color: var(--red) !important;
}
.nav-app-link::after { display: none !important; }

/* ── APP SOCIAL LINK ── */
.social-app {
  background: rgba(212,31,31,0.12);
  border-color: rgba(212,31,31,0.4);
  color: #F5F0E8;
}
.social-app:hover {
  background: rgba(212,31,31,0.22);
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(212,31,31,0.25);
}
