/* ============================================
   RKG REILINGEN-HOCKENHEIM - Modern Website
   Theme: Dark, Athletic, Powerful Wrestling
   Colors: Black & White with Red accents
   ============================================ */

/* === IMPORTS === */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

/* === CSS VARIABLES === */
:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #888888;
    --off-white: #e8e8e8;
    --white: #ffffff;
    --red: #c41e3a;
    --red-dark: #9a1830;
    --red-light: #e63950;
    --gold: #d4a843;
    --gold-light: #f0c75e;

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-display: 'Bebas Neue', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 30px rgba(196, 30, 58, 0.3);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --max-width: 1280px;
    --nav-height: 80px;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--red-light);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    height: var(--nav-height);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.nav-brand img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.15);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-brand-text .club-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.nav-brand-text .club-location {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-top: 2px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--off-white);
    padding: 8px 14px;
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--red);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
}

.nav-links a.active {
    color: var(--red-light);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.97);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    z-index: 1000;
    margin-top: 10px;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(10, 10, 10, 0.97);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

.nav-dropdown-menu a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
    color: var(--off-white) !important;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-dropdown-menu a::after {
    display: none !important;
}

.nav-dropdown-menu a:hover {
    background: rgba(196, 30, 58, 0.15);
    color: var(--red-light) !important;
}

.nav-dropdown-menu a i {
    width: 18px;
    text-align: center;
    color: var(--red);
    font-size: 0.8rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

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

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

/* Social icons in nav */
.nav-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 16px;
}

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: var(--off-white);
    transition: var(--transition);
    font-size: 1rem;
}

.nav-social a:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.08);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(10,10,10,0.35) 0%,
        rgba(10,10,10,0.1) 30%,
        rgba(10,10,10,0.15) 60%,
        rgba(10,10,10,0.7) 100%
    );
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 30, 58, 0.15);
    border: 1px solid rgba(196, 30, 58, 0.4);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--red-light);
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 0.95;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 8px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 2px 20px rgba(0,0,0,0.7), 0 4px 40px rgba(0,0,0,0.4);
}

.hero h1 .accent {
    color: var(--red);
    display: block;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.hero-scroll svg {
    width: 28px;
    height: 28px;
    color: var(--light-gray);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 14px 32px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.8rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--dark);
}

.section-darker {
    background: var(--dark-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--red);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--light-gray);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Divider line */
.divider {
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 20px auto;
}

/* ============================================
   QUOTE / HIGHLIGHT SECTION
   ============================================ */
.quote-section {
    position: relative;
    padding: 80px 0;
    background: var(--dark);
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/concrete-bg.jpg') center/cover no-repeat;
    opacity: 0.06;
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 16px;
}

.quote-text .highlight {
    color: var(--red);
}

.quote-author {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ============================================
   NEWS / BLOG CARDS
   ============================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.news-card {
    background: var(--dark-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.04);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(196, 30, 58, 0.2);
}

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

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

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

.news-card-img .card-date {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 3px;
}

.news-card-body {
    padding: 24px;
}

.news-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-card-body p {
    font-size: 0.9rem;
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-body .read-more {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-card-body .read-more:hover {
    color: var(--red-light);
    gap: 10px;
}

/* ============================================
   SPONSOR SECTION
   ============================================ */
/* ---- Sponsor Container: ONE white box for all logos ---- */
.sponsors-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 36px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.sponsors-container.premium-box {
    padding: 44px 40px;
    gap: 40px;
}

.sponsors-container .sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sponsors-container .sponsor-logo:hover {
    transform: scale(1.08);
}

.sponsors-container .sponsor-logo.premium {
    height: 90px;
    max-width: 240px;
}

.sponsors-container .sponsor-logo.normal {
    height: 70px;
    max-width: 180px;
}

.sponsors-container .sponsor-logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Legacy compat: sponsors-row / sponsors-grid (homepage etc.) */
.sponsors-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
}

.sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 16px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    text-decoration: none;
}

.sponsor-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(196,30,58,0.1);
}

.sponsor-logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.sponsor-logo.premium {
    height: 100px;
    max-width: 240px;
    padding: 18px 24px;
}

.sponsor-logo.normal {
    height: 80px;
    max-width: 200px;
}

.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .sponsors-container {
        padding: 24px 16px;
        gap: 16px;
    }
    .sponsors-container .sponsor-logo.premium {
        height: 60px;
        max-width: 160px;
    }
    .sponsors-container .sponsor-logo.normal {
        height: 50px;
        max-width: 130px;
    }
    .sponsor-logo.premium {
        height: 70px;
        max-width: 160px;
    }
    .sponsor-logo.normal {
        height: 55px;
        max-width: 140px;
    }
}

/* ============================================
   SCHEDULE / TERMINE
   ============================================ */
.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.schedule-tab {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 28px;
    border-radius: 4px;
    background: var(--medium-gray);
    color: var(--light-gray);
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.schedule-tab:hover,
.schedule-tab.active {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.schedule-list {
    max-width: 800px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    background: var(--dark-gray);
    border-radius: 6px;
    margin-bottom: 8px;
    border-left: 3px solid var(--red);
    transition: var(--transition);
}

.schedule-item:hover {
    background: var(--medium-gray);
    transform: translateX(4px);
}

.schedule-item .date {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--red-light);
    min-width: 100px;
    text-transform: uppercase;
}

.schedule-item .matchup {
    flex: 1;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--off-white);
}

.schedule-item .matchup strong {
    color: var(--white);
}

.schedule-item .location {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 3px;
    margin-left: 16px;
}

.schedule-item .location.home {
    background: rgba(196, 30, 58, 0.15);
    color: var(--red-light);
    border: 1px solid rgba(196, 30, 58, 0.3);
}

.schedule-item .location.away {
    background: rgba(255,255,255,0.05);
    color: var(--light-gray);
    border: 1px solid rgba(255,255,255,0.1);
}

/* ============================================
   TERMINE - Tabs & List (PHP Version)
   ============================================ */
.termine-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.termine-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 14px 28px;
    background: var(--dark-gray, #1a1a1a);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--light-gray, #888);
    font-family: 'Oswald', sans-serif;
}

