/* =============================================
   PERSADA FC - Main Stylesheet
   Modern Sports Theme (ESPN White & Red Style)
   ============================================= */

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

/* =============================================
   CSS Custom Properties (ESPN Red & White Theme)
   ============================================= */
:root {
    --color-primary: #EA2828;
    --color-primary-dark: #C91D1D;
    --color-primary-light: #FF4A4A;
    --color-primary-soft: rgba(234, 40, 40, 0.08);
    --color-primary-gradient: linear-gradient(135deg, #EA2828 0%, #D31818 100%);
    
    --color-gold: #EA2828;
    --color-gold-light: #FF5252;
    
    --color-bg-page: #FFFFFF;
    --color-bg-alt: #F7F8FA;
    --color-bg-card: #FFFFFF;
    
    --color-dark: #111111;
    --color-darker: #080808;
    --color-dark-surface: #1E2022;
    --color-dark-card: #25282B;
    
    --color-text-main: #1A1D20;
    --color-text-muted: #64748B;
    --color-text-light: #94A3B8;
    --color-text-white: #FFFFFF;
    
    --color-white: #FFFFFF;
    --color-gray-50: #F8FAFC;
    --color-gray-100: #F1F5F9;
    --color-gray-200: #E2E8F0;
    --color-gray-300: #CBD5E1;
    --color-gray-400: #94A3B8;
    --color-gray-500: #64748B;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1E293B;
    --color-gray-900: #0F172A;
    
    --color-border: #E8ECF1;
    --color-border-light: #F0F3F7;
    
    --color-success: #10B981;
    --color-warning: #F59E0B;

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

    --transition-fast: all 0.2s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    --glass-bg: #FFFFFF;
    --glass-bg-hover: #F8FAFC;
    --glass-border: #E8ECF1;
    --glass-border-hover: #CBD5E1;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 35px rgba(0, 0, 0, 0.08);
    --shadow-red: 0 8px 25px rgba(234, 40, 40, 0.25);
    --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.05);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;

    --header-height: 100px;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-page);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: var(--color-text-main);
}

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

a:hover {
    color: var(--color-primary);
}

ul { list-style: none; }

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   HEADER
   ============================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    background: #0D0D0D;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 0;
    font-size: 0.8rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-social a {
    color: #A0A0A0;
    margin-right: 15px;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.header-social a:hover {
    color: var(--color-primary);
    transform: translateY(-1px);
}

.header-signin {
    color: #CBD5E1 !important;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.header-signin:hover {
    color: var(--color-primary-light) !important;
}

.header-main {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

header.scrolled .header-main {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

header.scrolled .header-top {
    margin-top: -40px;
    opacity: 0;
    pointer-events: none;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    position: relative;
}

.logo {
    margin: 0 35px;
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.12));
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.06);
    filter: drop-shadow(0 5px 10px rgba(234, 40, 40, 0.25));
}

.nav-left, .nav-right {
    flex: 1;
}

.nav-right {
    display: flex;
    justify-content: flex-start;
}

.nav-left {
    display: flex;
    justify-content: flex-end;
}

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

.nav-links a {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    color: #2D3748;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
}

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

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 1002;
    width: 44px;
    height: 44px;
    padding: 10px 8px;
    background: transparent;
    border: none;
    border-radius: 8px;
    transition: var(--transition);
}

.hamburger:hover,
.hamburger:focus {
    background: rgba(234, 40, 40, 0.08);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #1A1D20;
    margin-bottom: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    border-radius: 3px;
}

.hamburger span:last-child {
    margin-bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #EA2828;
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #EA2828;
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height, 75px);
    left: 0;
    width: 100%;
    max-height: calc(100vh - 75px);
    overflow-y: auto;
    background: #FFFFFF;
    border-bottom: 3px solid #EA2828;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 12px 20px 25px;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin: 0;
}

.mobile-nav-list li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1A1D20;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.25s ease;
    border-bottom: 1px solid #F1F5F9;
}

.mobile-nav-list li a i {
    width: 22px;
    font-size: 1.05rem;
    color: #94A3B8;
    transition: color 0.25s ease;
}

