/* =============================================
   SC BRAGA — DESIGN SYSTEM & GLOBAL STYLES
   ============================================= */

:root {
    /* Brand Colors */
    --red: #C8102E;
    --red-dark: #9B0A20;
    --red-light: #E8354E;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --dark: #111111;
    --dark-card: #1A1A1A;
    --dark-border: #2A2A2A;
    --gray-100: #F5F5F5;
    --gray-200: #E8E8E8;
    --gray-300: #CCCCCC;
    --gray-500: #888888;
    --gray-700: #555555;
    --gold: #D4AF37;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =============================================
   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(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all 0.4s var(--ease);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 16, 46, 0.15);
    padding: var(--space-sm) 0;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 2px;
    color: var(--white);
}

.nav {
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding: var(--space-xs) 0;
    transition: color 0.3s var(--ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.btn-tickets {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--red);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease);
}

.btn-tickets:hover {
    background: var(--red-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(200, 16, 46, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}

.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);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s var(--ease);
}

.mobile-nav-link:hover {
    opacity: 1;
    color: var(--red);
}

.mobile-nav-cta {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    background: var(--red);
    color: var(--white);
    padding: 14px 40px;
    border-radius: var(--radius-sm);
    margin-top: var(--space-lg);
    letter-spacing: 1px;
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(10, 10, 10, 0.3) 30%,
        rgba(200, 16, 46, 0.15) 60%,
        rgba(10, 10, 10, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-xl);
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red-light);
    background: rgba(200, 16, 46, 0.15);
    border: 1px solid rgba(200, 16, 46, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1;
    margin-bottom: var(--space-lg);
}

.hero-title-line {
    display: block;
    font-size: clamp(3rem, 10vw, 8rem);
    letter-spacing: -2px;
    animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

.hero-title-line.accent {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.2s;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.btn-primary {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--red);
    color: var(--white);
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.btn-primary:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 16, 46, 0.4);
}

.btn-secondary {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: transparent;
    color: var(--white);
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

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

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--red), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); }
}

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

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

.stats-bar {
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 200px,
        rgba(255, 255, 255, 0.03) 200px,
        rgba(255, 255, 255, 0.03) 201px
    );
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    position: relative;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-top: var(--space-xs);
    letter-spacing: 0.5px;
}

/* =============================================
   SECTIONS COMMON
   ============================================= */

.section-header {
    margin-bottom: var(--space-2xl);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: var(--space-sm);
}

.section-header.light .section-tag {
    color: var(--red-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

.section-header.light .section-title {
    color: var(--white);
}

/* =============================================
   NEXT MATCH
   ============================================= */

.next-match {
    padding: var(--space-3xl) 0;
    background: var(--black);
}

.match-card {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-border);
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.match-card:hover {
    border-color: rgba(200, 16, 46, 0.3);
    box-shadow: 0 8px 40px rgba(200, 16, 46, 0.1);
}

.match-meta {
    display: flex;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid var(--dark-border);
}

.match-league {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
}

.match-date {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    padding: var(--space-2xl) var(--space-xl);
}

.match-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.team-crest {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.match-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.match-time {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
}

.match-vs-text {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--gray-500);
    text-transform: uppercase;
}

.match-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    border-top: 1px solid var(--dark-border);
    background: rgba(255, 255, 255, 0.02);
}

.match-venue {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--gray-500);
}

.match-venue svg {
    color: var(--red);
}

.btn-tickets-match {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 0.5px;
    transition: color 0.3s var(--ease);
}

.btn-tickets-match:hover {
    color: var(--red-light);
}

/* Last Result */
.last-result {
    margin-top: var(--space-xl);
}

.result-card {
    background: var(--dark-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--dark-border);
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--space-md);
}

.result-teams {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.result-team {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
}

.result-score {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--red);
    letter-spacing: 2px;
}

.result-win {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    padding: 6px 16px;
    border-radius: 100px;
}

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

.news {
    padding: var(--space-3xl) 0;
    background: var(--dark);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.news-card {
    background: var(--dark-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--dark-border);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 16, 46, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.news-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.news-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.news-card.featured .news-img {
    aspect-ratio: auto;
    min-height: 320px;
}

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

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

.news-category {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--red);
    color: var(--white);
    padding: 5px 14px;
    border-radius: var(--radius-sm);
}

.news-body {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.news-date {
    font-size: 0.75rem;
    color: var(--gray-500);
    letter-spacing: 0.5px;
    margin-bottom: var(--space-sm);
}

.news-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
    transition: color 0.3s var(--ease);
}

.news-card.featured .news-title {
    font-size: 1.5rem;
}

.news-card:hover .news-title {
    color: var(--red-light);
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.news-link {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 0.5px;
    margin-top: auto;
}

.news-link:hover {
    color: var(--red-light);
}

.news-more {
    text-align: center;
    margin-top: var(--space-xl);
}

/* =============================================
   STANDINGS
   ============================================= */

.standings {
    padding: var(--space-3xl) 0;
    background: var(--black);
}

.standings-table-wrapper {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-border);
    overflow: hidden;
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
}

.standings-table thead {
    background: rgba(200, 16, 46, 0.1);
}

.standings-table th {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-500);
    padding: 14px 16px;
    text-align: center;
}