.termine-tab:hover {
    background: var(--medium-gray, #2a2a2a);
    border-color: rgba(196,30,58,0.3);
}

.termine-tab.active {
    background: var(--red, #c41e3a);
    color: #fff;
    border-color: var(--red, #c41e3a);
}

.termine-tab .tab-team {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.termine-tab .tab-liga {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.75;
}

.termine-tab.active .tab-liga {
    opacity: 0.9;
}

.termine-list {
    max-width: 900px;
    margin: 0 auto;
}

.termin-row {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: var(--dark-gray, #1a1a1a);
    border-radius: 8px;
    margin-bottom: 8px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    gap: 16px;
}

.termin-row:hover {
    background: var(--medium-gray, #2a2a2a);
    transform: translateX(4px);
}

.termin-row.heim {
    border-left-color: var(--red, #c41e3a);
}

.termin-row.past {
    opacity: 0.5;
}

.termin-row.past:hover {
    opacity: 0.8;
}

.termin-date-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    gap: 2px;
}

.termin-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--red, #c41e3a);
    font-weight: 600;
}

.termin-datum {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
}

.termin-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.termin-gegner {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--off-white, #e8e8e8);
    font-weight: 500;
}

.termin-liga-small {
    font-size: 0.7rem;
    color: var(--light-gray, #888);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.termin-ort-col {
    min-width: 90px;
    text-align: center;
}

.badge-heim {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 4px;
    background: rgba(196, 30, 58, 0.15);
    color: #e63950;
    border: 1px solid rgba(196, 30, 58, 0.3);
}

.badge-auswaerts {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
    color: var(--light-gray, #888);
    border: 1px solid rgba(255,255,255,0.1);
}

.termin-ergebnis-col {
    min-width: 90px;
    text-align: right;
}

.termin-ergebnis-col .ergebnis {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 1px;
}

.termin-ergebnis-col .uhrzeit {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    color: var(--gold, #d4a843);
    font-weight: 500;
}

@media (max-width: 768px) {
    .termine-tabs {
        gap: 6px;
    }
    .termine-tab {
        padding: 10px 16px;
    }
    .termine-tab .tab-team {
        font-size: 0.85rem;
    }
    .termin-row {
        flex-wrap: wrap;
        gap: 8px;
        padding: 14px 16px;
    }
    .termin-date-col {
        min-width: 60px;
    }
    .termin-ort-col,
    .termin-ergebnis-col {
        min-width: auto;
    }
}

/* ============================================
   WAPPEN TRAILER SECTION
   ============================================ */
.wappen-trailer-section {
    position: relative;
    overflow: hidden;
    height: 500px;
    background: #000;
}

.wappen-trailer-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.wappen-trailer-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.wappen-trailer-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.wappen-trailer-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
    padding: 24px;
}

.wappen-trailer-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.2);
    box-shadow: 0 0 60px rgba(196, 30, 58, 0.3), 0 0 120px rgba(196, 30, 58, 0.1);
    margin-bottom: 24px;
    animation: wappenPulse 4s ease-in-out infinite;
}

@keyframes wappenPulse {
    0%, 100% { box-shadow: 0 0 60px rgba(196, 30, 58, 0.3), 0 0 120px rgba(196, 30, 58, 0.1); transform: scale(1); }
    50% { box-shadow: 0 0 80px rgba(196, 30, 58, 0.5), 0 0 160px rgba(196, 30, 58, 0.2); transform: scale(1.03); }
}

.wappen-trailer-content h2 {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.wappen-trailer-content h2 span {
    color: var(--red, #c41e3a);
}

.wappen-trailer-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 3px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .wappen-trailer-section {
        height: 400px;
    }
    .wappen-trailer-logo {
        width: 100px;
        height: 100px;
    }
}

/* ============================================
   STARTSEITE - NÄCHSTE KÄMPFE PREVIEW
   ============================================ */
.termine-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.termin-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 20px 24px;
    transition: all 0.3s ease;
}

.termin-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(196, 30, 58, 0.3);
    transform: translateX(4px);
}

.termin-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    gap: 2px;
}

.termin-day {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--red, #c41e3a);
    font-weight: 600;
}

.termin-num {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

.termin-info {
    flex: 1;
}

.termin-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--off-white, #e8e8e8);
    font-weight: 600;
    margin: 0 0 4px 0;
}

.termin-liga {
    font-size: 0.75rem;
    color: var(--light-gray, #888);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.termin-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 4px;
    white-space: nowrap;
}

.termin-badge.heim {
    background: rgba(196, 30, 58, 0.15);
    color: #e63950;
    border: 1px solid rgba(196, 30, 58, 0.3);
}

.termin-badge.auswaerts {
    background: rgba(255,255,255,0.05);
    color: var(--light-gray, #888);
    border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .termin-card {
        flex-wrap: wrap;
        gap: 10px;
        padding: 16px;
    }
    .termin-date {
        min-width: 60px;
    }
    .termin-badge {
        margin-left: auto;
    }
}

/* ============================================
   TEAM NOTICE
   ============================================ */
.team-notice {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid rgba(196, 30, 58, 0.3);
    padding: 16px 28px;
    border-radius: 6px;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 0.9rem;
    color: var(--red-light, #e63950);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
}

.team-notice i {
    font-size: 1.1rem;
}

.trainer-section {
    text-align: center;
    margin-top: 48px;
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
}

.trainer-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: var(--off-white, #e8e8e8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.trainer-section .trainer-names {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--red, #c41e3a);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.trainer-section p {
    color: var(--light-gray, #888);
    font-size: 0.95rem;
}

/* ============================================
   PAGE HERO (Sub-pages)
   ============================================ */
.page-hero {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: var(--nav-height);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.08);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.55) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.4);
}

.page-hero-content p {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 10px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* ============================================
   TRAINING TIMES
   ============================================ */
.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 28px;
}

.training-card {
    background: var(--dark-gray);
    border-radius: 8px;
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.training-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--red-light));
}

.training-card:hover {
    border-color: rgba(196, 30, 58, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.training-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.training-card .age-info {
    font-size: 0.85rem;
    color: var(--red-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.training-time {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.training-time:last-child {
    border-bottom: none;
}

.training-time .day {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--off-white);
    min-width: 110px;
    text-transform: uppercase;
}

.training-time .time {
    font-size: 0.9rem;
    color: var(--light-gray);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.team-intro p {
    font-size: 1.05rem;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.team-notice {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid rgba(196, 30, 58, 0.3);
    padding: 16px 28px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--red-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
}

/* ============================================
   BLOG POST PAGE
   ============================================ */
.blog-post-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 24px;
}

.blog-post-content .post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    font-size: 0.85rem;
    color: var(--light-gray);
}

.blog-post-content .post-meta .tag {
    background: var(--red);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 3px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-post-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.3;
}

.blog-post-content p {
    font-size: 1.05rem;
    color: var(--off-white);
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-post-content img {
    border-radius: 8px;
    margin: 32px 0;
    width: 100%;
}

/* ============================================
   LEGAL PAGES (Impressum, Datenschutz, AGB)
   ============================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px 100px;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white);
    margin-top: 40px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--off-white);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 0.95rem;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.legal-content ul li {
    font-size: 0.95rem;
    color: var(--light-gray);
    line-height: 1.8;
    position: relative;
    padding-left: 16px;
}

.legal-content ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--red);
}

.legal-content a {
    color: var(--red-light);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--red);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0 0;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand img {
    height: auto;
    width: 180px;
    border-radius: 8px;
    object-fit: contain;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img.footer-logo-img {
    height: auto;
    width: 180px;
    border-radius: 8px;
    object-fit: contain;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--light-gray);
    line-height: 1.7;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: var(--off-white);
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--light-gray);
    padding: 5px 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--red-light);
    padding-left: 6px;
}

.footer-col p {
    font-size: 0.9rem;
    color: var(--light-gray);
    line-height: 1.7;
}

.footer-col .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--light-gray);
}

.footer-col .contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--red);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--light-gray);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--light-gray);
}

.footer-bottom-links a:hover {
    color: var(--red-light);
}

/* ============================================
   FEATURE CARDS (Homepage)
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--dark-gray);
    border-radius: 8px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(196, 30, 58, 0.2);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15), rgba(196, 30, 58, 0.05));
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-radius: 16px;
    color: var(--red);
    font-size: 2.2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.25), rgba(196, 30, 58, 0.1));
    transform: scale(1.08);
    border-color: rgba(196, 30, 58, 0.4);
}

.feature-icon svg {
    width: 38px;
    height: 38px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--light-gray);
    line-height: 1.6;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--red);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-item p {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   JUGEND PAGE SPECIFIC
   ============================================ */
.jugend-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.jugend-text h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px;
    margin-top: 32px;
}

.jugend-text h3:first-child {
    margin-top: 0;
}

.jugend-text p {
    font-size: 1rem;
    color: var(--light-gray);
    line-height: 1.8;
}

.jugend-image {
    display: flex;
    justify-content: center;
}

.jugend-image img {
    max-width: 420px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Jugend Cards (PHP Version) */
.jugend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.jugend-card {
    background: var(--dark-gray, #1a1a1a);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.jugend-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(196, 30, 58, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--red-light, #e8344e);
}

.jugend-card h3 {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white, #fff);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.jugend-age {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 0.85rem;
    color: var(--red-light, #e8344e);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.jugend-card > p {
    font-size: 0.95rem;
    color: var(--light-gray, #888);
    line-height: 1.7;
    margin-bottom: 20px;
}

.jugend-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--white, #fff);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.jugend-time i {
    color: var(--red-light, #e8344e);
    font-size: 0.8rem;
}

.jugend-stil {
    font-size: 0.8rem;
    color: var(--light-gray, #888);
    font-style: italic;
}

/* ============================================
   SHOP
   ============================================ */
.shop-section-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-gray);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.shop-card {
    background: var(--dark-gray);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.shop-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(196, 30, 58, 0.2);
}

.shop-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.shop-card-img .badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 3px;
}

.shop-card-img .badge.sold-out {
    background: var(--medium-gray);
    color: var(--light-gray);
}

.shop-card-img .badge.popular {
    background: var(--gold);
    color: var(--black);
}

.shop-card-img .icon-placeholder {
    font-size: 3.5rem;
    color: var(--red);
    opacity: 0.6;
}

.shop-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shop-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 6px;
    line-height: 1.3;
}

.shop-card-body .shop-meta {
    font-size: 0.8rem;
    color: var(--light-gray);
    margin-bottom: 12px;
    line-height: 1.5;
}

.shop-card-body .shop-meta i {
    color: var(--red);
    margin-right: 4px;
}

.shop-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.shop-price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
}

.shop-price .old-price {
    font-size: 1rem;
    color: var(--light-gray);
    text-decoration: line-through;
    margin-right: 8px;
}

.btn-cart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    background: var(--red);
    color: var(--white);
}

.btn-cart:hover {
    background: var(--red-light);
    transform: translateY(-1px);
}

.btn-cart:active {
    transform: scale(0.97);
}

.btn-cart.added {
    background: #2ecc71;
}

/* Size selector */
.size-selector {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.size-btn {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.size-btn:hover,
.size-btn.active {
    border-color: var(--red);
    color: var(--white);
    background: rgba(196, 30, 58, 0.15);
}

/* Cart sidebar */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--dark);
    z-index: 2001;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255,255,255,0.06);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-close {
    background: none;
    border: none;
    color: var(--light-gray);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
}

.cart-close:hover {
    color: var(--white);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.cart-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--red);
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.cart-item-info p {
    font-size: 0.8rem;
    color: var(--light-gray);
}

.cart-item-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--light-gray);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 4px;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: var(--red);
}

.cart-empty {
    text-align: center;
    padding: 60px 24px;
    color: var(--light-gray);
}

.cart-empty i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.3;
    display: block;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: var(--dark-gray);
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cart-total span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--off-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-total .total-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
}

.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    background: var(--red);
    color: var(--white);
}

.btn-checkout:hover {
    background: var(--red-light);
    box-shadow: var(--shadow-glow);
}

.btn-checkout:disabled {
    background: var(--medium-gray);
    color: var(--light-gray);
    cursor: not-allowed;
    box-shadow: none;
}

/* Cart count badge on nav */
.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: var(--off-white);
    transition: var(--transition);
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.cart-btn:hover {
    background: var(--red);
    color: var(--white);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}

.cart-count.visible {
    opacity: 1;
    transform: scale(1);
}

/* Checkout page */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.checkout-form {
    background: var(--dark-gray);
    border-radius: 8px;
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.04);
}

.checkout-form h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light-gray);
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--medium-gray);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 2px rgba(196, 30, 58, 0.2);
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.25);
}

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

