/* ============================================
   SV Großer Alexander Backnang 1962
   Hauptstylesheet
   ============================================ */

:root {
    --color-red: #e30613;
    --color-red-dark: #b30410;
    --color-red-light: #ff1a2e;
    --color-black: #0a0a0a;
    --color-dark: #141414;
    --color-dark-2: #1c1c1c;
    --color-dark-3: #242424;
    --color-gray: #888;
    --color-gray-light: #ccc;
    --color-white: #ffffff;
    --color-bg-light: #f5f5f5;
    --color-bg-card: #ffffff;
    --color-text-dark: #1a1a1a;
    --color-text-muted: #666;
    --color-border: #2a2a2a;
    --color-border-light: #e5e5e5;

    --font-heading: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.25);
    --shadow-red: 0 4px 20px rgba(227, 6, 19, 0.4);

    --container: 1280px;
    --header-h: 80px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background: var(--color-bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

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

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

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

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(227, 6, 19, 0.3));
}

.logo-text {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.logo-text .top { font-size: 11px; color: var(--color-gray-light); letter-spacing: 0.15em; }
.logo-text .mid { font-size: 18px; letter-spacing: 0.05em; }
.logo-text .bot { font-size: 11px; color: var(--color-red); letter-spacing: 0.2em; }

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

.nav a {
    display: block;
    padding: 10px 16px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    transition: color var(--transition);
}

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

.nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--color-red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }

.header-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    border-radius: 50%;
    transition: all var(--transition);
}

.header-icons a:hover {
    background: var(--color-red);
    transform: translateY(-2px);
}

.header-icons svg { width: 18px; height: 18px; fill: currentColor; }

.menu-toggle {
    display: none;
    color: var(--color-white);
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.menu-toggle svg { width: 28px; height: 28px; fill: currentColor; }

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--color-white);
    overflow: hidden;
    padding-top: var(--header-h);
}

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

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.5) 50%, rgba(227, 6, 19, 0.3) 100%),
        radial-gradient(circle at 70% 50%, rgba(227, 6, 19, 0.4), transparent 60%);
    z-index: 1;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(227, 6, 19, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227, 6, 19, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
    opacity: 0.4;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background:
        url('../images/background2.webp') center/cover no-repeat,
        radial-gradient(ellipse at center, #2a0a0a 0%, #0a0a0a 70%);
    filter: grayscale(0.2) contrast(1.1);
}

.hero-bg-number {
    position: absolute;
    right: -40px;
    bottom: -120px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(300px, 40vw, 600px);
    line-height: 0.8;
    color: rgba(227, 6, 19, 0.08);
    z-index: 3;
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
}

.hero-bg-text {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 0.5em;
    color: rgba(255, 255, 255, 0.15);
    z-index: 3;
    text-transform: uppercase;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.95;
    margin-bottom: 24px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    animation: slideInLeft 1s ease-out;
}

.hero-title .accent {
    color: var(--color-red);
    display: block;
    text-shadow: 0 0 40px rgba(227, 6, 19, 0.6);
}

.hero-sub {
    font-size: 18px;
    color: var(--color-gray-light);
    margin-bottom: 36px;
    max-width: 540px;
    animation: slideInLeft 1s ease-out 0.2s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--color-red);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all var(--transition);
    box-shadow: var(--shadow-red);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-red-dark);
    transform: translateX(-100%);
    transition: transform var(--transition);
}

.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(227, 6, 19, 0.6); }
.btn:hover::before { transform: translateX(0); }
.btn span, .btn svg { position: relative; z-index: 1; }
.btn svg { width: 14px; height: 14px; fill: currentColor; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-white);
    box-shadow: none;
}

.btn-outline::before { background: var(--color-white); }
.btn-outline:hover { color: var(--color-black); }

.hero-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.hero-value {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-value-icon {
    width: 48px;
    height: 48px;
    border: 2px solid var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-red);
    flex-shrink: 0;
}

.hero-value-icon svg { width: 22px; height: 22px; fill: currentColor; }

.hero-value-text { font-size: 14px; }
.hero-value-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
}

.hero-value-text span { color: var(--color-gray-light); font-size: 13px; }

