/*
Theme Name: Gazprom Football Club
Theme URI: https://gazpromfc.com
Author: Gazprom FC
Author URI: https://gazpromfc.com
Description: Modern and elegant football club theme with advanced animations and effects
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gazprom-football
*/

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

:root {
    /* Color Palette - Modern 2026 */
    --primary: #0066cc;
    --primary-dark: #004899;
    --primary-light: #3385d6;
    --accent: #00d4ff;
    --accent-glow: #00ffff;
    
    --dark: #0a0e27;
    --dark-900: #0f1729;
    --dark-800: #1a1f3a;
    --dark-700: #252b4a;
    
    --light: #ffffff;
    --light-900: #f8f9fa;
    --light-800: #e9ecef;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066cc 0%, #004899 100%);
    --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #0066cc 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 14, 39, 0.4) 0%, rgba(10, 14, 39, 0.9) 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.3);
    --shadow-glow-strong: 0 0 60px rgba(0, 212, 255, 0.5);
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
}

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

/* ========================================
   HEADER
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-logo {
    display: block;
    transition: transform var(--transition-base);
}

.site-logo:hover {
    transform: scale(1.05);
}

.site-logo img {
    height: 61px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.site-logo {
    margin-right: 1rem;
}

/* Navigation Menu */
.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav li {
    margin: 0;
    padding: 0;
    position: relative;
}

.desktop-nav {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.site-nav a {
    color: var(--light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all var(--transition-base);
    position: relative;
    padding: 0.5rem 0;
    display: block;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.site-nav a:hover {
    color: var(--accent);
}

.site-nav a:hover::after {
    width: 100%;
}

.site-nav .current-menu-item > a {
    color: var(--accent);
}

.site-nav .current-menu-item > a::after {
    width: 100%;
}

/* Dropdown Menu Styles (Desktop) */
.desktop-nav .menu-item-has-children > a {
    padding-right: 20px;
}

.desktop-nav .menu-item-has-children > a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform var(--transition-base);
}

.desktop-nav .menu-item-has-children:hover > a::before {
    transform: translateY(-50%) rotate(180deg);
}

.desktop-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.desktop-nav .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-nav .sub-menu li {
    width: 100%;
}

.desktop-nav .sub-menu a {
    padding: 0.75rem 1.25rem;
    font-size: 14px;
    color: #BFDFFF;
    border-left: 3px solid transparent;
    transition: all var(--transition-base);
}

.desktop-nav .sub-menu a::after {
    display: none;
}

.desktop-nav .sub-menu a:hover {
    background: rgba(0, 212, 255, 0.1);
    border-left-color: var(--accent);
    color: var(--accent);
    padding-left: 1.5rem;
}

.desktop-nav .sub-menu .current-menu-item > a {
    background: rgba(0, 212, 255, 0.15);
    border-left-color: var(--accent);
    color: var(--accent);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: all var(--transition-base);
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: var(--light);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    align-items: flex-end;
}

.mobile-nav li {
    margin: 0;
    padding: 0;
    width: 100%;
}

.mobile-nav.active {
    display: flex;
    animation: slideDown 0.3s ease-out;
}

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

.mobile-nav > ul > li > a {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    display: block;
    text-align: right;
}

.mobile-nav li {
    width: 100%;
}

.mobile-nav a::after {
    display: none;
}

.mobile-nav > ul > li > a:hover {
    background: rgba(0, 212, 255, 0.1);
}

.mobile-nav .current-menu-item > a {
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent);
    border-left: 3px solid var(--accent);
}

/* Mobile Submenu */
.mobile-nav .menu-item-has-children {
    position: relative;
}

.mobile-nav .menu-item-has-children > a {
    display: block;
    padding-right: 50px;
}

.mobile-nav .submenu-toggle {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: all var(--transition-base);
}

.mobile-nav .submenu-toggle::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform var(--transition-base);
}

.mobile-nav .menu-item-has-children.submenu-open .submenu-toggle::before {
    transform: rotate(180deg);
}

.mobile-nav .submenu-toggle:hover {
    background: rgba(0, 212, 255, 0.1);
}

.mobile-nav .sub-menu {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    transition: max-height 0.3s ease-out;
}

.mobile-nav .menu-item-has-children.submenu-open > .sub-menu {
    max-height: 500px;
}

.mobile-nav .sub-menu a {
    padding: 0.75rem 1rem 0.75rem 2rem;
    font-size: 14px;
    color: #BFDFFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    border-left: 3px solid transparent;
    text-align: right;
}