.checkout-summary {
    background: var(--dark-gray);
    border-radius: 8px;
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.04);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.checkout-summary h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.9rem;
    color: var(--off-white);
}

.summary-item .item-qty {
    color: var(--light-gray);
    font-size: 0.8rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 0;
    margin-top: 8px;
}

.summary-total span:first-child {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-total span:last-child {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
}

.payment-methods {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.payment-btn {
    flex: 1;
    padding: 14px;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.1);
    background: var(--medium-gray);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.payment-btn:hover,
.payment-btn.active {
    border-color: var(--red);
    background: rgba(196, 30, 58, 0.1);
}

.payment-btn i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

/* Quantity controls */
.qty-control {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--medium-gray);
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--red);
}

.qty-value {
    width: 36px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    background: var(--dark-gray);
}

@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    .cart-sidebar {
        width: 100%;
        max-width: 100vw;
    }
    .shop-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .jugend-content {
        grid-template-columns: 1fr;
    }
    .jugend-image {
        order: -1;
    }
    .jugend-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: var(--transition);
        border-left: 1px solid rgba(255,255,255,0.06);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 12px 0;
        width: 100%;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        background: rgba(255,255,255,0.03);
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0 0 0 16px;
        min-width: auto;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown-menu a {
        padding: 10px 0 !important;
    }

    .nav-social {
        margin-left: 0;
        margin-top: 20px;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .schedule-item .location {
        margin-left: 0;
    }

    .page-hero {
        height: 360px;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 10vw, 5rem);
    }
}