.hero-shape {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-emblem {
    width: 100%;
    max-width: 480px;
    filter: drop-shadow(0 0 80px rgba(227, 6, 19, 0.5));
    animation: float 6s ease-in-out infinite;
}

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

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

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

/* ============================================
   INFO STRIPE (Match / Table / News)
   ============================================ */

.info-stripe {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding-bottom: 80px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 24px;
    background: var(--color-white);
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.info-card {
    padding: 28px;
    border-right: 1px solid var(--color-border-light);
}

.info-card:last-child { border-right: none; }

.info-card-title {
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-bg-light);
}

/* Match Card */

.match-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
}

.match-team {
    text-align: center;
}

.match-team img {
    width: 70px;
    height: 70px;
    margin: 0 auto 10px;
    object-fit: contain;
}

.match-team-name {
    font-family: var(--font-heading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.match-vs {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-red);
    font-weight: 700;
}

.match-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 0;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    margin-bottom: 20px;
}

.match-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.match-info-row svg {
    width: 16px;
    height: 16px;
    fill: var(--color-red);
    flex-shrink: 0;
}

.match-info-row strong { color: var(--color-text-dark); }

.btn-sm {
    padding: 12px 20px;
    font-size: 12px;
    width: 100%;
    justify-content: center;
}

/* Table */

.league-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.league-table thead th {
    text-align: left;
    padding: 10px 8px;
    font-family: var(--font-heading);
    font-size: 11px;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    border-bottom: 2px solid var(--color-border-light);
}

.league-table thead th:nth-child(3),
.league-table thead th:nth-child(4),
.league-table thead th:nth-child(5) { text-align: center; }

.league-table tbody tr {
    border-bottom: 1px solid var(--color-border-light);
    transition: background var(--transition);
}

.league-table tbody tr:hover { background: var(--color-bg-light); }

.league-table tbody td {
    padding: 11px 8px;
    color: var(--color-text-dark);
}

.league-table tbody td:nth-child(3),
.league-table tbody td:nth-child(4),
.league-table tbody td:nth-child(5) { text-align: center; }

.league-table tbody td:nth-child(5) { font-weight: 700; }

.league-table .own-team {
    background: rgba(227, 6, 19, 0.05);
    color: var(--color-red);
    font-weight: 700;
}

.league-table .own-team:hover { background: rgba(227, 6, 19, 0.08); }

.league-table .pos {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-muted);
}

.league-table .own-team .pos { color: var(--color-red); }

.table-footer, .news-footer {
    margin-top: 16px;
    text-align: left;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-red);
    font-family: var(--font-heading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    transition: gap var(--transition);
}

.link-arrow:hover { gap: 10px; }
.link-arrow svg { width: 12px; height: 12px; fill: currentColor; }

/* News Card */

.news-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border-light);
}

.news-item:last-child { border-bottom: none; padding-bottom: 0; }

.news-thumb {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    overflow: hidden;
    position: relative;
}

.news-thumb img { width: 100%; height: 100%; object-fit: cover; }

.news-thumb-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    opacity: 0.3;
}

.news-thumb-icon svg { width: 30px; height: 30px; fill: currentColor; }

.news-date {
    font-size: 11px;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.news-title {
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 6px;
}

.news-link {
    color: var(--color-red);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   YOUTH SECTION
   ============================================ */

.youth-banner {
    position: relative;
    padding: 120px 0;
    color: var(--color-white);
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 60%, rgba(10, 10, 10, 0.3) 100%),
        url('../images/background1.webp') center/cover no-repeat;
    background-attachment: fixed;
}

.youth-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 50%, rgba(227, 6, 19, 0.4), transparent 70%);
    z-index: 1;
}

.youth-banner-number {
    position: absolute;
    right: 5%;
    bottom: -60px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(200px, 25vw, 400px);
    line-height: 0.8;
    color: rgba(227, 6, 19, 0.12);
    z-index: 2;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.05em;
}

.youth-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, transparent 0, transparent 80px, rgba(227, 6, 19, 0.05) 80px, rgba(227, 6, 19, 0.05) 81px);
    z-index: 2;
}

.youth-content {
    position: relative;
    z-index: 5;
    max-width: 700px;
}

.youth-banner h2 {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1;
    margin-bottom: 30px;
}