.mobile-nav .sub-menu a:hover {
    background: rgba(0, 212, 255, 0.1);
    border-left-color: var(--accent);
    color: var(--accent);
}

.mobile-nav .sub-menu .current-menu-item > a {
    border-left-color: var(--accent);
    color: var(--accent);
}

@media (min-width: 1024px) {
    .mobile-nav {
        display: none !important;
    }
}

/* ========================================
   BACK TO TOP BUTTON
======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066cc, #004899);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    color: var(--light);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.4), 0 0 30px rgba(0, 212, 255, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #004899, #0066cc);
    border-color: var(--accent);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.6), 0 0 50px rgba(0, 212, 255, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.5));
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   SECONDARY NAVIGATION (Two-Level Menu)
======================================== */
.secondary-nav-wrapper {
    background: linear-gradient(135deg, #001022 0%, #001833 100%);
    border-bottom: 1px solid rgba(0, 191, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 900;
}

.secondary-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.secondary-nav::-webkit-scrollbar {
    display: none;
}

.desktop-secondary {
    display: flex;
    justify-content: center;
    padding: 0;
}

.mobile-secondary-wrapper {
    display: none;
    position: relative;
    align-items: center;
}

@media (max-width: 768px) {
    .desktop-secondary {
        display: none !important;
    }
    
    .mobile-secondary-wrapper {
        display: flex !important;
        padding: 10px 0;
    }
    
    .secondary-nav-item {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .secondary-nav-item::after {
        bottom: 6px;
        left: 16px;
        right: 16px;
    }
}

.mobile-secondary {
    flex: 1;
    scroll-behavior: smooth;
    padding: 0 10px;
}

.secondary-nav-item {
    display: inline-block;
    padding: 14px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #BFDFFF;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 6px;
}

.secondary-nav-item:hover {
    color: #00BFFF;
    background: rgba(0, 191, 255, 0.1);
}

.secondary-nav-item::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, #00BFFF, #00E0FF);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.secondary-nav-item:hover::after {
    transform: scaleX(1);
}

.secondary-scroll-btn {
    background: rgba(0, 191, 255, 0.15);
    border: 1px solid rgba(0, 191, 255, 0.3);
    color: #00BFFF;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.secondary-scroll-btn:hover {
    background: rgba(0, 191, 255, 0.25);
    border-color: rgba(0, 191, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

.secondary-scroll-btn:active {
    transform: scale(0.95);
}


/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-ticket {
    padding: 12px 32px;
    background: var(--gradient-accent);
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.btn-ticket::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-ticket:hover::before {
    width: 300px;
    height: 300px;
}

.btn-ticket:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translateX(0);
    }
    100% {
        transform: scale(1.1) translateX(-20px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 2;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    z-index: 3;
    animation: pulseGlow 4s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 100px 0 60px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
    color: var(--light);
    animation: fadeInUp 1s ease-out 0.4s both;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.title-line.highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.6s both, shimmer 3s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.6));
}

@keyframes shimmer {
    0%, 100% {
        filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.6)) brightness(1);
    }
    50% {
        filter: drop-shadow(0 0 60px rgba(0, 212, 255, 0.9)) brightness(1.2);
    }
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--light-800);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn-primary,
.btn-secondary {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--light);
    box-shadow: var(--shadow-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow-strong);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

/* Stats Section */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--accent);
    animation: float 3s ease-in-out infinite;
}

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

.stat-number {
    font-size: clamp(1.75rem, 4vw, 2.2rem);
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.stat-label {
    color: var(--light-800);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-800);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 1.4s both, bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.scroll-indicator svg {
    animation: bounce 2s ease-in-out infinite;
}

/* ========================================
   6. NEWS SECTION 2026 STYLES
======================================== */

.news-section-2026 {
    position: relative;
    padding: 60px 0 40px;
    overflow: hidden;
    background: linear-gradient(180deg, #010b18 0%, #021f3d 50%, #010b18 100%);
}

.news-background-2026 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.grid-pattern-2026 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(31, 144, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 144, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove2026 25s linear infinite;
}

.moving-glow-2026 {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(31, 144, 255, 0.15) 0%, transparent 65%);
    animation: pulse2026 10s ease-in-out infinite;
    filter: blur(60px);
}

@keyframes gridMove2026 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

@keyframes pulse2026 {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

/* Section Header */
.news-header-2026 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.news-title-2026 {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: clamp(1.75rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 40px rgba(31, 144, 255, 0.6),
        0 0 80px rgba(31, 144, 255, 0.3);
    position: relative;
}

.news-title-2026::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #1F90FF, transparent);
    box-shadow: 0 0 20px rgba(31, 144, 255, 0.8);
}

.title-icon-2026 {
    filter: drop-shadow(0 0 15px rgba(31, 144, 255, 1));
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(31, 144, 255, 1)); }
    50% { filter: drop-shadow(0 0 25px rgba(31, 144, 255, 1)); }
}