@media (max-width: 480px) {
    .nav-brand-text .club-name {
        font-size: 0.9rem;
    }
    .nav-brand img {
        height: 40px;
        width: 40px;
    }
    .section {
        padding: 70px 0;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}
/* ============================================
   SPONSOR RAIL - Always Visible Right Sidebar
   ============================================ */
.sponsor-rail {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    width: 110px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(0,0,0,0.08);
    border-right: none;
    border-radius: 10px 0 0 10px;
    padding: 0;
    box-shadow: -3px 0 20px rgba(0,0,0,0.12);
    overflow: hidden;
    max-height: 420px;
}

.sponsor-rail-header {
    font-family: 'Oswald', sans-serif;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #c41e3a;
    text-align: center;
    padding: 12px 10px 8px;
    border-bottom: 1px solid rgba(196,30,58,0.15);
    white-space: nowrap;
    position: relative;
    z-index: 2;
    font-weight: 600;
    background: rgba(255,255,255,0.97);
}

/* Wrapper clips the scrolling content */
.sponsor-rail-wrapper {
    overflow: hidden;
    height: 370px;
    position: relative;
}

/* Track contains 2x the logos for seamless loop */
.sponsor-rail-track {
    display: flex;
    flex-direction: column;
    animation: sponsorScrollInfinite 18s linear infinite;
}

@keyframes sponsorScrollInfinite {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.sponsor-rail:hover .sponsor-rail-track {
    animation-play-state: paused;
}

.sponsor-rail-item {
    width: 100%;
    padding: 12px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 68px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.sponsor-rail-item:hover {
    transform: scale(1.08);
}

.sponsor-rail-item img {
    max-width: 86px;
    max-height: 50px;
    object-fit: contain;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.sponsor-rail-item:hover img {
    opacity: 1;
}

.sponsor-rail-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Hide on mobile and small screens */
@media (max-width: 1024px) {
    .sponsor-rail {
        display: none;
    }
}

/* ============================================
   PRODUCT SHOWCASE - 3D Inline Presentation
   ============================================ */

/* Product card clickable overlay */
.shop-card.has-showcase {
    cursor: pointer;
}

.shop-card .click-hint {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(196, 30, 58, 0.9);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shop-card.has-showcase:hover .click-hint {
    opacity: 1;
}

/* Product Showcase Inline Viewer */
.product-viewer {
    display: none;
    position: relative;
    width: 100%;
    background: linear-gradient(145deg, #0a0a0a 0%, #111 40%, #1a1a1a 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    margin-bottom: 40px;
    overflow: hidden;
    animation: viewerOpen 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.product-viewer.active {
    display: block;
}

@keyframes viewerOpen {
    from { opacity: 0; max-height: 0; transform: translateY(-20px); }
    to { opacity: 1; max-height: 700px; transform: translateY(0); }
}

.product-viewer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.product-viewer-close:hover {
    background: var(--red);
    transform: rotate(90deg);
}

.product-viewer-inner {
    display: flex;
    align-items: center;
    padding: 40px;
    gap: 50px;
    min-height: 450px;
}

.product-viewer-stage {
    flex: 0 0 420px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    position: relative;
}

.product-viewer-stage::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(196,30,58,0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(8px);
}

.product-viewer-img {
    max-width: 360px;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.6));
    transform-style: preserve-3d;
}

.product-viewer-img.rotating {
    animation: product3DRotate 4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.product-viewer-img.floating {
    animation: productFloat 5s ease-in-out infinite;
}

/* Video in Product Viewer */
.product-viewer-video {
    max-width: 400px;
    max-height: 420px;
    width: 100%;
    border-radius: 12px;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.6));
}

/* Shop Card Video Preview */
.shop-card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.shop-card:hover .shop-card-video,
.shop-card.video-playing .shop-card-video {
    opacity: 1;
}

.shop-card-img {
    position: relative;
    overflow: hidden;
}

.shop-card.has-video .shop-card-img::after {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(196, 30, 58, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    z-index: 3;
    transition: all 0.3s ease;
    padding-left: 4px;
    line-height: 56px;
    text-align: center;
}

.shop-card.has-video:hover .shop-card-img::after {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.3);
}

@keyframes product3DRotate {
    0% { transform: scale(0.8) rotateY(0deg); opacity: 0.5; }
    15% { transform: scale(1.05) rotateY(60deg); opacity: 1; }
    30% { transform: scale(1) rotateY(120deg); }
    50% { transform: scale(1.08) rotateY(200deg); }
    70% { transform: scale(1) rotateY(290deg); }
    85% { transform: scale(1.03) rotateY(340deg); }
    100% { transform: scale(1) rotateY(360deg); }
}

@keyframes productFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg) scale(1); }
    25% { transform: translateY(-12px) rotateY(3deg) scale(1.02); }
    50% { transform: translateY(-6px) rotateY(-2deg) scale(1.01); }
    75% { transform: translateY(-14px) rotateY(4deg) scale(1.03); }
}

.product-viewer-info {
    flex: 1;
    padding-right: 20px;
}

.product-viewer-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.product-viewer-name {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.1;
}

.product-viewer-desc {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-viewer-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.product-viewer-features li {
    color: #bbb;
    font-size: 0.85rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-viewer-features li i {
    color: var(--red);
    font-size: 0.75rem;
    width: 16px;
}

.product-viewer-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-viewer-price .old {
    font-size: 1.4rem;
    color: #666;
    text-decoration: line-through;
    margin-right: 10px;
}

.product-viewer-sizes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.product-viewer-sizes .vsize-btn {
    padding: 8px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    color: #ccc;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-viewer-sizes .vsize-btn:hover {
    border-color: var(--red);
    color: #fff;
}

.product-viewer-sizes .vsize-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.product-viewer-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-viewer-cart-btn:hover {
    background: #e63950;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196,30,58,0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .product-viewer-inner {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }
    .product-viewer-stage {
        flex: none;
        width: 100%;
        height: 300px;
    }
    .product-viewer-name {
        font-size: 1.6rem;
    }
    .product-viewer-price {
        font-size: 2rem;
    }
}

.product-3d:hover {
    animation-play-state: paused;
}

.product-3d:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 25px 50px rgba(196,30,58,0.3));
}

/* Product Card Enhanced */
.shop-card-enhanced {
    position: relative;
    overflow: hidden;
}

.shop-card-enhanced .shop-card-img {
    overflow: hidden;
}

.shop-card-enhanced .shop-card-img img {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-card-enhanced:hover .shop-card-img img {
    transform: scale(1.1) rotate(2deg);
}

.product-badge-new {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--red, #c41e3a), var(--red-light, #e63950));
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(196,30,58,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(196,30,58,0); }
}

/* Fan Article Showcase Section */
.fan-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
}

.fan-showcase-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.fan-showcase-text p {
    color: var(--light-gray, #888);
    line-height: 1.8;
    margin-bottom: 20px;
}

.fan-showcase-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.fan-feature-tag {
    padding: 4px 12px;
    background: rgba(196,30,58,0.1);
    border: 1px solid rgba(196,30,58,0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--red-light, #e63950);
}

@media (max-width: 768px) {
    .fan-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Ticket verification badge */
.verify-code {
    font-family: 'Bebas Neue', monospace;
    font-size: 2.5rem;
    letter-spacing: 8px;
    color: var(--gold, #d4a843);
    background: var(--dark-gray, #1a1a1a);
    padding: 16px 32px;
    border-radius: 12px;
    border: 2px dashed var(--gold, #d4a843);
    display: inline-block;
    margin: 16px 0;
}

/* ============================================================
   NEW STYLES - v2 Update
   ============================================================ */

/* --- Cookie Consent Banner --- */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(10,10,10,0.97);
    border-top: 2px solid var(--red);
    padding: 16px 24px;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}
.cookie-inner {
    max-width: 1000px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.cookie-inner p {
    color: var(--light-gray);
    font-size: 0.88rem;
    margin: 0;
    flex: 1;
    min-width: 260px;
}
.cookie-inner p a {
    color: var(--red);
    text-decoration: underline;
}
.cookie-inner .fa-cookie-bite {
    color: var(--gold);
    margin-right: 6px;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* --- Legal Pages --- */
.page-hero-small {
    min-height: 220px;
}
.page-hero-small .page-hero-overlay {
    background: var(--red);
}
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}
.legal-section {
    padding: 60px 0;
}
.legal-content h2 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 36px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.legal-content h2:first-child {
    margin-top: 0;
}
.legal-content h3 {
    color: var(--red);
    font-size: 1.05rem;
    margin-top: 24px;
    margin-bottom: 8px;
}
.legal-content p,
.legal-content li {
    color: var(--light-gray);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 10px;
}
.legal-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}
.legal-content a {
    color: var(--red);
    text-decoration: none;
}
.legal-content a:hover {
    text-decoration: underline;
}

/* --- Kontakt Page --- */
.kontakt-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}
.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.kontakt-form .form-group {
    display: flex;
    flex-direction: column;
}
.kontakt-form label {
    color: var(--light-gray);
    font-size: 0.85rem;
    margin-bottom: 6px;
    font-weight: 500;
}
.kontakt-form input,
.kontakt-form select,
.kontakt-form textarea {
    background: var(--dark-gray);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
}
.kontakt-form input:focus,
.kontakt-form select:focus,
.kontakt-form textarea:focus {
    border-color: var(--red);
    outline: none;
}
.kontakt-form textarea {
    resize: vertical;
    min-height: 120px;
}
.kontakt-form select {
    cursor: pointer;
    appearance: auto;
}
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--light-gray);
}
.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--red);
}
.checkbox-label a {
    color: var(--red);
}
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}
.alert-success {
    background: rgba(39,174,96,0.15);
    border: 1px solid rgba(39,174,96,0.3);
    color: #27ae60;
}
.alert-success i { font-size: 1.4rem; margin-top: 2px; }
.alert-success strong { display: block; color: #2ecc71; margin-bottom: 4px; }
.alert-success p { margin: 0; color: var(--light-gray); font-size: 0.9rem; }
.alert-error {
    background: rgba(231,76,60,0.15);
    border: 1px solid rgba(231,76,60,0.3);
    color: #e74c3c;
    font-size: 0.9rem;
}
.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.kontakt-info-card {
    background: var(--dark-gray);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}
.kontakt-info-card h3 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.kontakt-info-card h3 i {
    color: var(--red);
    margin-right: 8px;
}
.kontakt-info-card p,
.kontakt-info-card a {
    color: var(--light-gray);
    font-size: 0.9rem;
    text-decoration: none;
    line-height: 1.6;
}
.kontakt-info-card a:hover {
    color: var(--red);
}
.kontakt-social {
    display: flex;
    gap: 12px;
}
.kontakt-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--white) !important;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.kontakt-social a:hover {
    background: var(--red);
    transform: translateY(-2px);
}