.mobile-nav-list li a:hover,
.mobile-nav-list li a.active {
    background: rgba(234, 40, 40, 0.08);
    color: #EA2828;
    padding-left: 22px;
}

.mobile-nav-list li a:hover i,
.mobile-nav-list li a.active i {
    color: #EA2828;
}

.mobile-menu-action {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #E2E8F0;
}

.mobile-admin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 20px;
    background: #1A1D20;
    color: #FFFFFF !important;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-admin-btn:hover {
    background: #EA2828;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(234, 40, 40, 0.3);
}

/* =============================================
   HERO SECTION (ESPN Style Light Hero)
   ============================================= */
.hero {
    position: relative;
    display: block;
    overflow: hidden;
    background: #FFFFFF;
    border-bottom: 1px solid var(--color-border);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 30%, rgba(234, 40, 40, 0.05) 0%, rgba(247, 248, 250, 0.6) 50%, #FFFFFF 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: calc(var(--header-height, 105px) + 20px);
    padding-bottom: 30px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    animation: heroFadeIn 1s ease-out;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: heroSlideIn 0.9s ease-out 0.3s both;
}

.hero-photo-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #FFFFFF;
    border: 3px solid #FFFFFF;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px #E8ECF1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    max-width: 540px;
    width: 100%;
}

.hero-photo-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 50px rgba(234, 40, 40, 0.18), 0 0 0 1px var(--color-primary-light);
}

.hero-team-photo {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.hero-photo-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--color-border);
}

.hero-badge-logo {
    height: 32px;
    width: auto;
}

.hero-badge-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #1A1D20;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.hero-badge-info span {
    font-size: 0.72rem;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    animation: heroSlideIn 0.8s ease-out 0.2s both;
}

.hero-badge-line {
    display: block;
    width: 35px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.hero-badge-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--color-primary);
    font-weight: 700;
}

.hero-title {
    margin-bottom: 18px;
    animation: heroSlideIn 0.8s ease-out 0.4s both;
}

.hero-first-name {
    display: block;
    font-size: clamp(3.2rem, 7.5vw, 5.8rem);
    font-weight: 700;
    letter-spacing: 2px;
    color: #1A1D20;
    line-height: 0.95;
}

.hero-last-name {
    display: block;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 1.1;
    margin-top: 4px;
    color: var(--color-primary);
    background: var(--color-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.02rem;
    color: #555555;
    max-width: 480px;
    margin-bottom: 26px;
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
    animation: heroSlideIn 0.8s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 35px;
    animation: heroSlideIn 0.8s ease-out 0.8s both;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 20px 28px;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    width: fit-content;
    animation: heroSlideIn 0.8s ease-out 1s both;
}

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

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
    display: block;
    font-weight: 600;
}

.hero-stat-divider {
    width: 1px;
    height: 35px;
    background: var(--color-border);
}

.hero-scroll-indicator {
    position: relative;
    margin: 25px auto 0 auto;
    z-index: 5;
    text-align: center;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
    display: block;
    font-size: 0.7rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 6px;
    font-weight: 500;
}