.news-subtitle-2026 {
    font-size: clamp(0.79rem, 1.75vw, 0.96rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* News Grid - Main Layout */
.news-grid-2026 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2px;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
    background: rgba(31, 144, 255, 0.1);
}

/* News Cards */
.news-card-2026 {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

/* Featured Card (Main/Top) */
.featured-card {
    grid-column: 1 / -1;
    min-height: 450px;
}

/* Secondary Cards */
.secondary-card {
    min-height: 300px;
}

/* Background Overlay */
.news-overlay-2026 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(1, 11, 24, 0.95) 0%,
        rgba(1, 11, 24, 0.75) 40%,
        rgba(1, 11, 24, 0.4) 70%,
        rgba(1, 11, 24, 0.2) 100%
    );
    transition: background 0.5s ease;
    z-index: 1;
}

.news-card-2026:hover .news-overlay-2026 {
    background: linear-gradient(
        to top,
        rgba(1, 11, 24, 0.85) 0%,
        rgba(1, 11, 24, 0.6) 40%,
        rgba(1, 11, 24, 0.3) 70%,
        rgba(1, 11, 24, 0.1) 100%
    );
}

/* Glow Effect on Hover */
.news-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: linear-gradient(
        135deg,
        rgba(31, 144, 255, 0.2) 0%,
        transparent 50%,
        rgba(144, 238, 144, 0.2) 100%
    );
    transition: opacity 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.news-card-2026:hover .news-glow-effect {
    opacity: 1;
}

/* Hover Effects */
.news-card-2026:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 0 2px rgba(31, 144, 255, 0.5),
        0 20px 60px rgba(31, 144, 255, 0.4),
        inset 0 0 100px rgba(31, 144, 255, 0.1);
}

.news-card-2026::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 105%;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

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

/* Content */
.news-content-2026 {
    position: relative;
    padding: 30px;
    width: 100%;
    z-index: 3;
}

.featured-card .news-content-2026 {
    padding: 40px;
}

/* Meta Information */
.news-meta-2026 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* Category Badge with Colors */
.news-category-2026 {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    font-size: 0.525rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-category-2026::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.4s ease;
}

.news-card-2026:hover .news-category-2026::before {
    left: 100%;
}

/* Category Color Schemes */
.category-blue {
    color: #1F90FF;
    background: rgba(31, 144, 255, 0.15);
    border-color: #1F90FF;
    box-shadow: 0 0 20px rgba(31, 144, 255, 0.3);
}

.news-card-2026:hover .category-blue {
    background: rgba(31, 144, 255, 0.3);
    box-shadow: 0 0 30px rgba(31, 144, 255, 0.6);
    text-shadow: 0 0 10px rgba(31, 144, 255, 1);
}

.category-gold {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.15);
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.news-card-2026:hover .category-gold {
    background: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    text-shadow: 0 0 10px rgba(255, 215, 0, 1);
}

.category-green {
    color: #90EE90;
    background: rgba(144, 238, 144, 0.15);
    border-color: #90EE90;
    box-shadow: 0 0 20px rgba(144, 238, 144, 0.3);
}

.news-card-2026:hover .category-green {
    background: rgba(144, 238, 144, 0.3);
    box-shadow: 0 0 30px rgba(144, 238, 144, 0.6);
    text-shadow: 0 0 10px rgba(144, 238, 144, 1);
}

.category-cyan {
    color: #00CED1;
    background: rgba(0, 206, 209, 0.15);
    border-color: #00CED1;
    box-shadow: 0 0 20px rgba(0, 206, 209, 0.3);
}

.news-card-2026:hover .category-cyan {
    background: rgba(0, 206, 209, 0.3);
    box-shadow: 0 0 30px rgba(0, 206, 209, 0.6);
    text-shadow: 0 0 10px rgba(0, 206, 209, 1);
}

.category-red {
    color: #FF6B6B;
    background: rgba(255, 107, 107, 0.15);
    border-color: #FF6B6B;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

.news-card-2026:hover .category-red {
    background: rgba(255, 107, 107, 0.3);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.6);
    text-shadow: 0 0 10px rgba(255, 107, 107, 1);
}