/* --- Mitgliedschaft Page --- */
.mitglied-content {
    max-width: 900px;
    margin: 0 auto;
}
.mitglied-intro {
    font-size: 1.1rem;
    color: var(--light-gray);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 40px;
}
.mitglied-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--dark-gray);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s, border-color 0.3s;
}
.benefit-item:hover {
    transform: translateX(6px);
    border-color: var(--red);
}
.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192,57,43,0.15);
    border-radius: 12px;
    color: var(--red);
    font-size: 1.3rem;
}
.benefit-item h3 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.benefit-item p {
    color: var(--light-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.mitglied-cta {
    text-align: center;
}
.cta-card {
    background: linear-gradient(135deg, rgba(192,57,43,0.12), rgba(192,57,43,0.04));
    border: 1px solid rgba(192,57,43,0.3);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
}
.cta-icon {
    font-size: 3rem;
    color: var(--red);
    margin-bottom: 16px;
}
.cta-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.cta-card > p {
    color: var(--light-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.cta-card .btn {
    font-size: 1rem;
    padding: 14px 32px;
}
.cta-hint {
    font-size: 0.85rem !important;
    color: rgba(255,255,255,0.55) !important;
    margin-top: 16px !important;
    margin-bottom: 0 !important;
}
.cta-hint a {
    color: var(--red);
    text-decoration: none;
    font-weight: 500;
}
.cta-hint a:hover {
    text-decoration: underline;
    color: #e74c5c;
}

/* --- Google Maps --- */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
}
.map-container iframe {
    display: block;
}

/* --- Training Card Icon --- */
.training-card-icon {
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 12px;
}
.training-cta {
    margin-top: 48px;
}
.training-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--dark-gray);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 24px 32px;
    max-width: 700px;
    margin: 0 auto;
}

/* --- Footer improvements --- */
.footer .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.footer .contact-item i {
    color: var(--red);
    width: 16px;
    text-align: center;
    font-size: 0.85rem;
}
.footer .contact-item a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.88rem;
}
.footer .contact-item a:hover {
    color: var(--red);
}