.scroll-arrow {
    color: var(--color-primary);
    font-size: 0.95rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.btn-primary {
    background: var(--color-primary);
    background: var(--color-primary-gradient);
    color: #FFFFFF !important;
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(234, 40, 40, 0.4);
    color: #FFFFFF !important;
}

.btn-outline {
    background: transparent;
    color: var(--color-text-main) !important;
    border: 1.5px solid var(--color-border);
}

.btn-outline:hover {
    background: var(--color-primary-soft);
    border-color: var(--color-primary);
    color: var(--color-primary) !important;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section {
    padding: 75px 0;
    position: relative;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    color: #1A1D20;
}

.section-title span {
    color: var(--color-primary);
}

.section-subtitle {
    font-size: 0.95rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
}

.section-line {
    width: 50px;
    height: 3.5px;
    background: var(--color-primary);
    margin: 12px auto;
    border-radius: 3px;
}

/* =============================================
   MATCHES SECTION (BOLD RED BLOCK THEME)
   ============================================= */
.matches-ticker {
    background: #EA2828;
    background: linear-gradient(135deg, #EA2828 0%, #D31818 100%);
    padding: 45px 0 50px;
    position: relative;
    color: #FFFFFF;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.matches-ticker .section-header {
    margin-bottom: 30px;
}

.matches-ticker .section-header p {
    color: #FFFFFF !important;
    font-weight: 700;
    letter-spacing: 3px;
}

.matches-scroll-wrapper {
    position: relative;
}

.matches-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 0 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.matches-container::-webkit-scrollbar {
    height: 6px;
}

.matches-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 3px;
}

.matches-container::-webkit-scrollbar-thumb {
    background: #FFFFFF;
    border-radius: 3px;
}

/* White Cards inside Red Block */
.match-card {
    min-width: 320px;
    background: #FFFFFF;
    border: none;
    border-radius: var(--radius-md);
    padding: 22px;
    scroll-snap-align: start;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    color: var(--color-text-main);
}

.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    opacity: 0;
    transition: var(--transition);
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.match-card:hover::before {
    opacity: 1;
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: #718096;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.match-competition {
    color: var(--color-primary);
    font-weight: 700;
    background: var(--color-primary-soft);
    padding: 3px 8px;
    border-radius: 4px;
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.team-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #F8FAFC;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
    color: #1A1D20;
}

.match-score {
    display: flex;
    align-items: center;
    gap: 8px;
}

.score {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #111111;
    min-width: 28px;
    text-align: center;
}

.score-divider {
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.match-vs {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 2px;
}

.match-status {
    text-align: center;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border-light);
    font-size: 0.78rem;
    color: #718096;
    font-weight: 500;
}

.match-status.live {
    color: var(--color-primary);
    font-weight: 700;
    animation: pulse 1.5s infinite;
}

/* =============================================
   NEWS SECTION (Crisp White / Light Gray)
   ============================================= */
.news-section {
    background: #F7F8FA;
}

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

.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

@media (min-width: 992px) {
    .news-grid {
        grid-template-columns: 1.4fr 1fr;
        grid-template-rows: auto;
    }

    .news-card.featured {
        grid-row: 1 / -1;
    }
}

.news-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    display: block;
    transition: var(--transition);
    background: #FFFFFF;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
}

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

.news-card.small {
    min-height: 150px;
}

.news-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: var(--transition-slow);
}

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

.news-card-bg.placeholder {
    background: linear-gradient(135deg, #1A1D20, #2C3437);
}

.news-card.featured .news-card-bg.placeholder {
    background: linear-gradient(135deg, #182026, #222E35);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.news-card:hover .news-card-bg {
    transform: scale(1.04);
}

.news-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

.news-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 2;
}

.news-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-primary);
    color: #FFFFFF !important;
    font-size: 0.72rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border-radius: 3px;
    margin-bottom: 8px;
}

.news-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
    color: #FFFFFF !important;
}

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

.news-card-excerpt {
    font-size: 0.88rem;
    color: #E2E8F0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-date {
    font-size: 0.75rem;
    color: #CBD5E1;
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

/* =============================================
   WELCOME SECTION
   ============================================= */
.welcome-section {
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
}

.welcome-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(234, 40, 40, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.welcome-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.welcome-content h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 15px;
    color: #1A1D20;
}

.welcome-content h2 span {
    color: var(--color-primary);
}

.welcome-content p {
    color: #555555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 45px;
}

.welcome-feature {
    text-align: center;
    padding: 32px 22px;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.welcome-feature:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.welcome-feature-icon {
    font-size: 2.4rem;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.welcome-feature h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #1A1D20;
}

.welcome-feature p {
    font-size: 0.88rem;
    color: #64748B;
    margin-bottom: 0;
    line-height: 1.6;
}

/* =============================================
   STANDINGS TABLE
   ============================================= */
.standings-section {
    background: #F7F8FA;
}

.standings-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--color-border);
}

.standings-tab {
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748B;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-weight: 600;
}