.youth-banner h2 .accent { color: var(--color-red); }

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(227, 6, 19, 0.15);
    border: 1px solid var(--color-red);
    color: var(--color-red);
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    border-radius: 2px;
}

/* ============================================
   PARTNERS
   ============================================ */

.partners {
    background: var(--color-white);
    padding: 50px 0;
    border-top: 1px solid var(--color-border-light);
}

.partners-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.partners-label {
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 20px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
    transition: opacity var(--transition);
}

.partner-logo:hover { opacity: 1; }

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-black);
    color: var(--color-gray-light);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 0.15em;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-logo img { height: 60px; }

.footer-logo .logo-text { color: var(--color-white); }

.footer-tagline {
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-contact { font-size: 14px; line-height: 1.8; }
.footer-contact strong { color: var(--color-white); display: block; margin-bottom: 6px; }

.footer-list {
    list-style: none;
    font-size: 14px;
}

.footer-list li { margin-bottom: 10px; }

.footer-list a {
    color: var(--color-gray-light);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-list a:hover { color: var(--color-red); transform: translateX(4px); }

.footer-list svg {
    width: 12px;
    height: 12px;
    fill: var(--color-red);
}

.footer-hours {
    font-size: 14px;
    line-height: 1.8;
}

.footer-hours div {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.footer-hours div:last-child { border-bottom: none; }

.footer-hours strong { color: var(--color-white); }

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 24px 0;
    background: #050505;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: var(--color-text-muted);
}

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

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

/* ============================================
   PAGE HEADER (Subpages)
   ============================================ */

.page-header {
    position: relative;
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.6) 100%),
        url('../images/background3.webp') center/cover no-repeat;
    color: var(--color-white);
    padding: calc(var(--header-h) + 100px) 0 100px;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(227, 6, 19, 0.45), transparent 60%);
    z-index: 1;
}

.page-header-number {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(180px, 22vw, 360px);
    line-height: 0.8;
    color: rgba(227, 6, 19, 0.12);
    z-index: 2;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.05em;
}

.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(227, 6, 19, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227, 6, 19, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
    opacity: 0.3;
}

.page-header-inner {
    position: relative;
    z-index: 5;
}

.page-header h1 {
    font-size: clamp(40px, 6vw, 72px);
    margin-bottom: 12px;
}

.breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: var(--color-gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.breadcrumbs a:hover { color: var(--color-red); }
.breadcrumbs .sep { color: var(--color-red); }

/* ============================================
   PAGE CONTENT
   ============================================ */

.page-content {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.content-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.sidebar {
    background: var(--color-white);
    border-radius: 4px;
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.sidebar-list {
    list-style: none;
}

.sidebar-list a {
    display: block;
    padding: 14px 24px;
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-dark);
    border-left: 3px solid transparent;
    transition: all var(--transition);
}

.sidebar-list a:hover {
    background: var(--color-bg-light);
    border-left-color: var(--color-red);
    color: var(--color-red);
}

.sidebar-list a.active {
    background: var(--color-red);
    color: var(--color-white);
    border-left-color: var(--color-red-dark);
}

.content-main {
    background: var(--color-white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.content-main h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--color-text-dark);
}

.content-main h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: var(--color-text-dark);
}

.content-main p {
    margin-bottom: 16px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 36px;
    background: var(--color-bg-light);
    border-radius: 4px;
    overflow: hidden;
}

.stat-item {
    padding: 30px 20px;
    text-align: center;
    border-right: 1px solid var(--color-border-light);
}

.stat-item:last-child { border-right: none; }

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border: 2px solid var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--color-red);
}

.stat-icon svg { width: 22px; height: 22px; fill: currentColor; }

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-red);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
}

/* ============================================
   VALUES
   ============================================ */

.values-block {
    margin-top: 60px;
    background: var(--color-white);
    border-radius: 4px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.values-block-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 32px;
    position: relative;
    padding-bottom: 16px;
}

.values-block-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--color-red);
}

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

.value-card {
    text-align: center;
    padding: 20px;
    transition: transform var(--transition);
}

.value-card:hover { transform: translateY(-6px); }

.value-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(227, 6, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--color-red);
    transition: all var(--transition);
}