/* --- Subtle page-specific effects --- */
/* Text shimmer effect for hero titles */
@keyframes textShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.hero .hero-title {
    background: linear-gradient(90deg, var(--white) 0%, var(--gold) 50%, var(--white) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4s ease-in-out infinite;
}

/* Parallax-like subtle float for feature icons */
@keyframes subtleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.feature-icon {
    animation: subtleFloat 3s ease-in-out infinite;
}

/* Pulse effect for CTA buttons on hover */
@keyframes btnPulse {
    0% { box-shadow: 0 0 0 0 rgba(192,57,43,0.5); }
    70% { box-shadow: 0 0 0 12px rgba(192,57,43,0); }
    100% { box-shadow: 0 0 0 0 rgba(192,57,43,0); }
}
.mitglied-cta .btn-primary:hover,
.training-cta .btn-primary:hover {
    animation: btnPulse 1.2s ease-out infinite;
}

/* Gradient border glow for training cards */
.training-card {
    transition: all 0.3s ease;
}
.training-card:hover {
    border-color: var(--red);
    box-shadow: 0 0 20px rgba(192,57,43,0.15);
    transform: translateY(-4px);
}

/* Type-in effect for section labels */
.section-label {
    position: relative;
    overflow: hidden;
}

/* --- 404 / 403 Pages --- */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}
.error-code {
    font-size: 6rem;
    font-family: var(--font-heading);
    color: var(--red);
    line-height: 1;
    margin-bottom: 10px;
}
.error-page p {
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

/* ============================================================
   RESPONSIVE - New Components
   ============================================================ */
@media (max-width: 768px) {
    .kontakt-grid {
        grid-template-columns: 1fr;
    }
    .form-row-2col {
        grid-template-columns: 1fr;
    }
    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    .training-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .cta-card {
        padding: 24px;
    }
    .legal-content h2 {
        font-size: 1.1rem;
    }
    .map-container iframe {
        height: 280px;
    }
    .page-hero-small {
        min-height: 160px;
    }
    .error-code {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .kontakt-info-card {
        padding: 16px;
    }
    .mitglied-intro {
        font-size: 0.95rem;
    }
    .benefit-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1.1rem;
    }
}

/* ============================================
   GALERIE
   ============================================ */
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.galerie-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: var(--dark-gray);
}

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.galerie-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.galerie-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galerie-item:hover .galerie-overlay {
    opacity: 1;
}

.galerie-overlay h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.galerie-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    line-height: 1.4;
}

.galerie-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 58, 0.85);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.galerie-item:hover .galerie-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* --- Lightbox --- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 1.4rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(196, 30, 58, 0.7);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 60px rgba(0,0,0,0.5);
}

.lightbox-caption {
    text-align: center;
    margin-top: 16px;
    max-width: 600px;
}

.lightbox-caption h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lightbox-caption p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-top: 6px;
}

/* Galerie responsive */
@media (max-width: 768px) {
    .galerie-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 10px;
    }
    .galerie-overlay {
        opacity: 1;
    }
    .galerie-zoom {
        display: none;
    }
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

@media (max-width: 480px) {
    .galerie-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .galerie-item {
        border-radius: 8px;
    }
}

/* ============================================
   BEITRITTSERKLÄRUNG (Membership Form)
   ============================================ */

/* Intro & Success */
.beitritt-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--off-white);
}
.beitritt-intro strong {
    color: var(--white);
}

.beitritt-success {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.6), rgba(26, 26, 26, 0.8));
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 16px;
    max-width: 680px;
    margin: 0 auto;
}
.beitritt-success .success-icon {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 24px;
    animation: successPulse 2s ease-in-out infinite;
}
@keyframes successPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.85; }
}
.beitritt-success h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.beitritt-success p {
    color: var(--off-white);
    line-height: 1.7;
    margin-bottom: 8px;
}
.beitritt-success a:not(.btn) {
    color: var(--red);
    text-decoration: underline;
}

