/* Santiago Giménez Fan Site - AC Milan Theme */
/* Color palette: Milan Red, Black, Gold accents */

:root {
    /* AC Milan Colors */
    --primary-color: #AC2F3E;
    --primary-dark: #8B1E2C;
    --primary-light: #D94452;
    --secondary-color: #1A1A1A;
    --accent-color: #D4AF37;
    --accent-light: #FFD700;

    /* Backgrounds */
    --bg-color: #0D0D0D;
    --bg-card: rgba(26, 26, 26, 0.95);
    --bg-gradient: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #2D1A1A 100%);

    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.6);

    /* Borders & Shadows */
    --border-color: rgba(172, 47, 62, 0.3);
    --shadow-color: rgba(172, 47, 62, 0.2);
    --glow-color: rgba(212, 175, 55, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-gradient);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.98) 0%, rgba(13, 13, 13, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(13, 13, 13, 0.98);
    box-shadow: 0 4px 30px var(--shadow-color);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 0 10px var(--accent-color));
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(172, 47, 62, 0.2);
}

.nav-link.active {
    color: var(--accent-color);
    background: rgba(172, 47, 62, 0.3);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg video,
.hero-video-bg iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(172, 47, 62, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, rgba(13, 13, 13, 0.4) 0%, rgba(13, 13, 13, 0.8) 50%, var(--bg-color) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 13, 13, 0.7) 70%, var(--bg-color) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 60px 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px var(--shadow-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px var(--shadow-color);
    animation: shine 3s infinite;
}

@keyframes shine {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    min-width: 140px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 40px var(--shadow-color);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 20px var(--shadow-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow-color);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

/* ==================== HERO PAGE (internal pages) ==================== */
.hero-page {
    min-height: 50vh;
    padding-top: 80px;
    background:
        radial-gradient(ellipse at center, rgba(172, 47, 62, 0.2) 0%, transparent 70%),
        var(--bg-gradient);
}

.hero-page .hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 20px auto 0;
    border-radius: 4px;
}

/* ==================== INFO CARDS GRID ==================== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.info-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px var(--shadow-color);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 10px var(--shadow-color));
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== BIO CARD ==================== */
.bio-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 32px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.bio-card h2 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.bio-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* Bio Grid */
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
}

.bio-main {
    flex: 1;
}

.bio-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.quick-facts {
    list-style: none;
}

.quick-facts li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.quick-facts li:last-child {
    border-bottom: none;
}

/* Data Grid */
.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.data-item {
    background: rgba(172, 47, 62, 0.1);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.data-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.data-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ==================== TIMELINE ==================== */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: rgba(172, 47, 62, 0.1);
    border-color: var(--primary-color);
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 28px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--bg-color);
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-item.featured .timeline-marker {
    background: var(--accent-color);
    box-shadow: 0 0 0 3px var(--accent-color), 0 0 20px var(--glow-color);
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* ==================== CAREER TIMELINE (home) ==================== */
.career-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.career-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.career-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.career-item.featured {
    background: linear-gradient(135deg, rgba(172, 47, 62, 0.2), rgba(212, 175, 55, 0.1));
    border-color: var(--accent-color);
}

.career-year {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-color);
    min-width: 120px;
}

.career-club h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.career-club p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==================== NEWS ==================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.news-item {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.news-content {
    padding: 24px;
}

.news-date {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.news-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.news-loading {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==================== CTA SECTION ==================== */
.section-cta {
    text-align: center;
    margin-top: 40px;
}

.section-cta-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-content {
    text-align: center;
    padding: 40px 0;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border-radius: 50%;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.social-links-vertical a {
    display: block;
    padding: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-links-vertical a:hover {
    background: rgba(172, 47, 62, 0.2);
    color: var(--accent-color);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--secondary-color);
    padding: 50px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--accent-color);
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-bottom: 24px;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==================== FEATURE LIST ==================== */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .bio-grid {
        grid-template-columns: 1fr;
    }

    .bio-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        display: block;
        padding: 15px;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-item {
        min-width: 100px;
        padding: 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .bio-card {
        padding: 24px;
    }

    .career-item {
        flex-direction: column;
        gap: 12px;
    }

    .career-year {
        min-width: auto;
    }

    .section {
        padding: 50px 0;
    }
}

/* ==================== GALLERY STYLES ==================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px var(--shadow-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item .placeholder-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 20px;
}

.gallery-item .placeholder-icon {
    font-size: 3.5rem;
    margin-bottom: 12px;
}

.gallery-item .placeholder-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Gallery card color themes */
.gallery-item.milan {
    background: linear-gradient(135deg, rgba(172, 47, 62, 0.4), rgba(26, 26, 26, 0.8));
}

.gallery-item.feyenoord {
    background: linear-gradient(135deg, rgba(238, 0, 0, 0.3), rgba(255, 255, 255, 0.1));
}

.gallery-item.cruzazul {
    background: linear-gradient(135deg, rgba(0, 92, 169, 0.4), rgba(26, 26, 26, 0.8));
}

.gallery-item.mexico {
    background: linear-gradient(135deg, rgba(0, 104, 71, 0.4), rgba(206, 17, 38, 0.2));
}

/* ==================== MATCH CARDS (partidos) ==================== */
.match-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.match-card:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.match-teams {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 600;
}

.match-vs {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 0.9rem;
}

.match-info {
    text-align: right;
}

.match-date {
    color: var(--accent-color);
    font-weight: 600;
}

.match-competition {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.match-result {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
}

.match-result.win {
    background: linear-gradient(135deg, #00c853, #00a844);
}

.match-result.draw {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #1a1a1a;
}

.match-result.loss {
    background: linear-gradient(135deg, #f44336, #c62828);
}

/* ==================== STATS TABLE ==================== */
.stats-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    overflow: hidden;
}

.stats-table th,
.stats-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.stats-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.stats-table tr:hover {
    background: rgba(172, 47, 62, 0.1);
}

.stats-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.stats-highlight {
    color: var(--accent-color);
    font-weight: 800;
}

.stats-total {
    background: rgba(212, 175, 55, 0.15) !important;
    font-weight: 700;
}

.stat-big-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== TRANSFER TIMELINE ==================== */
.transfer-timeline {
    position: relative;
    padding-left: 30px;
}

.transfer-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.transfer-item {
    position: relative;
    margin-bottom: 30px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: 16px;
    margin-left: 24px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.transfer-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.transfer-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 28px;
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 3px solid var(--bg-color);
    box-shadow: 0 0 0 2px var(--accent-color);
}

.transfer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

.transfer-date {
    color: var(--accent-color);
    font-weight: 700;
}

.transfer-fee {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
}

.transfer-clubs {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.15rem;
    font-weight: 600;
}

.transfer-arrow {
    color: var(--accent-color);
}