.standings-tab:hover,
.standings-tab.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.standings-wrapper {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

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

.standings-table th {
    padding: 14px 12px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #475569;
    text-align: center;
    background: #F1F5F9;
    border-bottom: 1px solid var(--color-border);
    font-weight: 700;
}

.standings-table th:nth-child(2) {
    text-align: left;
}

.standings-table td {
    padding: 13px 12px;
    text-align: center;
    border-bottom: 1px solid var(--color-border-light);
    font-size: 0.92rem;
    color: #1E293B;
}

.standings-table td:first-child {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #64748B;
    width: 40px;
}

.standings-table td:nth-child(2) {
    text-align: left;
    font-weight: 600;
}

.standings-table td:last-child {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: #0F172A;
}

.standings-table tr {
    transition: var(--transition-fast);
}

.standings-table tbody tr:hover {
    background: #F8FAFC;
}

.standings-table tr.highlight {
    background: #FEF2F2 !important;
    border-left: 4px solid var(--color-primary);
}

.standings-table tr.highlight td {
    color: #0F172A;
    font-weight: 600;
}

.standings-table tr.highlight td:nth-child(2) {
    color: var(--color-primary);
    font-weight: 700;
}

/* =============================================
   TEAM SECTION (Squad Slider)
   ============================================= */
.team-section {
    background: #FFFFFF;
    overflow: hidden;
}

.team-slider-wrapper {
    position: relative;
}

.team-slider {
    display: flex;
    overflow-x: auto;
    gap: 22px;
    padding: 15px 0 25px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.team-slider::-webkit-scrollbar {
    height: 5px;
}

.team-slider::-webkit-scrollbar-track {
    background: #F1F5F9;
    border-radius: 3px;
}

.team-slider::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 3px;
}

.player-card {
    min-width: 230px;
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    text-align: center;
    padding: 35px 20px 25px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    scroll-snap-align: start;
    text-decoration: none;
    display: block;
}

.player-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.player-number {
    position: absolute;
    top: -5px;
    right: 15px;
    font-size: 4.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: rgba(234, 40, 40, 0.12);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.player-image {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), #B71C1C);
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid #FFFFFF;
    box-shadow: 0 4px 15px rgba(234, 40, 40, 0.2);
}

.player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-image i {
    font-size: 2.5rem;
    color: #FFFFFF;
}

.player-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
    color: #1A1D20;
}

.player-position {
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

/* =============================================
   SPONSORS SECTION
   ============================================= */
.sponsors-section {
    background: #FFFFFF;
    padding: 50px 0 60px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.sponsors-header {
    text-align: center;
    margin-bottom: 35px;
}

.sponsors-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1A1D20;
    margin-bottom: 8px;
}

.sponsors-line {
    width: 45px;
    height: 3px;
    background: var(--color-primary, #EA2828);
    margin: 0 auto;
    border-radius: 2px;
}

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

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    min-width: 140px;
    height: 90px;
}

.sponsor-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(234, 40, 40, 0.12);
    border-color: rgba(234, 40, 40, 0.3);
}

.sponsor-item img {
    max-height: 70px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none !important;
    transition: transform 0.3s ease;
}

.sponsor-item:hover img {
    transform: scale(1.05);
}

.sponsor-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A1D20;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.sponsor-item:hover .sponsor-name {
    color: var(--color-primary);
}

/* =============================================
   MAP & LOCATION SECTION
   ============================================= */
.map-section {
    background: #F8FAFC;
    padding: 70px 0 80px;
    border-top: 1px solid var(--color-border);
}

.map-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 35px;
    align-items: stretch;
    margin-top: 30px;
}

.map-info-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 35px 30px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.map-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(234, 40, 40, 0.08);
    color: #EA2828;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    width: fit-content;
}

.map-club-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #1A1D20;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.map-info-desc {
    color: #64748B;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.map-info-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.map-icon {
    width: 40px;
    height: 40px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EA2828;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.map-item-text strong {
    display: block;
    font-size: 0.85rem;
    color: #1A1D20;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.map-item-text span {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.4;
}

.map-directions-btn {
    margin-top: 25px;
    width: 100%;
    justify-content: center;
    border-radius: 10px;
    padding: 13px 20px;
    font-size: 0.95rem;
}

.map-frame-wrapper {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
    min-height: 380px;
    position: relative;
}