/* Error messages */
.beitritt-errors {
    background: rgba(196, 30, 58, 0.12);
    border: 1px solid rgba(196, 30, 58, 0.5);
    border-left: 4px solid var(--red);
    border-radius: 10px;
    padding: 24px 28px;
    margin-bottom: 32px;
}
.beitritt-errors h4 {
    font-family: var(--font-heading);
    color: var(--red-light);
    font-size: 1.15rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.beitritt-errors ul {
    list-style: disc;
    padding-left: 20px;
}
.beitritt-errors li {
    color: var(--off-white);
    padding: 3px 0;
    font-size: 0.95rem;
}

/* Form container */
.beitritt-form {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

/* Section blocks */
.beitritt-section {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.4), rgba(26, 26, 26, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 36px 32px;
    margin-bottom: 24px;
    transition: var(--transition);
}
.beitritt-section:hover {
    border-color: rgba(196, 30, 58, 0.2);
}
.beitritt-section h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Step number badges */
.beitritt-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(196, 30, 58, 0.35);
}

/* Beitrag cards (membership type selection) */
.beitrag-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.beitrag-card {
    cursor: pointer;
    position: relative;
}
.beitrag-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.beitrag-card-inner {
    background: var(--dark-gray);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.beitrag-card-inner:hover {
    border-color: rgba(196, 30, 58, 0.4);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.beitrag-card input:checked + .beitrag-card-inner {
    border-color: var(--red);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15), rgba(154, 24, 48, 0.08));
    box-shadow: 0 0 24px rgba(196, 30, 58, 0.25);
}
.beitrag-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 58, 0.15);
    border-radius: 50%;
    margin-bottom: 14px;
    font-size: 1.3rem;
    color: var(--red-light);
    transition: var(--transition);
}
.beitrag-card input:checked + .beitrag-card-inner .beitrag-icon {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 16px rgba(196, 30, 58, 0.4);
}
.beitrag-card-inner h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.beitrag-preis {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--red-light);
    margin-bottom: 6px;
    line-height: 1;
}
.beitrag-preis span {
    font-size: 0.9rem;
    color: var(--light-gray);
    font-family: var(--font-body);
}
.beitrag-card input:checked + .beitrag-card-inner .beitrag-preis {
    color: var(--white);
}
.beitrag-card-inner p {
    font-size: 0.82rem;
    color: var(--light-gray);
    line-height: 1.4;
}
.beitrag-monat {
    font-size: 0.72rem;
    color: var(--light-gray);
    margin-top: 4px;
    opacity: 0.7;
}
.beitrag-card input:checked + .beitrag-card-inner .beitrag-monat {
    opacity: 1;
    color: var(--off-white);
}

/* Form rows and fields */
.beitritt-row {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
}
.beitritt-field {
    flex: 1;
    margin-bottom: 18px;
}
.beitritt-field label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: var(--font-heading);
}
.beitritt-field label small {
    font-size: 0.75rem;
    color: var(--light-gray);
    text-transform: none;
    font-family: var(--font-body);
    letter-spacing: 0;
    font-weight: 400;
}
.beitritt-field input,
.beitritt-field select,
.beitritt-field textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}
.beitritt-field input::placeholder {
    color: rgba(136, 136, 136, 0.5);
}
.beitritt-field input:focus,
.beitritt-field select:focus,
.beitritt-field textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.15);
    background: rgba(10, 10, 10, 0.8);
}
.beitritt-field input:invalid:not(:placeholder-shown):not(:focus) {
    border-color: rgba(231, 76, 60, 0.5);
}

/* Radio groups (Geschlecht, Status) */
.beitritt-radio-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.beitritt-radio {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
    min-width: 100px;
}
.beitritt-radio:hover {
    border-color: rgba(196, 30, 58, 0.3);
}
.beitritt-radio input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--red);
    cursor: pointer;
    flex-shrink: 0;
}
.beitritt-radio span {
    font-size: 0.88rem;
    color: var(--off-white);
    white-space: nowrap;
}
.beitritt-radio:has(input:checked) {
    border-color: var(--red);
    background: rgba(196, 30, 58, 0.08);
}

/* Select dropdown styling */
.beitritt-field select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.beitritt-field select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.15);
}

/* Familie member blocks */
.beitritt-familie-block {
    position: relative;
    background: rgba(10, 10, 10, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px 20px 8px 52px;
    margin-bottom: 14px;
}
.beitritt-familie-nr {
    position: absolute;
    left: 14px;
    top: 20px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 58, 0.2);
    color: var(--red-light);
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-body);
}

/* Hint text */
.beitritt-hint {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Checkboxes */
.beitritt-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(10, 10, 10, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}
.beitritt-checkbox:hover {
    border-color: rgba(196, 30, 58, 0.3);
    background: rgba(10, 10, 10, 0.4);
}
.beitritt-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: var(--red);
    cursor: pointer;
}
.beitritt-checkbox span {
    font-size: 0.88rem;
    color: var(--off-white);
    line-height: 1.6;
}
.beitritt-checkbox span strong {
    color: var(--white);
}
.beitritt-checkbox span a {
    color: var(--red-light);
    text-decoration: underline;
}
.beitritt-checkbox span a:hover {
    color: var(--white);
}

/* SEPA Hinweis Box */
.sepa-hinweis {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--red);
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 28px;
}
.sepa-hinweis p {
    font-size: 0.9rem;
    color: var(--off-white);
    line-height: 1.7;
    margin-bottom: 12px;
}
.sepa-hinweis p:last-child {
    margin-bottom: 0;
}
.sepa-hinweis strong {
    color: var(--white);
}
.sepa-hinweis em {
    color: var(--light-gray);
}
.sepa-small {
    font-size: 0.82rem !important;
    color: var(--light-gray) !important;
}

/* Submit section */
.beitritt-submit {
    text-align: center;
    background: transparent;
    border: none;
    padding: 24px 0;
}
.beitritt-submit:hover {
    border-color: transparent;
}
.beitritt-pflicht {
    font-size: 0.85rem;
    color: var(--light-gray);
    margin-bottom: 24px;
}
.beitritt-legal {
    font-size: 0.82rem;
    color: var(--light-gray);
    margin-top: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Button extensions */
.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--off-white);
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    cursor: pointer;
}
.btn-outline:hover {
    border-color: var(--red);
    color: var(--white);
    background: rgba(196, 30, 58, 0.1);
}

/* Alternative section (PDF download) */
.beitritt-alternative .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