.category-default {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Date */
.news-date-2026 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.6125rem;
    font-weight: 500;
}

.news-date-2026 svg {
    width: 14px;
    height: 14px;
    opacity: 0.8;
}

/* Title */
.news-title-item-2026 {
    font-size: clamp(0.96rem, 1.75vw, 1.31rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.featured-card .news-title-item-2026 {
    font-size: clamp(1.4rem, 2.8vw, 2.45rem);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.news-title-item-2026 a {
    color: inherit;
    text-decoration: none;
}

.news-card-2026:hover .news-title-item-2026 {
    text-shadow: 
        0 0 20px rgba(31, 144, 255, 0.8),
        0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Excerpt */
.news-excerpt-2026 {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(0.7rem, 1.05vw, 0.88rem);
    line-height: 1.7;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 300;
}

/* Read More Button */
.news-read-more-2026 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1F90FF;
    font-weight: 800;
    font-size: 0.6125rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 24px;
    border: 2px solid rgba(31, 144, 255, 0.5);
    background: rgba(31, 144, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-read-more-2026::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(31, 144, 255, 0.3);
    transition: left 0.4s ease;
    z-index: -1;
}

.news-read-more-2026:hover::before {
    left: 0;
}

.news-read-more-2026:hover {
    gap: 14px;
    border-color: #1F90FF;
    box-shadow: 0 0 20px rgba(31, 144, 255, 0.6);
    text-shadow: 0 0 10px rgba(31, 144, 255, 0.8);
    transform: translateX(5px);
}

.news-read-more-2026 svg {
    transition: transform 0.3s ease;
}

.news-read-more-2026:hover svg {
    transform: translateX(5px);
}

/* No News Message */
.no-news-2026 {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.25rem;
    font-weight: 300;
}

/* Footer Button */
.news-footer-2026 {
    display: none;
}

.btn-view-all-2026 {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 50px;
    background: transparent;
    color: #1F90FF;
    font-weight: 900;
    font-size: 1.125rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid #1F90FF;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-view-all-2026::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(31, 144, 255, 0.2);
    transition: width 0.6s ease, height 0.6s ease;
    border-radius: 0;
}

.btn-view-all-2026:hover::before {
    width: 500px;
    height: 500px;
}

.btn-view-all-2026:hover {
    background: rgba(31, 144, 255, 0.15);
    border-color: #1F90FF;
    box-shadow: 
        0 0 40px rgba(31, 144, 255, 0.6),
        inset 0 0 40px rgba(31, 144, 255, 0.2);
    transform: translateY(-3px);
    text-shadow: 0 0 15px rgba(31, 144, 255, 0.8);
}

.btn-view-all-2026 span {
    position: relative;
    z-index: 1;
}

.btn-view-all-2026 svg {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-view-all-2026:hover svg {
    transform: translateX(8px);
}

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

/* Large Tablets and Small Desktops */
@media (max-width: 1199px) {
    .news-section-2026 {
        padding: 50px 0 35px;
    }
    
    .featured-card {
        min-height: 420px;
    }
    
    .secondary-card {
        min-height: 280px;
    }
    
    .featured-card .news-content-2026 {
        padding: 35px;
    }
    
    .news-content-2026 {
        padding: 28px;
    }
}

/* Tablets */
@media (max-width: 991px) {
    .news-section-2026 {
        padding: 45px 0 30px;
    }
    
    .news-header-2026 {
        margin-bottom: 40px;
    }
    
    .news-grid-2026 {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    
    .featured-card {
        min-height: 380px;
    }
    
    .secondary-card {
        min-height: 260px;
    }
    
    .featured-card .news-content-2026 {
        padding: 32px;
    }
    
    .news-content-2026 {
        padding: 24px;
    }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 767px) {
    .news-section-2026 {
        padding: 40px 0 25px;
    }
    
    .news-header-2026 {
        margin-bottom: 35px;
    }
    
    .featured-card {
        min-height: 350px;
    }
    
    .secondary-card {
        min-height: 240px;
    }
    
    .featured-card .news-content-2026 {
        padding: 24px;
    }
    
    .news-content-2026 {
        padding: 20px;
    }
    
    .news-excerpt-2026 {
        -webkit-line-clamp: 1;
        margin-bottom: 16px;
    }
    
    .btn-view-all-2026 {
        padding: 14px 36px;
        font-size: 1rem;
    }
}

/* Mobile Portrait */
@media (max-width: 575px) {
    .news-section-2026 {
        padding: 35px 0 20px;
    }
    
    .news-header-2026 {
        margin-bottom: 30px;
    }
    
    .featured-card {
        min-height: 320px;
    }
    
    .secondary-card {
        min-height: 220px;
    }
    
    .featured-card .news-content-2026 {
        padding: 20px;
    }
    
    .news-content-2026 {
        padding: 18px;
    }
    
    .news-category-2026 {
        padding: 6px 14px;
        font-size: 0.65rem;
    }
    
    .news-excerpt-2026 {
        display: none;
    }
    
    .news-read-more-2026 {
        padding: 10px 18px;
        font-size: 0.75rem;
    }
    
    .btn-view-all-2026 {
        padding: 12px 28px;
        font-size: 0.875rem;
    }
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background: var(--dark);
    color: var(--light-800);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.3));
    transition: transform var(--transition-base);
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-text {
    font-size: 0.95rem;
    color: var(--light-800);
}

/* ========================================
   АДАПТИВНОСТЬ - НОВАЯ ВЕРСИЯ
======================================== */

/* Большие экраны - 1400px+ */
@media (min-width: 1400px) {
    .matches-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 2000px;
        gap: 40px;
    }
    
    .match-card.live {
        grid-column: span 2;
    }
}

/* Стандартные экраны - 1024px to 1399px */
@media (min-width: 1024px) and (max-width: 1399px) {
    .matches-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .match-card.live {
        grid-column: span 2;
    }
}

/* Планшеты - 768px to 1023px */
@media (max-width: 1023px) {
    .matches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 20px;
    }
    
    .match-card.live {
        grid-column: span 2;
    }
    
    .match-card {
        padding: 20px;
    }
    
    .team-name {
        font-size: 0.85rem;
        max-width: 120px;
    }
    
    .score-number {
        font-size: 2.4rem !important;
    }
}

/* Мобильные устройства - до 767px */
@media (max-width: 767px) {
    .matches-section {
        padding: 60px 0;
    }
    
    .matches-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .matches-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .match-card.live {
        grid-column: span 1;
    }
    
    .match-card {
        padding: 18px;
    }
    
    /* Первая карточка - вертикальная */
    .match-card:first-child .teams-wrapper {
        flex-direction: column;
        gap: 16px;
    }
    
    .match-card:first-child .team {
        width: 100%;
        align-items: center !important;
    }
    
    .match-card:first-child .team.home,
    .match-card:first-child .team.away {
        align-items: center !important;
    }
    
    .match-card:first-child .team-name {
        text-align: center !important;
        max-width: 100%;
    }
    
    .match-card:first-child .match-score {
        order: -1;
    }
    
    /* Остальные карточки - горизонтальные компактные */
    .match-card:not(:first-child) .teams-wrapper {
        gap: 12px;
    }
    
    .match-card:not(:first-child) .team {
        align-items: center !important;
    }
    
    .match-card:not(:first-child) .team.home,
    .match-card:not(:first-child) .team.away {
        align-items: center !important;
    }
    
    .match-card:not(:first-child) .team-name {
        font-size: 0.75rem;
        max-width: 90px;
        text-align: center !important;
    }
    
    .match-card:not(:first-child) .team-logo {
        width: 44px;
        height: 44px;
        padding: 10px;
    }
    
    .match-card:not(:first-child) .match-score {
        min-width: auto;
    }
    
    .match-card:not(:first-child) .score-number {
        font-size: 1.8rem !important;
    }
    
    .match-card:not(:first-child) .match-time {
        font-size: 1.3rem;
    }
    
    .team-name {
        font-size: 0.8rem;
        max-width: 100px;
    }
    
    .match-card:first-child .team-name {
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    .score-number {
        font-size: 2.2rem !important;
    }
    
    .match-card:first-child .score-number {
        font-size: 2.8rem !important;
    }
    
    .team-logo {
        width: 48px;
        height: 48px;
        padding: 10px;
    }
    
    .match-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .match-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.85rem;
    }
    
    .tournament-name {
        font-size: 0.7rem;
    }
    
    .match-date {
        font-size: 0.65rem;
    }
    
    .match-tournament {
        padding: 8px 12px;
        margin-bottom: 16px;
    }
}

/* Очень маленькие экраны - до 375px */
@media (max-width: 375px) {
    .matches-grid {
        padding: 0 12px;
    }
    
    .match-card {
        padding: 14px;
    }
    
    .match-card:not(:first-child) .team-name {
        font-size: 0.7rem;
        max-width: 75px;
    }
    
    .match-card:not(:first-child) .team-logo {
        width: 38px;
        height: 38px;
        padding: 8px;
    }
    
    .match-card:not(:first-child) .score-number {
        font-size: 1.5rem !important;
    }
}

/* ========================================
   HERO SECTION - АДАПТИВНОСТЬ
======================================== */
@media (max-width: 768px) {
    .header-content {
        padding: 0.75rem 0;
    }
    
    .site-logo img {
        height: 40px;
    }
    
    .btn-ticket {
        padding: 10px 24px;
        font-size: 12px;
    }
    
    .hero-content {
        padding: 120px 0 40px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .site-logo img {
        height: 35px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 6px 16px;
    }
}

/* ========================================
   ANIMATIONS & EFFECTS
======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth Page Transitions */
.page-enter {
    animation: fadeIn 0.5s ease-out;
}

/* Loading Animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   TOP MATCHES & HIGHLIGHTS SECTION
======================================== */
.matches-highlights-section {
    position: relative;
    padding: 60px 0;
    background: 
        linear-gradient(180deg, #010B18 0%, #021F3D 50%, #010B18 100%);
    overflow: hidden;
}

/* Stadium background texture */
.matches-highlights-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /%3E%3C/filter%3E%3Crect width="100" height="100" filter="url(%23noise)" opacity="0.05" /%3E%3C/svg%3E');
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

/* Vignette effect */
.matches-highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(1, 11, 24, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

.matches-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.matches-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 224, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 224, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.6;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.matches-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Header */
.matches-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.matches-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 0 30px rgba(0, 224, 255, 0.8);
    position: relative;
    padding-bottom: 12px;
}

.matches-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #00e0ff 50%, transparent 100%);
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.8);
}

.matches-title .title-icon {
    stroke-width: 2.5;
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
}

.matches-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-weight: 400;
}

.title-glow-line {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; box-shadow: 0 0 20px rgba(0, 212, 255, 0.4); }
    50% { opacity: 1; box-shadow: 0 0 30px rgba(0, 212, 255, 0.8); }
}

/* Matches Grid */
.matches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    align-items: stretch;
    justify-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Match Card */
.match-card {
    position: relative;
    min-height: 617px;
    height: 617px;
    width: 100%;
    max-width: 450px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(15, 30, 50, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

/* Bottom glow effect */
.match-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 180, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

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

.match-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(2px) brightness(0.6);
}

.match-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.8) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
    transition: all var(--transition-base);
}