.value-card:hover .value-card-icon {
    background: var(--color-red);
    color: var(--color-white);
    transform: scale(1.1);
}

.value-card-icon svg { width: 28px; height: 28px; fill: currentColor; }

.value-card h4 {
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.value-card p { font-size: 13px; color: var(--color-text-muted); }

/* ============================================
   TABS
   ============================================ */

.tabs {
    display: flex;
    background: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.tab {
    flex: 1;
    padding: 16px 24px;
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-dark);
    text-align: center;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all var(--transition);
    background: var(--color-white);
}

.tab:hover { color: var(--color-red); }

.tab.active {
    background: var(--color-red);
    color: var(--color-white);
    border-bottom-color: var(--color-red-dark);
}

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.4s ease-out; }

/* ============================================
   TEAM CARDS
   ============================================ */

.team-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.team-card {
    background: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.team-card-image {
    height: 220px;
    background: linear-gradient(135deg, #2a2a2a, #0a0a0a);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-card-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(227, 6, 19, 0.05) 30px, rgba(227, 6, 19, 0.05) 31px);
}

.team-card-emblem {
    width: 100px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 30px rgba(227, 6, 19, 0.5));
}

.team-card-body {
    padding: 24px;
    text-align: center;
    border-top: 4px solid var(--color-red);
}

.team-card-body h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.team-card-body .league {
    font-size: 13px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    display: block;
}

/* ============================================
   YOUTH GRID
   ============================================ */

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

.youth-card {
    background: var(--color-white);
    padding: 30px 24px;
    border-radius: 4px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.youth-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.youth-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.youth-card:hover::before { transform: scaleX(1); }

.youth-icon {
    width: 56px;
    height: 56px;
    background: rgba(227, 6, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--color-red);
    transition: all var(--transition);
}

.youth-card:hover .youth-icon {
    background: var(--color-red);
    color: var(--color-white);
}

.youth-icon svg { width: 26px; height: 26px; fill: currentColor; }

.youth-card h4 {
    font-size: 16px;
    margin-bottom: 6px;
    letter-spacing: 0.1em;
}

.youth-card .age { font-size: 12px; color: var(--color-text-muted); margin-bottom: 14px; }

.youth-card .more {
    color: var(--color-red);
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

/* ============================================
   NEWS GRID
   ============================================ */

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.news-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    background: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.news-row:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.news-row-img {
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
}

.news-row-img svg { width: 60px; height: 60px; fill: currentColor; }

.news-row-body {
    padding: 30px;
}

.news-row-date {
    font-size: 12px;
    color: var(--color-text-muted);
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.news-row-body h3 {
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.news-row-body p {
    color: var(--color-text-muted);
    margin-bottom: 18px;
    line-height: 1.6;
}

/* ============================================
   SPONSORS
   ============================================ */

.sponsors-section {
    margin-bottom: 40px;
}

.sponsors-section-title {
    font-size: 18px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--color-red);
    display: inline-block;
    letter-spacing: 0.1em;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.sponsor-card {
    background: var(--color-white);
    padding: 30px 20px;
    border-radius: 4px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--color-border-light);
}

.sponsor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-red);
}

.sponsor-card-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   CONTACT
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info-card {
    background: var(--color-white);
    padding: 36px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--color-red);
}

.contact-info-list {
    list-style: none;
    margin-bottom: 24px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.contact-info-list li:last-child { border-bottom: none; }

.contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(227, 6, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-red);
    flex-shrink: 0;
}

.contact-icon svg { width: 16px; height: 16px; fill: currentColor; }

.contact-info-list strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.contact-info-list span { color: var(--color-text-muted); font-size: 14px; }

/* Form */

.contact-form {
    background: var(--color-white);
    padding: 36px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

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

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    color: var(--color-text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--color-border-light);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--color-white);
    transition: border-color var(--transition);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-red);
}

/* Map */