.map-frame-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    display: block;
}

@media (max-width: 900px) {
    .map-grid {
        grid-template-columns: 1fr;
    }
    .map-frame-wrapper {
        min-height: 320px;
    }
    .map-frame-wrapper iframe {
        min-height: 320px;
    }
}

/* =============================================
   FOOTER (Clean Sports Style)
   ============================================= */
footer {
    background: #0D0D0D;
    border-top: 4px solid var(--color-primary);
    color: #CBD5E1;
}

.footer-top {
    padding: 60px 0 40px;
}

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

.footer-about {
    grid-column: 1;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-desc {
    color: #94A3B8;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

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

.footer-col ul li a {
    color: #94A3B8;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--color-primary-light);
    transform: translateX(5px);
}

.footer-news li a {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-news-title {
    color: #E2E8F0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-news-date {
    color: #64748B;
    font-size: 0.75rem;
}

.footer-contact li {
    color: #94A3B8;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    color: var(--color-primary);
    margin-top: 3px;
    width: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #CBD5E1;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: #64748B;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #94A3B8;
}

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

/* =============================================
   GALLERY & MEDIA SECTION
   ============================================= */
.gallery-section {
    background: #F8FAFC;
    position: relative;
}

.gallery-page {
    padding-bottom: 80px;
    background: #F8FAFC;
    min-height: 100vh;
}

.page-banner {
    background: linear-gradient(135deg, #1A1D20 0%, #0D0D0D 100%);
    padding: 120px 0 50px;
    text-align: center;
    border-bottom: 3px solid #EA2828;
    margin-bottom: 20px;
}

.page-banner .page-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.page-banner .page-title span {
    color: #EA2828;
}

.page-banner .page-subtitle {
    color: #94A3B8;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

.gallery-tabs {
    display: inline-flex;
    background: #FFFFFF;
    padding: 6px;
    border-radius: 30px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-tab {
    padding: 8px 20px;
    border-radius: 25px;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #64748B;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
}

.gallery-tab:hover {
    color: #EA2828;
}

.gallery-tab.active {
    background: #EA2828;
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(234, 40, 40, 0.3);
}

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

.gallery-card {
    border-radius: 14px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(234, 40, 40, 0.3);
}

.gallery-thumb-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    cursor: pointer;
    background: #0D0D0D;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(26, 29, 32, 0.85);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gallery-badge.badge-video {
    background: #EA2828;
}

.gallery-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    background: rgba(234, 40, 40, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.2rem;
    padding-left: 4px;
    box-shadow: 0 0 0 8px rgba(234, 40, 40, 0.35);
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-card:hover .gallery-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: #EA2828;
    box-shadow: 0 0 0 12px rgba(234, 40, 40, 0.45);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.7) 60%, transparent 100%);
    padding: 30px 18px 16px;
    color: #FFFFFF;
    transition: all 0.3s ease;
    z-index: 3;
}

.gallery-date {
    display: block;
    font-size: 0.78rem;
    color: #E2E8F0;
    margin-bottom: 4px;
}

.gallery-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 6px;
    color: #FFFFFF;
}

.gallery-caption {
    font-size: 0.82rem;
    color: #CBD5E1;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #EA2828;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    max-width: 900px;
    width: 100%;
    background: #1A1D20;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #334155;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    animation: heroSlideIn 0.35s ease-out;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: #EA2828;
    border-color: #EA2828;
    transform: scale(1.1);
}

.lightbox-media {
    width: 100%;
    background: #0D0D0D;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    max-height: 70vh;
}

.lightbox-media img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.lightbox-media iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

.lightbox-info {
    padding: 20px 24px;
    background: #1A1D20;
    border-top: 1px solid #334155;
}

.lightbox-info h3 {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 1.35rem;
    color: #FFFFFF;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.lightbox-info p {
    font-size: 0.9rem;
    color: #94A3B8;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .page-banner {
        padding: 90px 0 35px;
    }
    .page-banner .page-title {
        font-size: 2.2rem;
    }
    .lightbox-container {
        max-width: 95%;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes heroFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: #475569;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #FFFFFF;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1200px) {
    .nav-links { gap: 20px; }
    .hero-grid { gap: 30px; }
}

@media (max-width: 600px) {
    :root { --header-height: 75px; }

    .header-top { display: none; }
    .nav-left, .nav-right { display: none; }
    .hamburger { display: flex; align-items: center; justify-content: center; }
    .mobile-menu { display: block; }
    .mobile-menu-backdrop { display: block; }

    .header-container {
        justify-content: space-between;
        padding: 0 20px;
    }

    .logo { margin: 0; }
    .logo img { height: 48px; }

    .hero {
        min-height: auto;
        padding-top: 15px;
    }

    .hero-grid { 
        grid-template-columns: 1fr; 
        gap: 30px; 
        text-align: center; 
    }
    
    .hero-content { 
        max-width: 100%; 
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-description { 
        margin: 0 auto 25px auto; 
        text-align: justify;
        text-justify: inter-word;
    }
    
    .hero-buttons { 
        justify-content: center; 
        width: 100%;
        max-width: 450px;
    }
    
    .hero-stats { 
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        padding: 16px 24px;
    }
    
    .hero-badge { 
        justify-content: center; 
    }

    .hero-photo-card { 
        max-width: 520px; 
        margin: 0 auto; 
    }

    .news-grid { grid-template-columns: 1fr; }
    .news-card.featured { min-height: 340px; }
    .news-card.small { min-height: 180px; }

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

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

@media (max-width: 768px) {
    .hero-first-name { font-size: 3.2rem; }
    .hero-last-name { font-size: 1.8rem; }

    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; justify-content: center; }

    .hero-stats { 
        padding: 16px 20px;
        gap: 15px; 
    }
    .hero-stat-number { font-size: 1.9rem; }

    .section { padding: 50px 0; }
    .section-title { font-size: 2rem; }

    .match-card { min-width: 270px; }
    .player-card { min-width: 180px; padding: 22px 14px 18px; }
    .player-number { font-size: 3.2rem; }

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

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

    .sponsors-container { gap: 25px; }
}

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

    .hero .container {
        padding-top: calc(var(--header-height) + 15px);
        padding-bottom: 40px;
    }

    .hero-badge {
        gap: 8px;
        margin-bottom: 10px;
    }
    .hero-badge-line {
        width: 25px;
    }
    .hero-badge-text {
        font-size: 0.78rem;
        letter-spacing: 2px;
    }

    .hero-first-name { 
        font-size: clamp(2.3rem, 9vw, 2.9rem); 
        letter-spacing: 1px;
    }
    .hero-last-name { 
        font-size: clamp(1.2rem, 5vw, 1.5rem); 
        letter-spacing: 3px;
        margin-top: 2px;
    }

    .hero-description {
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: justify;
        text-justify: inter-word;
    }

    .hero-buttons {
        gap: 10px;
        margin-bottom: 22px;
    }
    .hero-buttons .btn {
        padding: 12px 16px;
        font-size: 0.92rem;
    }

    .hero-stats {
        padding: 14px 12px;
        max-width: 100%;
        border-radius: 12px;
    }
    .hero-stat-number {
        font-size: 1.55rem;
    }
    .hero-stat-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    .hero-stat-divider {
        height: 25px;
    }

    .hero-photo-card {
        border-radius: 14px;
    }
    .hero-team-photo {
        max-height: 260px;
    }
    .hero-photo-badge {
        bottom: 10px;
        left: 10px;
        padding: 5px 12px;
        gap: 8px;
    }
    .hero-badge-logo {
        height: 24px;
    }
    .hero-badge-info strong {
        font-size: 0.8rem;
    }
    .hero-badge-info span {
        font-size: 0.62rem;
    }

    .section-title {
        font-size: 1.7rem;
    }
    
    .match-card {
        min-width: 80vw;
        max-width: 88vw;
    }

    .standings-table td:nth-child(n+5):nth-child(-n+8) {
        display: none;
    }

    .standings-table th:nth-child(n+5):nth-child(-n+8) {
        display: none;
    }
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-gold { color: var(--color-primary); }
.text-muted { color: var(--color-text-muted); }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