.match-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.2) 0%, transparent 60%);
    transition: opacity var(--transition-base);
}

.match-card:hover .match-background {
    transform: scale(1.05);
    filter: blur(3px) brightness(0.7);
}

.match-card:hover .match-glow-effect {
    opacity: 1;
}

.match-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 0 30px rgba(0, 224, 255, 0.7),
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(0, 224, 255, 0.6);
    border-color: rgba(0, 224, 255, 0.5);
    background: rgba(20, 40, 65, 0.6);
}

/* Match Content */
.match-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px 35px;
    z-index: 2;
    gap: 20px;
}

.match-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 0;
    flex-shrink: 0;
    width: 100%;
}

.match-tournament {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(0, 191, 255, 0.2);
    color: #00bfff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 191, 255, 0.4);
    box-shadow: 0 0 10px currentColor;
    text-shadow: 0 0 10px currentColor;
    transition: all 0.3s ease;
}

.match-card:hover .match-tournament {
    background: rgba(0, 191, 255, 0.3);
    box-shadow: 0 0 20px currentColor;
    border-color: rgba(0, 191, 255, 0.6);
}

.match-tournament.tournament-gold {
    background: rgba(138, 43, 226, 0.2);
    color: #ba86ff;
    border-color: rgba(138, 43, 226, 0.4);
}