.map-block {
    height: 360px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

.map-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(227, 6, 19, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227, 6, 19, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.map-block svg { width: 60px; height: 60px; fill: currentColor; position: relative; z-index: 1; }
.map-block .marker {
    position: absolute;
    z-index: 2;
    color: var(--color-red);
    text-align: center;
}
.map-block .marker svg { width: 50px; height: 50px; fill: currentColor; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); }

/* ============================================
   COUNTDOWN / MATCHDAY
   ============================================ */

.matchday-section {
    padding: 80px 0;
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.85)),
        url('../images/background1.webp') center/cover no-repeat;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.matchday-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(227, 6, 19, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227, 6, 19, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}

.matchday-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.matchday-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-red);
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 24px;
    border-radius: 2px;
}

.matchday-title {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 50px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(227, 6, 19, 0.3);
    backdrop-filter: blur(10px);
    padding: 24px 30px;
    min-width: 130px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.countdown-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-red);
}

.countdown-num {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-white);
    margin-bottom: 8px;
}

.countdown-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gray-light);
}

.matchday-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 4px;
}

.matchday-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    color: var(--color-gray-light);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    flex-wrap: wrap;
}

.matchday-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.matchday-meta svg {
    width: 16px;
    height: 16px;
    fill: var(--color-red);
}

.matchday-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.matchday-team {
    text-align: center;
}

.matchday-team img {
    width: 110px;
    height: 110px;
    margin: 0 auto 14px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(227, 6, 19, 0.4));
}

.matchday-team-name {
    font-family: var(--font-heading);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
}

.matchday-vs {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-red);
    line-height: 1;
}

/* ============================================
   FORM GUIDE
   ============================================ */

.form-guide {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 14px;
}

.form-result {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    border-radius: 50%;
    color: var(--color-white);
}

.form-result.w { background: #16a34a; }
.form-result.d { background: #d97706; }
.form-result.l { background: #6b7280; }

/* ============================================
   STAT CARDS / TOP SCORERS
   ============================================ */

.football-stats {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 12px;
}

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

.section-title-bar {
    width: 60px;
    height: 4px;
    background: var(--color-red);
    margin: 16px auto 0;
}

.stats-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
}

.scorer-list {
    background: var(--color-white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--color-red);
}

.scorer-list h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--color-bg-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.scorer-list h3 svg {
    width: 22px;
    height: 22px;
    fill: var(--color-red);
}

.scorer-row {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.scorer-row:last-child { border-bottom: none; }

.scorer-rank {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-text-muted);
    text-align: center;
}

.scorer-row:first-child .scorer-rank {
    background: var(--color-red);
    color: var(--color-white);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.scorer-name {
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
}

.scorer-name span {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: none;
    letter-spacing: 0;
    margin-top: 2px;
    font-weight: 400;
}

.scorer-goals {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-red);
}

.scorer-goals svg {
    width: 18px;
    height: 18px;
    fill: var(--color-red);
}

.poll-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--color-red);
}

.poll-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--color-bg-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.poll-card h3 svg {
    width: 22px;
    height: 22px;
    fill: var(--color-red);
}

.player-feature {
    text-align: center;
    margin-bottom: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.05), transparent);
    border-radius: 4px;
}

.player-feature-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    border: 4px solid var(--color-white);
    box-shadow: 0 4px 20px rgba(227, 6, 19, 0.3);
}

.player-feature-name {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.player-feature-pos {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.player-feature-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.player-stat {
    background: var(--color-white);
    padding: 12px 8px;
    border-radius: 4px;
    border: 1px solid var(--color-border-light);
}

.player-stat-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-red);
    line-height: 1;
}