/* ============================================
   BEITRITTSERKLÄRUNG RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .beitrag-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .beitrag-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .beitritt-section {
        padding: 28px 20px;
    }
    .beitritt-row {
        flex-direction: column;
        gap: 0;
    }
    .beitritt-row .beitritt-field {
        flex: 1 !important;
    }
    .beitritt-radio-group {
        flex-direction: column;
        gap: 6px;
    }
    .beitritt-familie-block {
        padding: 16px 14px 6px 14px;
    }
    .beitritt-familie-nr {
        position: static;
        margin-bottom: 10px;
    }
    .beitritt-success {
        padding: 40px 24px;
    }
    .beitritt-success h2 {
        font-size: 1.6rem;
    }
    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .beitrag-cards {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .beitrag-card-inner {
        padding: 18px 10px;
    }
    .beitrag-preis {
        font-size: 1.5rem;
    }
    .beitrag-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    .beitritt-section {
        padding: 22px 16px;
        border-radius: 10px;
    }
    .beitritt-section h3 {
        font-size: 1.2rem;
        gap: 10px;
    }
    .beitritt-step {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    .beitritt-checkbox {
        padding: 12px 14px;
        gap: 10px;
    }
    .beitritt-checkbox span {
        font-size: 0.82rem;
    }
    .sepa-hinweis {
        padding: 18px 16px;
    }
    .beitritt-intro {
        font-size: 1rem;
    }
}

/* === JUGENDSCHUTZ DOWNLOADS === */
.jugendschutz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 32px;
}
.download-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.25s ease;
}
.download-card:hover {
    background: rgba(196,30,58,0.08);
    border-color: var(--red, #c41e3a);
    transform: translateY(-2px);
}
.download-card .download-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: rgba(196,30,58,0.15);
    color: var(--red-light, #e63950);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}
.download-card .download-info {
    flex: 1;
    min-width: 0;
}
.download-card .download-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    line-height: 1.3;
    color: var(--white);
}
.download-card .download-info p {
    font-size: 0.85rem;
    color: var(--light-gray, #b0b0b0);
    margin-bottom: 6px;
    line-height: 1.4;
}
.download-card .download-meta {
    font-size: 0.75rem;
    color: var(--light-gray, #888);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.download-card .download-arrow {
    flex-shrink: 0;
    color: var(--red-light, #e63950);
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}
.download-card:hover .download-arrow { transform: translateY(2px); }

@media (max-width: 640px) {
    .download-card { padding: 16px; gap: 14px; }
    .download-card .download-icon { width: 44px; height: 44px; font-size: 1.4rem; }
    .download-card .download-info h4 { font-size: 0.95rem; }
    .download-card .download-info p { font-size: 0.8rem; }
}

/* === FACEBOOK LINK BOX (Ende jedes Blog-Artikels) === */
.fb-link-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0 0;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(24,119,242,0.12) 0%, rgba(13,94,192,0.08) 100%);
    border: 1px solid rgba(24,119,242,0.35);
    border-radius: 14px;
}
.fb-link-icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #1877F2;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
}
.fb-link-text { display: flex; flex-direction: column; gap: 4px; }
.fb-link-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--light-gray);
}
.fb-link-text a {
    color: #4ea1ff;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
}
.fb-link-text a:hover { color: #fff; text-decoration: underline; }
.fb-link-text a i { font-size: 0.85rem; margin-left: 4px; opacity: 0.7; }
@media (max-width: 560px) {
    .fb-link-box { padding: 16px; gap: 14px; }
    .fb-link-icon { width: 44px; height: 44px; font-size: 1.3rem; }
    .fb-link-text a { font-size: 0.95rem; }
}

/* === BLOG ARTIKEL-TYPOGRAPHIE === */
.post-claim {
    margin-top: 28px !important;
    text-align: center;
    font-size: 1.15rem;
    letter-spacing: 2px;
    padding: 14px 20px;
    background: rgba(196,30,58,0.08);
    border-left: 3px solid var(--red);
    border-radius: 4px;
}
.photo-credit {
    margin-top: 24px !important;
    font-size: 0.88rem;
    color: var(--light-gray);
    font-style: italic;
    text-align: center;
    opacity: 0.85;
}

/* === ERGEBNIS-LISTE (Turnier-Platzierungen) === */
.result-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
}
.result-list li {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    transition: all 0.2s ease;
}
.result-list li:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(196,30,58,0.3);
}
.result-list .medal {
    font-size: 1.4rem;
    text-align: center;
    line-height: 1;
}
.result-list .name { font-weight: 600; color: var(--white); }
.result-list .place {
    font-size: 0.9rem;
    color: var(--light-gray);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}
@media (max-width: 520px) {
    .result-list li { grid-template-columns: 36px 1fr auto; padding: 10px 14px; gap: 10px; }
    .result-list .medal { font-size: 1.2rem; }
}

/* === JUGENDSCHUTZ BANNER (prominenter Call-to-Action direkt unter Hero) === */
.jugendschutz-banner {
    padding: 32px 0;
    background: linear-gradient(135deg, var(--red) 0%, #9a1730 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.jugendschutz-banner::before {
    content: "";
    position: absolute;
    top: -40%; right: -5%;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}
.jugendschutz-banner-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.jugendschutz-banner-icon {
    width: 72px; height: 72px;
    border-radius: 16px;
    background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    flex-shrink: 0;
}
.jugendschutz-banner-text { min-width: 0; }
.jugendschutz-banner-label {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    opacity: 0.85;
    margin-bottom: 6px;
    font-weight: 600;
}
.jugendschutz-banner h2 {
    font-size: 1.6rem;
    margin: 0 0 6px;
    color: #fff;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}
.jugendschutz-banner p {
    margin: 0;
    font-size: 0.98rem;
    opacity: 0.95;
    max-width: 640px;
}
.jugendschutz-banner-action {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    flex-shrink: 0;
}
.jugendschutz-banner-action .btn-primary {
    background: #fff;
    color: var(--red);
    font-weight: 700;
    white-space: nowrap;
}
.jugendschutz-banner-action .btn-primary:hover {
    background: #111;
    color: #fff;
}
.jugendschutz-banner-action .btn-link {
    color: #fff;
    opacity: 0.85;
    font-size: 0.88rem;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.jugendschutz-banner-action .btn-link:hover { opacity: 1; text-decoration: underline; }
.jugendschutz-banner-action .btn-link i { font-size: 0.75rem; margin-left: 4px; }

@media (max-width: 860px) {
    .jugendschutz-banner-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 18px;
    }
    .jugendschutz-banner-icon { margin: 0 auto; }
    .jugendschutz-banner-action { align-items: center; }
    .jugendschutz-banner h2 { font-size: 1.35rem; }
}

/* ==========================================================
   DSGVO Map Placeholder (2-Klick-Lösung Google Maps)
   ========================================================== */
.map-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 60px 24px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:
        linear-gradient(135deg, rgba(196,30,58,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(196,30,58,0.06) 0%, transparent 70%);
}
.map-placeholder-inner { max-width: 600px; }
.map-placeholder h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.3rem;
}