.match-tournament.tournament-green {
    background: rgba(0, 255, 127, 0.2);
    color: #00ff7f;
    border-color: rgba(0, 255, 127, 0.4);
}

.match-date {
    display: none;
}

/* Match Teams & Score */
.match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    padding: 0;
    flex-shrink: 0;
    width: 100%;
}

/* Team Logo */
.team-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.team-logo svg {
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.match-card:hover .team-logo {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 224, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.3);
}

.match-card:hover .team-logo svg {
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.team-logo-highlight {
    background: rgba(0, 224, 255, 0.1);
    border-color: rgba(0, 224, 255, 0.4);
}

.team-logo-highlight svg {
    color: #00e0ff;
}

.match-card:hover .team-logo-highlight {
    background: rgba(0, 224, 255, 0.2);
    border-color: rgba(0, 224, 255, 0.6);
    box-shadow: 0 0 25px rgba(0, 224, 255, 0.6);
}

.match-card:hover .team-logo-highlight svg {
    color: #00e0ff;
    filter: drop-shadow(0 0 12px rgba(0, 224, 255, 0.8));
}

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

.score-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #00e0ff;
    text-shadow: 
        0 0 30px rgba(0, 224, 255, 1),
        0 0 60px rgba(0, 224, 255, 0.8),
        0 0 80px rgba(0, 224, 255, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.9);
    font-family: 'Courier New', monospace;
}