.player-stat-label {
    font-size: 10px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* ============================================
   SQUAD GRID
   ============================================ */

.squad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.squad-card {
    background: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
}

.squad-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.squad-card-img {
    height: 180px;
    background: linear-gradient(135deg, #2a0a0a, #0a0a0a);
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.squad-card-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(227, 6, 19, 0.3), transparent 70%),
        repeating-linear-gradient(90deg, transparent 0, transparent 30px, rgba(227, 6, 19, 0.05) 30px, rgba(227, 6, 19, 0.05) 31px);
}

.squad-card-number {
    position: absolute;
    top: 10px;
    right: 14px;
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    z-index: 1;
}

.squad-card-silhouette {
    position: relative;
    z-index: 2;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50% 50% 0 0;
    margin-bottom: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

.squad-card-silhouette svg {
    width: 50px;
    height: 50px;
    fill: currentColor;
}

.squad-card-body {
    padding: 16px;
    text-align: center;
    border-top: 3px solid var(--color-red);
}

.squad-card-name {
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    line-height: 1.2;
}

.squad-card-pos {
    font-size: 11px;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
}

/* ============================================
   TICKER
   ============================================ */

.ticker {
    background: var(--color-red);
    color: var(--color-white);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.ticker-inner {
    display: flex;
    gap: 60px;
    animation: tickerScroll 40s linear infinite;
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    align-items: center;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ticker-item::before {
    content: "●";
    color: rgba(255, 255, 255, 0.5);
    margin-right: 12px;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   FUSSBALL.DE WIDGETS
   ============================================ */

.fb-widget {
    background: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    min-height: 320px;
    position: relative;
}

.fb-widget iframe {
    width: 100%;
    min-height: 320px;
    display: block;
    border: 0;
}

.fb-widget.widget-loaded .fb-widget-fallback { display: none !important; }

.fb-widget-fallback {
    padding: 28px;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.04), transparent);
    border-left: 4px solid var(--color-red);
    height: 100%;
}

.fb-widget-fallback-tag {
    display: inline-block;
    background: var(--color-red);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 14px;
}

.fb-widget-fallback h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.fb-widget-fallback p {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    line-height: 1.6;
}

.fb-widget-fallback code {
    background: var(--color-bg-light);
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 12px;
    color: var(--color-red);
    font-family: 'Courier New', monospace;
}

.fb-section {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.fb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .fb-grid { grid-template-columns: 1fr; }
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 520px;
    margin: 0 auto;
    background: var(--color-black);
    color: var(--color-white);
    padding: 24px;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border-top: 4px solid var(--color-red);
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner h4 {
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.cookie-banner p {
    font-size: 13px;
    color: var(--color-gray-light);
    line-height: 1.5;
    margin-bottom: 16px;
}

.cookie-banner p a {
    color: var(--color-red);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-banner button {
    padding: 10px 18px;
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition);
    flex: 1;
    min-width: 100px;
}

.cookie-banner .btn-accept {
    background: var(--color-red);
    color: var(--color-white);
}

.cookie-banner .btn-accept:hover { background: var(--color-red-dark); }

.cookie-banner .btn-decline {
    background: transparent;
    color: var(--color-gray-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-banner .btn-decline:hover {
    border-color: var(--color-white);
    color: var(--color-white);
}

/* ============================================
   ARTICLE / DETAIL PAGES
   ============================================ */

.article-hero {
    height: 400px;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.9)),
        url('../images/background3.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
    margin-top: var(--header-h);
    color: var(--color-white);
}

.article-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.article-category {
    display: inline-block;
    padding: 6px 14px;
    background: var(--color-red);
    font-family: var(--font-heading);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
}

.article-title {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    gap: 24px;
    color: var(--color-gray-light);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    flex-wrap: wrap;
}

.article-meta span { display: flex; align-items: center; gap: 8px; }
.article-meta svg { width: 14px; height: 14px; fill: var(--color-red); }

.article-body {
    background: var(--color-white);
    padding: 60px 0;
}

.article-body-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.article-lead {
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-text-dark);
    font-weight: 500;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--color-bg-light);
}

.article-body-inner p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-dark);
    margin-bottom: 22px;
}

.article-body-inner h3 {
    font-size: 24px;
    margin: 36px 0 16px;
}

.article-body-inner blockquote {
    border-left: 4px solid var(--color-red);
    padding: 20px 24px;
    margin: 30px 0;
    background: var(--color-bg-light);
    font-size: 18px;
    font-style: italic;
    color: var(--color-text-dark);
}

.article-body-inner blockquote cite {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    font-style: normal;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 2px solid var(--color-bg-light);
}

.article-share-label {
    font-family: var(--font-heading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
}

.article-share a {
    width: 40px;
    height: 40px;
    background: var(--color-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dark);
    transition: all var(--transition);
}

.article-share a:hover {
    background: var(--color-red);
    color: var(--color-white);
}

.article-share svg { width: 16px; height: 16px; fill: currentColor; }

.related-articles {
    background: var(--color-bg-light);
    padding: 60px 0;
}

/* ============================================
   PLAYER PROFILE
   ============================================ */

.player-hero {
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.92), rgba(227, 6, 19, 0.4)),
        url('../images/background3.webp') center/cover no-repeat;
    color: var(--color-white);
    padding: calc(var(--header-h) + 60px) 0 60px;
    position: relative;
    overflow: hidden;
}

.player-hero-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.player-hero-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 700;
    border: 6px solid var(--color-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.player-hero-num {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-red);
    letter-spacing: 0.2em;
    margin-bottom: 8px;
}

.player-hero-name {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1;
    margin-bottom: 16px;
}

.player-hero-pos {
    font-family: var(--font-heading);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gray-light);
    margin-bottom: 24px;
}