.standings-table th.team-col {
    text-align: left;
}

.standings-table td {
    padding: 14px 16px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-300);
    border-bottom: 1px solid var(--dark-border);
}

.standings-table td.team-col {
    text-align: left;
}

.standings-table tbody tr {
    transition: background 0.3s var(--ease);
}

.standings-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.highlight-row {
    background: rgba(200, 16, 46, 0.08) !important;
}

.highlight-row .table-team {
    color: var(--red);
    font-weight: 700;
}

.pos {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
}

.pos-ucl {
    background: rgba(0, 100, 200, 0.2);
    color: #3B82F6;
}

.pos-uel {
    background: rgba(255, 140, 0, 0.2);
    color: #F59E0B;
}

.pos-uecl {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
}

.table-team {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white);
}

.standings-legend {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid var(--dark-border);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.75rem;
    color: var(--gray-500);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

.legend-dot.ucl { background: rgba(0, 100, 200, 0.5); }
.legend-dot.uel { background: rgba(255, 140, 0, 0.5); }
.legend-dot.uecl { background: rgba(34, 197, 94, 0.5); }

/* =============================================
   SQUAD / PLANTEL
   ============================================= */

.squad {
    padding: var(--space-3xl) 0;
    background: var(--dark);
}

.squad-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.player-card {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-border);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    position: relative;
}

.player-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 16, 46, 0.4);
    box-shadow: 0 16px 50px rgba(200, 16, 46, 0.15);
}

.player-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: linear-gradient(180deg, var(--red-dark), var(--dark));
}

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

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

.player-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
}

.player-info {
    padding: var(--space-lg);
    padding-bottom: var(--space-sm);
}

.player-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.player-position {
    font-size: 0.8rem;
    color: var(--red);
    font-weight: 500;
}

.player-flag {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: var(--space-xs);
}

.player-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--dark-border);
    margin: var(--space-md) var(--space-lg) 0;
    padding-top: var(--space-md);
    padding-bottom: var(--space-lg);
}

.pstat {
    text-align: center;
}

.pstat-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}

.pstat-label {
    display: block;
    font-size: 0.65rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* =============================================
   STADIUM
   ============================================= */

.stadium {
    position: relative;
    padding: var(--space-3xl) 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.stadium-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stadium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.8) 50%,
        rgba(10, 10, 10, 0.4) 100%
    );
}

.stadium-content {
    position: relative;
    z-index: 2;
}

.stadium-info {
    max-width: 600px;
}

.stadium-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.stadium-desc strong {
    color: var(--red-light);
}

.stadium-facts {
    display: flex;
    gap: var(--space-xl);
}

.fact {
    text-align: center;
}

.fact-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
}

.fact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: var(--space-xs);
}

/* =============================================
   ABOUT
   ============================================= */

.about {
    padding: var(--space-3xl) 0;
    background: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about-content p strong {
    color: var(--white);
    font-weight: 600;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.value {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.3s var(--ease);
}

.value:hover {
    border-color: rgba(200, 16, 46, 0.3);
    transform: translateY(-2px);
}

.value-icon {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.value h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.value p {
    font-size: 0.8rem !important;
    color: var(--gray-500) !important;
    margin-bottom: 0 !important;
    line-height: 1.5 !important;
}

.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
    height: 500px;
}

.about-img-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 60%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 2px solid var(--dark-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 55%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 2px solid var(--red-dark);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* =============================================
   CTA SECTION
   ============================================= */

.cta-section {
    padding: var(--space-3xl) 0;
    background: var(--dark);
}

.cta-card {
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 60%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.cta-form {
    display: flex;
    gap: var(--space-sm);
}

.cta-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s var(--ease);
}

.cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.cta-form input:focus {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.cta-form .btn-primary {
    background: var(--white);
    color: var(--red);
    white-space: nowrap;
}

.cta-form .btn-primary:hover {
    background: var(--gray-100);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

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

.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    background: var(--black);
    border-top: 1px solid var(--dark-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--gray-500);
    transition: all 0.3s var(--ease);
}

.social-link:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    letter-spacing: 0.5px;
}

.footer-links a {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    padding: 4px 0;
    transition: color 0.3s var(--ease);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--dark-border);
}

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

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

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

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

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

    .hamburger {
        display: flex;
    }

    .squad-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: var(--space-xl);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-image-stack {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-title-line {
        font-size: 3.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .match-teams {
        gap: var(--space-lg);
        padding: var(--space-xl) var(--space-md);
    }

    .match-meta {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .match-info {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

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

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

    .news-card.featured .news-img {
        min-height: 200px;
    }

    .squad-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .stadium-facts {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }

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

    .cta-card {
        padding: var(--space-xl);
    }

    .cta-form {
        flex-direction: column;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .result-card {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .standings-table th,
    .standings-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }

    .standings-legend {
        flex-wrap: wrap;
        gap: var(--space-sm) var(--space-md);
    }
}

@media (max-width: 480px) {
    .hero-title-line {
        font-size: 2.5rem;
    }

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

    .btn-tickets {
        display: none;
    }

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

    .about-image-stack {
        height: 300px;
    }

    .standings-table th:nth-child(n+5):not(:last-child),
    .standings-table td:nth-child(n+5):not(:last-child) {
        display: none;
    }
}