.score-separator {
    font-size: 2.2rem;
    font-weight: 900;
    color: #00e0ff;
    text-shadow: 
        0 0 30px rgba(0, 224, 255, 1),
        0 0 60px rgba(0, 224, 255, 0.8),
        0 0 80px rgba(0, 224, 255, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.9);
    font-family: 'Courier New', monospace;
}

.match-card:hover .score-number,
.match-card:hover .score-separator {
    text-shadow: 
        0 0 45px rgba(0, 224, 255, 1),
        0 0 80px rgba(0, 224, 255, 0.9),
        0 0 120px rgba(0, 224, 255, 0.6),
        0 4px 15px rgba(0, 0, 0, 0.9);
    animation: scorePulse 1.5s ease-in-out;
}

@keyframes scorePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Match Description */
.match-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
    opacity: 0.8;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    flex-shrink: 0;
    margin: 20px 0;
}

.match-card:hover .match-description {
    opacity: 1;
    color: rgba(255, 255, 255, 0.95);
}

/* Match Button */
.match-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 15px rgba(0, 191, 255, 0.6),
        0 4px 20px rgba(0, 224, 255, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 224, 255, 0.3);
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
    backdrop-filter: blur(10px);
    min-width: 180px;
    white-space: nowrap;
    flex-shrink: 0;
}

.match-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.match-button:hover::before {
    width: 300px;
    height: 300px;
}

.match-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 25px rgba(0, 224, 255, 0.8),
        0 8px 35px rgba(0, 224, 255, 0.7),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 224, 255, 0.6);
}

.match-button svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.match-button:hover svg {
    transform: translateX(5px) scale(1.15);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.match-button span {
    position: relative;
    z-index: 1;
}

.match-extra {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    text-align: center;
    font-weight: 500;
    flex-shrink: 0;
    height: 20px;
}

/* Featured Match - identical to all cards */
.featured-match {
    /* No special styles - same as .match-card */
}

/* Footer Button */
.matches-footer {
    text-align: center;
    position: relative;
    z-index: 2;
}

.matches-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: rgba(15, 30, 50, 0.5);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 224, 255, 0.3);
    color: #00e0ff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 20px rgba(0, 224, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.matches-view-all:hover {
    background: rgba(0, 224, 255, 0.15);
    border-color: #00e0ff;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 35px rgba(0, 224, 255, 0.5),
        0 0 50px rgba(0, 224, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 15px rgba(0, 224, 255, 0.8);
}

.matches-view-all svg {
    stroke-width: 2.5;
    transition: transform var(--transition-fast);
}

.matches-view-all:hover svg {
    transform: translateX(5px);
}

/* ========================================
   RESPONSIVE - MATCHES SECTION
======================================== */