.player-bg-num {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 500px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.04);
    line-height: 0.8;
    z-index: 1;
}

.player-stats-section {
    padding: 60px 0;
    background: var(--color-bg-light);
}

.player-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 50px;
}

.player-big-stat {
    background: var(--color-white);
    padding: 30px 20px;
    text-align: center;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--color-red);
}

.player-big-stat-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-red);
    line-height: 1;
    margin-bottom: 8px;
}

.player-big-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
}

.player-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.player-info-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
}

.player-info-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--color-red);
    display: inline-block;
}

.player-info-list {
    list-style: none;
}

.player-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--color-border-light);
    font-size: 14px;
}

.player-info-list li:last-child { border-bottom: none; }

.player-info-list strong {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* ============================================
   SPONSOR LOGOS (Brand-Tiles)
   ============================================ */

.brand-tile {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.brand-tile span { position: relative; z-index: 1; }

.brand-uhlsport { background: linear-gradient(135deg, #003478, #001a44); color: #fff; font-size: 22px; }
.brand-uhlsport::before { content:""; position:absolute; left:14px; top:50%; transform:translateY(-50%); width:8px; height:30px; background:#ff6600; border-radius:2px; }

.brand-kaercher { background: #ffd400; color: #000; font-size: 24px; font-style: italic; }

.brand-intersport { background: linear-gradient(135deg, #003da6, #001f6b); color: #fff; font-size: 18px; }
.brand-intersport::after { content:""; position:absolute; right:14px; top:50%; transform:translateY(-50%); width:14px; height:14px; background:#ff6600; border-radius:50%; }

.brand-korn { background: linear-gradient(135deg, #6dbe45, #3d8520); color: #fff; font-size: 18px; }

.brand-schmidt { background: #1a1a1a; color: #fff; font-size: 22px; border: 2px solid #ff6600; }
.brand-schmidt::before { content:""; position:absolute; left:0; top:0; bottom:0; width:6px; background:#ff6600; }

.brand-vrbank { background: #fff; color: #003d7a; font-size: 22px; border: 2px solid #003d7a; }

.brand-default {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    color: #fff;
    font-size: 16px;
}

.brand-tile-small {
    height: 60px;
    font-size: 16px;
}

/* ============================================
   GOOGLE MAPS WRAPPER
   ============================================ */

.google-map {
    height: 420px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.3) contrast(1.05);
}

/* ============================================
   STATIC LEGAL PAGES
   ============================================ */

.legal-content {
    padding: 60px 0;
    background: var(--color-bg-light);
}

.legal-content-inner {
    max-width: 860px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 50px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
}

.legal-content-inner h2 {
    font-size: 26px;
    margin: 32px 0 14px;
    color: var(--color-text-dark);
    border-left: 4px solid var(--color-red);
    padding-left: 14px;
}

.legal-content-inner h2:first-child { margin-top: 0; }

.legal-content-inner p,
.legal-content-inner li {
    color: var(--color-text-dark);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 15px;
}

.legal-content-inner ul { margin: 0 0 20px 20px; }
.legal-content-inner strong { color: var(--color-text-dark); }

/* ============================================
   MOBILE / RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .nav { display: none; }
    .menu-toggle { display: flex; }

    .nav.open {
        display: flex;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        align-items: stretch;
        backdrop-filter: blur(10px);
    }

    .nav.open a {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav.open a::after { display: none; }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-shape { min-height: 300px; }
    .hero-emblem { max-width: 280px; }

    .info-grid { grid-template-columns: 1fr; }
    .info-card { border-right: none; border-bottom: 1px solid var(--color-border-light); }
    .info-card:last-child { border-bottom: none; }

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

    .content-grid { grid-template-columns: 1fr; }
    .sidebar { position: static; }

    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(1), .stat-item:nth-child(2) {
        border-bottom: 1px solid var(--color-border-light);
    }

    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .youth-grid { grid-template-columns: repeat(2, 1fr); }
    .team-cards { grid-template-columns: 1fr; }

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

    .stats-row { grid-template-columns: 1fr; }
    .countdown { gap: 10px; }
    .countdown-box { min-width: 90px; padding: 16px 18px; }
    .countdown-num { font-size: 36px; }
    .matchday-card { padding: 24px; }
    .matchday-vs { font-size: 32px; }
    .matchday-team img { width: 80px; height: 80px; }
    .youth-banner { background-attachment: scroll; }

    .player-hero-inner { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .player-hero-img { margin: 0 auto; width: 200px; height: 200px; font-size: 80px; }
    .player-info-grid { grid-template-columns: 1fr; }
    .legal-content-inner { padding: 30px 24px; }
    .article-hero { height: 320px; }
}

@media (max-width: 640px) {
    .container { padding: 0 16px; }

    .hero-values { grid-template-columns: 1fr; gap: 20px; }
    .hero-title { font-size: 44px; }

    .info-stripe { padding-bottom: 60px; }

    .youth-banner { padding: 60px 0; }

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

    .stats-bar { grid-template-columns: 1fr; }
    .stat-item { border-right: none !important; border-bottom: 1px solid var(--color-border-light); }
    .stat-item:last-child { border-bottom: none; }

    .values-grid { grid-template-columns: 1fr; }
    .youth-grid { grid-template-columns: 1fr; }

    .news-row { grid-template-columns: 1fr; }
    .news-row-img { min-height: 160px; }

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

    .partners-grid { gap: 20px; justify-content: center; }
    .partner-logo { font-size: 16px; padding: 0 12px; }

    .content-main { padding: 24px; }
    .contact-info-card, .contact-form { padding: 24px; }

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

/* ============================================
   KADER — Team-Auswahl & dynamische Karten
   ============================================ */

.kader-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0 10px;
}

.kader-tab {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: 4px;
    padding: 12px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.kader-tab span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-top: 2px;
}

.kader-tab:hover { border-color: var(--color-red); color: var(--color-red); }

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

.kader-tab.active span { color: rgba(255, 255, 255, 0.8); }

.kader-head {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin: 30px 0 10px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--color-red);
}

.kader-team-name {
    font-size: 26px;
    letter-spacing: 0.04em;
    margin: 0;
}

.kader-team-liga {
    font-size: 13px;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.kader-team-count {
    margin-left: auto;
    font-size: 12px;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.kader-gruppe {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin: 28px 0 4px;
    border-left: 3px solid var(--color-red);
    padding-left: 12px;
}

/* Spieler-Foto statt Silhouette */
.squad-card-photo {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Alters-Badge auf der Karte */
.squad-card-age {
    display: inline-block;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.08em;
}

/* Kapitäns-Marker */
.squad-card-cap {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--color-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    box-shadow: var(--shadow-sm);
}

.squad-card-body { position: relative; }

/* Trainerteam-Block */
.coach-block {
    margin-top: 50px;
    background: var(--color-black);
    color: var(--color-white);
    padding: 40px;
    border-radius: 4px;
    text-align: center;
    background-image: linear-gradient(135deg, rgba(10,10,10,0.95), rgba(10,10,10,0.85)), url('../images/background3.webp');
    background-size: cover;
    background-position: center;
}

.coach-block h3 { font-size: 28px; margin-bottom: 24px; }

.coach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.coach-avatar {
    width: 80px;
    height: 80px;
    background: var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
}

.coach-name {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.coach-role {
    font-size: 12px;
    color: var(--color-gray-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 4px;
}

@media (max-width: 600px) {
    .kader-tab { flex: 1 1 calc(50% - 5px); padding: 10px 14px; font-size: 13px; }
    .kader-team-count { margin-left: 0; width: 100%; }
}