/* Tablet Large - 1400px */
@media (max-width: 1400px) {
    .matches-grid {
        grid-template-columns: repeat(3, minmax(380px, 1fr));
        gap: 2rem;
    }
    
    .match-content {
        padding: 28px 32px;
        gap: 18px;
    }
    
    .match-teams {
        gap: 18px;
        margin: 25px 0;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .matches-grid {
        grid-template-columns: repeat(2, minmax(350px, 1fr));
        gap: 2rem;
    }
    
    .featured-match {
        grid-column: 1 / -1;
    }
    
    .match-content {
        padding: 26px 30px;
        gap: 16px;
    }
    
    .match-teams {
        gap: 16px;
        margin: 22px 0;
    }
    
    .team-logo {
        width: 58px;
        height: 58px;
    }
    
    .team-logo svg {
        width: 35px;
        height: 35px;
    }
}

/* Mobile Large - 768px */
@media (max-width: 768px) {
    .matches-highlights-section {
        padding: 45px 0;
    }
    
    .matches-header {
        margin-bottom: 40px;
    }
    
    .matches-title {
        font-size: 2rem;
    }
    
    .matches-subtitle {
        font-size: 1rem;
    }
    
    .matches-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .matches-grid::-webkit-scrollbar {
        display: none;
    }
    
    .match-card {
        min-height: 480px;
        scroll-snap-align: center;
    }
    
    .match-content {
        padding: 24px 20px;
        gap: 14px;
    }
    
    .match-meta {
        gap: 12px;
    }
    
    .match-tournament {
        padding: 5px 14px;
        font-size: 0.65rem;
    }
    
    .match-teams {
        gap: 15px;
        margin: 20px 0;
    }
    
    .team-logo {
        width: 55px;
        height: 55px;
    }
    
    .team-logo svg {
        width: 33px;
        height: 33px;
    }
    
    .score-number,
    .score-separator {
        font-size: 1.9rem;
    }
    
    .match-description {
        font-size: 0.8rem;
        margin: 16px 0;
        padding: 0 8px;
    }
    
    .match-button {
        padding: 11px 26px;
        font-size: 0.85rem;
        min-width: 165px;
    }
    
    .match-button svg {
        width: 12px;
        height: 12px;
    }
    
    .match-extra {
        font-size: 0.65rem;
    }
    
    .matches-view-all {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

/* Mobile Medium - 480px */
@media (max-width: 480px) {
    .matches-highlights-section {
        padding: 40px 0;
    }
    
    .matches-header {
        margin-bottom: 35px;
    }
    
    .matches-title {
        font-size: 1.75rem;
        gap: 8px;
    }
    
    .matches-title .title-icon {
        width: 24px;
        height: 24px;
    }
    
    .matches-subtitle {
        font-size: 0.95rem;
    }
    
    .match-card {
        min-height: 450px;
    }
    
    .match-content {
        padding: 20px 16px;
        gap: 12px;
    }
    
    .match-meta {
        gap: 10px;
    }
    
    .match-tournament {
        padding: 4px 12px;
        font-size: 0.6rem;
    }
    
    .match-teams {
        gap: 12px;
        margin: 18px 0;
    }
    
    .team-logo {
        width: 50px;
        height: 50px;
    }
    
    .team-logo svg {
        width: 30px;
        height: 30px;
    }
    
    .score-number,
    .score-separator {
        font-size: 1.7rem;
    }
    
    .match-description {
        font-size: 0.75rem;
        margin: 14px 0;
        padding: 0 6px;
    }
    
    .match-button {
        padding: 10px 22px;
        font-size: 0.8rem;
        min-width: 155px;
    }
    
    .match-button svg {
        width: 11px;
        height: 11px;
    }
    
    .match-extra {
        font-size: 0.6rem;
    }
    
    .matches-view-all {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

/* Mobile Small - 375px */
@media (max-width: 375px) {
    .match-card {
        min-height: 420px;
    }
    
    .match-content {
        padding: 18px 14px;
        gap: 10px;
    }
    
    .match-teams {
        gap: 10px;
        margin: 16px 0;
    }
    
    .team-logo {
        width: 46px;
        height: 46px;
    }
    
    .team-logo svg {
        width: 28px;
        height: 28px;
    }
    
    .score-number,
    .score-separator {
        font-size: 1.5rem;
    }
    
    .match-description {
        font-size: 0.7rem;
        margin: 12px 0;
    }
    
    .match-button {
        padding: 9px 20px;
        font-size: 0.75rem;
        min-width: 145px;
    }
    
    .match-tournament {
        padding: 3px 10px;
        font-size: 0.55rem;
    }
}

/* ========================================
   FOOTER STYLES
======================================== */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, #0a0e27 0%, #050812 100%);
    padding: 80px 0 30px;
    overflow: hidden;
    border-top: 1px solid rgba(0, 212, 255, 0.15);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

/* Footer Logo Section */
.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo a {
    display: inline-block;
    transition: transform var(--transition-base);
}

.footer-logo a:hover {
    transform: translateY(-4px);
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 212, 255, 0.3));
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 360px;
}

/* Footer Links */
.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    padding: 4px 0;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-links a:hover::before {
    width: 100%;
}

/* Footer Social */
.footer-social {
    display: flex;
    flex-direction: column;
}

.footer-social h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    color: var(--accent);
    text-decoration: none;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: var(--accent);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }
    
    .footer-logo {
        text-align: center;
        align-items: center;
    }
    
    .footer-tagline {
        text-align: center;
        max-width: 100%;
    }
    
    .footer-section {
        text-align: center;
        align-items: center;
    }
    
    .footer-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        width: 100%;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

