/* Cricket Tournament Website - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@400;500;600;700&display=swap');

:root {
    /* Deep Blues - Headers, Dark Accents */
    --deep-blue-1: #011f4b;
    --deep-blue-2: #03396c;
    --deep-blue-3: #005b96;
    
    /* Primary Blues - Main Elements */
    --american-blue: #072F5F;
    --matisse-blue: #1261A0;
    --rich-light-blue: #3895D3;
    --miami-blue: #58CCED;
    
    /* Cool Blues - Backgrounds, Hover States */
    --serenity-blue: #B3CEE5;
    --blue-gray: #6699CC;
    --chambray-blue: #475877;
    --royal-blue: #4169E1;
    
    /* Color Assignments */
    --primary-color: #1261A0;
    --primary-dark: #011f4b;
    --primary-light: #3895D3;
    --secondary-color: #4169E1;
    --accent-color: #dc3545;
    --primary-blue: #1261A0;
    --dark-blue: #011f4b;
    --light-blue: #3895D3;
    --blue-accent: #4169E1;
    --blue-light: #B3CEE5;
    --blue-bg: #e8f2f8;
    --text-dark: #212529;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-blue: 0 3px 15px rgba(18, 97, 160, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: transparent;
}

/* Header & Navigation */
header.main-header.scrolled.sticky .mobile-menu-toggle span {
    background: #000;
}

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.sticky {
    position: fixed;
}

.main-header::before,
.main-header::after {
    display: none !important;
    content: none !important;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header-background {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent !important;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}

.main-header.scrolled .header-background {
    display: block;
    opacity: 1;
    visibility: visible;
    background: rgba(255, 255, 255, 0.95);
}

.navbar {
    padding: 0.2rem 0;
    position: relative;
    z-index: 1;
    background: transparent !important;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background: transparent;
}

/* Logo Section */
.logo-section {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.header-logo-img {
    height: 150px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
    /* filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5)) 
            drop-shadow(0 0 10px rgba(255, 255, 255, 0.2)); */
}

.logo-link:hover .header-logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0 auto;
    padding: 0;
}

.nav-menu a {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.main-header.scrolled .nav-menu a {
    color: var(--text-dark);
    text-shadow: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bg-white);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--bg-white);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.6), 0 2px 6px rgba(0, 0, 0, 0.4);
}

.nav-register-mobile {
    display: none;
}

.main-header.scrolled .nav-menu a:hover,
.main-header.scrolled .nav-menu a.active {
    color: var(--primary-color);
    text-shadow: none;
}

.main-header.scrolled .nav-menu a::after {
    background: var(--primary-color);
}

.admin-link {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem !important;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-link::after {
    display: none;
}

/* Header Actions (Utility & Social Icons) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    background: transparent;
}

.utility-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-link {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.icon-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.main-header.scrolled .icon-link {
    color: var(--text-dark);
    text-shadow: none;
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.main-header.scrolled .icon-link:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.icon-link i {
    font-size: 1rem;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--matisse-blue);
    color: var(--bg-white);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 0, 0, 0.8);
}

.cart-badge.coming-soon {
    width: auto;
    min-width: 32px;
    height: 18px;
    padding: 0 6px;
    border-radius: 9px;
    font-size: 0.6rem;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--bg-white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

header.main-header.scrolled.sticky {
    background: #fff !important;
}

.main-header.scrolled .social-link {
    color: var(--text-dark);
    text-shadow: none;
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.main-header.scrolled .social-link:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 0.9rem;
}

/* Search Bar */
.search-bar {
    display: none;
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.search-bar.active {
    display: block;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--bg-white);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-submit,
.search-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--bg-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit:hover,
.search-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--bg-white);
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Countdown Banner Section */
.countdown-banner {
    position: relative;
    color: var(--bg-white);
    padding: 120px 0;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
    z-index: 0;
    margin-top: 0;
    isolation: isolate;
}

.banner-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.cricket-watermark {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    right: 0;
    font-size: 14rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.25);
    text-transform: lowercase;
    letter-spacing: 24px;
    line-height: 1;
    pointer-events: none;
    text-align: center;
    transform: translateY(35%);
    white-space: nowrap;
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
}

.countdown-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 50%, rgba(0, 0, 0, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0, 0, 0, 0.35) 0%, transparent 50%),
        linear-gradient(105deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.countdown-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0;
    margin-right: 30rem;
    padding: 0 24px;
    padding-top: 80px;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.countdown-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    animation: fadeInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.countdown-title {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.15;
    letter-spacing: 4px;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 255, 255, 0.1);
    text-align: left;
}

.countdown-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 550px;
}

.countdown-heading,
.countdown-opener-label {
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    display: inline-block;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 32px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.countdown-item {
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.15);
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
    transition: all 0.2s ease;
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    display: block;
    letter-spacing: 2px;
}

.countdown-label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.countdown-separator {
    font-size: 2.6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
    margin: 0 2px;
    line-height: 1;
    animation: pulse 2s ease-in-out infinite;
    font-family: 'Outfit', 'Segoe UI', sans-serif;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.btn-register {
    font-size: 1rem;
    padding: 14px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(18, 97, 160, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-register::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;
}

.btn-register:hover::before {
    width: 300px;
    height: 300px;
}

.btn-register:hover {
    box-shadow: 0 6px 25px rgba(18, 97, 160, 0.6);
    transform: translateY(-3px) scale(1.02);
}

.btn-register:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 3px 15px rgba(18, 97, 160, 0.5);
}

.btn-register:focus {
    outline: 3px solid rgba(18, 97, 160, 0.5);
    outline-offset: 2px;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section (for backward compatibility) */
.hero-section {
    background: linear-gradient(135deg, rgba(30, 126, 52, 0.9) 0%, rgba(21, 87, 36, 0.9) 100%),
                url('../images/cricket-bg.jpg') center/cover;
    color: var(--bg-white);
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4), 0 0 20px rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    color: var(--bg-white);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--rich-light-blue) 0%, var(--miami-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(18, 97, 160, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.btn-small {
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    color: var(--bg-white);
    border: none;
    box-shadow: 0 6px 20px rgba(18, 97, 160, 0.4), 0 2px 8px rgba(18, 97, 160, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transform: translateY(-1px);
}

.btn-small::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-small:hover::before {
    width: 300px;
    height: 300px;
}

.btn-small:hover {
    background: linear-gradient(135deg, var(--rich-light-blue) 0%, var(--miami-blue) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(18, 97, 160, 0.5), 0 4px 12px rgba(18, 97, 160, 0.3);
    color: var(--bg-white);
}

.btn-small:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(18, 97, 160, 0.4);
}

.btn-add-player {
    background: var(--primary-light);
    color: var(--bg-white);
    margin-top: 10px;
}

/* Sections */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h1,
.section-header h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.section-header h1::after,
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-header h1 strong,
.section-header h2 strong {
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Flip Boxes Section */
.flip-boxes-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f7fc 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.flip-boxes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(18, 97, 160, 0.03) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(56, 149, 211, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.flip-boxes-section .container {
    position: relative;
    z-index: 1;
}

.flip-boxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Desktop: 3 columns with centered 4th box */
@media (min-width: 1025px) {
    .flip-boxes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .flip-box:nth-child(4) {
        grid-column: 2;
        max-width: 100%;
    }
}

.flip-box {
    background-color: transparent;
    perspective: 1000px;
    height: 300px;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.flip-box-front {
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    color: var(--bg-white);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.flip-box-back {
    background: linear-gradient(135deg, var(--deep-blue-2) 0%, var(--matisse-blue) 100%);
    color: var(--bg-white);
    transform: rotateY(180deg);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.flip-box-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--bg-white);
    opacity: 0.95;
    transition: all 0.3s ease;
}

.flip-box:hover .flip-box-icon {
    transform: scale(1.1);
    opacity: 1;
}

.flip-box-front h3,
.flip-box-back h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--bg-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.flip-box-front p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin: 0;
}

.flip-box-back p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Flip Box with Outer & Inner Border Variant */
.flip-box.bordered .flip-box-front,
.flip-box.bordered .flip-box-back {
    border: 4px solid var(--bg-white);
    box-shadow: 
        inset 0 0 0 2px rgba(255, 255, 255, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Tablet: 2 columns with centered 4th box */
@media (min-width: 769px) and (max-width: 1024px) {
    .flip-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flip-box:nth-child(4) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 280px;
    }
}

/* Mobile: Single column */
@media (max-width: 768px) {
    .flip-boxes-section {
        padding: 80px 0;
    }
    
    .btn.btn-primary.btn-register {
    display: none;
}
    
    .flip-boxes-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .flip-box:nth-child(4) {
        grid-column: 1;
        max-width: 100%;
    }
    
    .flip-box:nth-child(4) {
        grid-column: 1;
        max-width: 100%;
    }
    
    .flip-box {
        height: 280px;
    }
    
    .flip-box-icon {
        font-size: 3.5rem;
        margin-bottom: 15px;
    }
    
    .flip-box-front h3,
    .flip-box-back h3 {
        font-size: 1.5rem;
    }
    
    .flip-box-front p {
        font-size: 1rem;
    }
    
    .flip-box-back p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .flip-boxes-section {
        padding: 60px 0;
    }
    
    .flip-box {
        height: 260px;
    }
    
    .flip-box-front,
    .flip-box-back {
        padding: 30px 20px;
    }
    
    .flip-box-icon {
        font-size: 3rem;
        margin-bottom: 12px;
    }
    
    .flip-box-front h3,
    .flip-box-back h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
}

/* Registration Form */
.registration-section {
    background: var(--bg-white);
}

.registration-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: var(--accent-color);
    font-weight: 700;
    margin-left: 2px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-light);
}

.form-row-captains {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
    font-size: 0.9rem;
}

.player-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.player-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.player-row input[type="text"],
.player-row select {
    flex: 1;
}

.player-image-input {
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.9rem;
    background: var(--bg-white);
    cursor: pointer;
    transition: border-color 0.3s;
}

.player-image-input:hover {
    border-color: var(--matisse-blue);
}

.player-image-input:focus {
    outline: none;
    border-color: var(--matisse-blue);
    box-shadow: 0 0 0 3px rgba(18, 97, 160, 0.1);
}

.player-image-hint {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: -5px;
}

.btn-remove-player {
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    padding: 12px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-remove-player:hover {
    background: #c82333;
}

.btn-submit {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    font-size: 1.1rem;
}

/* Our Players Section */
.our-players-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.our-players-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.our-players-section .container {
    position: relative;
    z-index: 1;
}

.players-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.players-section-header h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.players-section-header h2 strong {
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.players-slider-controls {
    display: flex;
    gap: 10px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.players-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.players-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.player-slide {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 0;
}

.player-card-slider {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.player-card-slider:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.player-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--deep-blue-2) 0%, var(--matisse-blue) 100%);
}

.player-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.player-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    position: relative;
}

.player-image-placeholder i {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
}

.player-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.player-card-slider:hover .player-image {
    transform: scale(1.1);
}

.player-info-card {
    padding: 25px 20px;
    background: var(--bg-white);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.player-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--deep-blue-1);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.player-role {
    font-size: 1rem;
    color: var(--matisse-blue);
    font-weight: 600;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.player-team {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-team i {
    color: var(--matisse-blue);
    font-size: 0.85rem;
}

.players-view-all {
    text-align: center;
    margin-top: 30px;
}

.players-view-all .btn {
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.players-view-all .btn i {
    transition: transform 0.3s ease;
}

.players-view-all .btn:hover i {
    transform: translateX(5px);
}

.no-players-message {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Our Gallery Section */
.our-gallery-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f5f5f5 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.our-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(18, 97, 160, 0.05) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(56, 149, 211, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.our-gallery-section .container {
    position: relative;
    z-index: 1;
}

.gallery-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-section-header h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    padding-bottom: 15px;
}

.gallery-section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.gallery-section-header h2 strong {
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-slider-controls {
    display: flex;
    gap: 10px;
}

.gallery-slider-controls .slider-btn {
    background: rgba(18, 97, 160, 0.1);
    border: 2px solid rgba(18, 97, 160, 0.3);
    color: var(--matisse-blue);
    backdrop-filter: blur(10px);
}

.gallery-slider-controls .slider-btn:hover {
    background: rgba(18, 97, 160, 0.2);
    border-color: rgba(18, 97, 160, 0.5);
    box-shadow: 0 4px 15px rgba(18, 97, 160, 0.3);
}

.gallery-slider-controls .slider-btn:disabled {
    opacity: 0.4;
    background: rgba(18, 97, 160, 0.05);
    border-color: rgba(18, 97, 160, 0.15);
}

.gallery-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 15px;
}

.gallery-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.gallery-slide {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--deep-blue-2) 0%, var(--matisse-blue) 100%);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    color: var(--bg-white);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-content p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Gallery Responsive Styles */
@media (max-width: 1024px) {
    .gallery-slide {
        flex: 0 0 calc(50% - 15px);
    }
    
    .gallery-image-wrapper {
        height: 300px;
    }
    
    .cricket-watermark {
        font-size: 10rem;
        letter-spacing: 15px;
    }
}

/* Modern Sections - Reference Design Styles */

/* Recent Matches Modern Section */
.recent-matches-modern-section {
    background: #1a1a1a;
    padding: 80px 0;
    position: relative;
}

.recent-matches-modern-header {
    margin-bottom: 60px;
}

.section-label-modern {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--matisse-blue);
    margin-bottom: 12px;
    padding: 6px 16px;
    border: 2px solid var(--matisse-blue);
    border-radius: 20px;
    background: transparent;
}

.section-title-modern {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -1px;
}

.matches-modern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.match-modern-card {
    background: #2a2a2a;
    border-radius: 25px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: 1px solid #7c7474;
}

.match-modern-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

/* CricHeroes Embed Section */
.cricheroes-embed-section {
    background: #1a1a1a;
    padding: 40px 0;
    position: relative;
}

.cricheroes-embed-header {
    text-align: center;
    margin-bottom: 40px;
}

.cricheroes-embed-header .section-label-modern {
    margin-bottom: 12px;
}

.cricheroes-embed-header .section-title-modern {
    margin-bottom: 12px;
}

.cricheroes-embed-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.5;
}

/* CricHeroes link card (iframe blocked by CricHeroes) */
.cricheroes-card {
    display: block;
    max-width: 560px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    /*box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08);*/
    /*background: #252525;*/
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin-top: 15px;
}

.cricheroes-card:hover {
    /*transform: translateY(-4px);*/
    /*box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--matisse-blue);*/
}

.cricheroes-card-inner {
    padding: 48px 40px;
    text-align: center;
}

.cricheroes-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: rgba(18, 97, 160, 0.2);
    color: var(--matisse-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.cricheroes-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.3;
}

.cricheroes-card-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0 0 24px;
    line-height: 1.5;
}

.cricheroes-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--matisse-blue);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    transition: background 0.2s ease;
}

.cricheroes-card:hover .cricheroes-card-btn {
    background: #0d4d80;
}

.cricheroes-card-btn i {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .cricheroes-embed-section {
        padding: 50px 0;
    }
    .cricheroes-card-inner {
        padding: 36px 24px;
    }
    .cricheroes-card-title {
        font-size: 1.2rem;
    }
}

/* Match Centre page */
.match-centre-section {
    background: #1a1a1a;
    padding: 40px 0 40px;
    position: relative;
}

.match-centre-header {
    text-align: center;
    margin-bottom: 40px;
}

.match-centre-header .section-label-modern {
    margin-bottom: 12px;
}

.match-centre-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
}

.match-centre-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.5;
}

.match-centre-iframe-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
    background: #252525;
}

.match-centre-iframe {
    display: block;
    width: 100%;
    min-height: 640px;
    height: 80vh;
    max-height: 900px;
    border: none;
    background: #1a1a1a;
}

.match-centre-fallback {
    padding: 16px 24px;
    text-align: center;
    background: #252525;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.match-centre-fallback-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--matisse-blue);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.match-centre-fallback-btn:hover {
    background: #0d4d80;
    color: #fff;
}

@media (max-width: 768px) {
    .match-centre-section {
        padding: 40px 0 60px;
    }
    .match-centre-title {
        font-size: 1.85rem;
    }
    .match-centre-iframe {
        min-height: 480px;
        height: 70vh;
    }
}

.match-info-top {
    text-align: center;
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
    /*padding-bottom: 20px;*/
}

.match-number {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0;
    text-align: center;
}

.match-venue {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.match-datetime {
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 400;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.team-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.team-section:last-child {
    flex-direction: row-reverse;
}

.team-vs-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.team-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vs-divider {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    padding: 0 10px;
    flex-shrink: 0;
}

.match-location {
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
}

/* Trending Articles Modern Section */
.trending-articles-modern-section {
    background: #1d1d1d;
    padding: 40px 0;
}

.trending-modern-header {
    margin-bottom: 40px;
}

.section-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.section-tag-modern {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--matisse-blue);
    margin-bottom: 12px;
    padding: 6px 16px;
    border: 2px solid var(--matisse-blue);
    border-radius: 20px;
    background: transparent;
}

/* League Champions Section (Champion & Runner Up) – Premium US-style */
.league-champions-section {
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 35%, #151515 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.league-champions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.league-champions-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
}

.league-champions-header .section-label-modern {
    margin-bottom: 14px;
    letter-spacing: 4px;
}

.league-champions-header .section-title-modern {
    font-size: clamp(1.85rem, 4vw, 2.25rem);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.league-champions-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    margin: 14px 0 0;
    font-weight: 400;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.league-champions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 920px;
    margin: 0 auto;
    align-items: stretch;
}

.league-champion-card--champion {
    animation: league-champion-enter 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

.league-champion-card--runnerup {
    animation: league-champion-enter 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes league-champion-enter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.league-champion-card {
    position: relative;
    background: linear-gradient(165deg, rgba(35, 35, 35, 0.95) 0%, rgba(28, 28, 28, 0.98) 100%);
    border-radius: 28px;
    padding: 44px 36px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.3s ease;
    overflow: hidden;
}

.league-champion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    opacity: 0.8;
}

.league-champion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.league-champion-card--champion {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.league-champion-card--champion:hover {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.5), 0 0 32px rgba(212, 175, 55, 0.12), 0 0 0 1px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.league-champion-card--runnerup {
    border-color: rgba(192, 192, 192, 0.12);
}

.league-champion-card--runnerup:hover {
    border-color: rgba(192, 192, 192, 0.28);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45), 0 0 24px rgba(192, 192, 192, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.league-champion-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.28) 0%, rgba(184, 134, 11, 0.22) 50%, rgba(212, 175, 55, 0.2) 100%);
    color: #f0d86a;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 12px 22px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.league-champion-badge i {
    font-size: 0.9rem;
    opacity: 0.95;
}

.league-champion-card:hover .league-champion-badge {
    transform: scale(1.02);
}

.league-champion-badge--runnerup {
    background: linear-gradient(135deg, rgba(230, 230, 230, 0.18) 0%, rgba(180, 180, 180, 0.14) 50%, rgba(200, 200, 200, 0.12) 100%);
    color: #e8e8e8;
    border-color: rgba(192, 192, 192, 0.35);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.league-champion-logo-wrap {
    width: 152px;
    height: 152px;
    margin: 0 auto 26px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(145deg, #1f1f1f 0%, #141414 100%);
    border: 3px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.league-champion-card:hover .league-champion-logo-wrap {
    transform: scale(1.05);
}

.league-champion-card--champion .league-champion-logo-wrap {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.league-champion-card--champion:hover .league-champion-logo-wrap {
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45), 0 0 28px rgba(212, 175, 55, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.league-champion-card--runnerup .league-champion-logo-wrap {
    border-color: rgba(192, 192, 192, 0.2);
}

.league-champion-card--runnerup:hover .league-champion-logo-wrap {
    border-color: rgba(192, 192, 192, 0.35);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), 0 0 16px rgba(192, 192, 192, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.league-champion-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.league-champion-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.25;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: color 0.2s ease;
}

.league-champion-card--champion .league-champion-name {
    color: #fff;
}

@media (max-width: 768px) {
    .league-champions-section {
        padding: 64px 0;
    }
    .league-champions-section::before {
        width: 100%;
        height: 200px;
    }
    .league-champions-header {
        margin-bottom: 40px;
    }
    .league-champions-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .league-champion-card {
        padding: 36px 28px 32px;
    }
    .league-champion-logo-wrap {
        width: 128px;
        height: 128px;
        margin-bottom: 22px;
    }
    .league-champion-name {
        font-size: 1.3rem;
    }
}

.trending-modern-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.trending-featured-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.trending-featured-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(18, 97, 160, 0.15);
}

.trending-featured-card:focus {
    outline: 2px solid var(--matisse-blue);
    outline-offset: 2px;
}

.featured-article-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.trending-featured-card:hover .featured-article-image img {
    transform: scale(1.05);
}

.article-category-modern {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgb(0 115 207 / 40%);
    color: var(--bg-white);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.article-date-modern {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgb(18 97 160);
    border-radius: 25px;
    color: var(--bg-white);
    z-index: 2;
}

.date-day-modern {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.date-month-modern {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
}

.featured-article-content {
    padding: 30px 28px 28px;
}

.trending-featured-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.trending-featured-card:hover h3 {
    color: var(--matisse-blue);
}

.trending-featured-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.article-meta-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.article-separator {
    color: var(--text-light);
}

.article-likes-modern,
.article-comments-modern {
    display: inline-block;
}

.trending-list-modern {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trending-item-modern {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.trending-item-modern:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.trending-item-modern:focus {
    outline: 2px solid var(--matisse-blue);
    outline-offset: 2px;
}

.trending-item-image {
    flex: 0 0 120px;
    height: 120px;
    overflow: hidden;
}

.trending-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.trending-item-modern:hover .trending-item-image img {
    transform: scale(1.1);
}

.trending-item-content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.article-meta-line {
    margin-bottom: 10px;
    font-size: 0.75rem;
}

.article-category-small-modern {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 0.5px;
}

.article-date-small-modern {
    font-size: 0.8rem;
    color: #999;
}

.article-category-small-modern::after {
    content: " • ";
    color: var(--text-light);
    margin: 0 5px;
    font-weight: 400;
}

.trending-item-modern h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.trending-item-modern:hover h4 {
    color: var(--matisse-blue);
}

/* League Table Modern Section */
.league-table-modern-section {
    background: #1a1a1a;
    padding: 60px 0;
}

.league-modern-header {
    margin-bottom: 30px;
}

.league-subtitle-modern {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 10px;
    display: none;
}

.league-table-modern-wrapper {
    background: var(--bg-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.league-table-modern {
    width: 100%;
    border-collapse: collapse;
}

.league-table-modern thead {
    background: #052176;
    color: var(--bg-white);
}

.league-table-modern th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.league-table-modern tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.league-table-modern tbody tr:hover {
    background: rgba(18, 97, 160, 0.05);
}

.league-table-modern td {
    padding: 16px 15px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.league-table-modern td:first-child {
    font-weight: 700;
    color: var(--matisse-blue);
    font-size: 1.1rem;
}

.league-table-modern td strong {
    color: var(--deep-blue-1);
    font-weight: 700;
}

.team-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-logo-table {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.team-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.no-data-modern {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}

.view-full-table-modern {
    display: block;
    text-align: center;
    padding: 20px;
    color: var(--matisse-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-top: 1px solid var(--border-color);
}

.view-full-table-modern:hover {
    color: var(--rich-light-blue);
    background: rgba(18, 97, 160, 0.05);
}

/* Statistics Modern Section */
.statistics-modern-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: 200px;
        background: #1434A4;
}

.statistics-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: none;
}

.statistics-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.statistics-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.statistics-modern-section .container {
    position: relative;
    z-index: 2;
}

.stats-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-modern-item {
    text-align: center;
}

.stat-number-modern {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--bg-white);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    font-family: 'Arial', sans-serif;
}

.stat-label-modern {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Video Section Modern */
.video-section-modern {
    position: relative;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.video-background-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.video-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.video-background-wrapper:hover .video-background-image {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: background 0.3s ease;
}

.video-background-wrapper:hover .video-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.video-play-button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.video-play-button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    outline: none;
    position: relative;
}

.video-play-button:hover {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 1);
}

.video-play-button::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 ease, height 0.6s ease;
    z-index: -1;
}

.video-play-button:hover::before {
    width: 150px;
    height: 150px;
}

.video-play-button:active {
    transform: scale(0.95);
}

.video-play-button i {
    font-size: 2rem;
    color: var(--matisse-blue);
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.video-play-button:hover i {
    transform: scale(1.2);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 10000;
    animation: slideUp 0.4s ease;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    z-index: 10001;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Main Team Modern Section */
.main-team-modern-section {
    background: #2a2a2a;
    padding: 60px 0;
}

.main-team-modern-header {
    margin-bottom: 60px;
    text-align: center;
}

.main-team-modern-header .section-label-modern {
    color: rgb(18 97 160);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0;
    display: block;
    width: 10%;
    align-items: center;
    margin: 0 auto;
}

.main-team-modern-header .section-title-modern {
    color: var(--bg-white);
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.main-team-slider-wrapper {
    position: relative;
}

.main-team-slider-container {
    overflow: hidden;
    margin-bottom: 30px;
}

.main-team-slider-track {
    display: flex;
    gap: 25px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: 10px;
    will-change: transform;
}

.main-team-player-modern-card {
    background: #333333;
    border-radius: 8px;
    padding: 0;
    text-align: center;
    position: relative;
    flex: 0 0 220px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.main-team-player-modern-card:hover {
    transform: translateY(-5px);
    background: #3a3a3a;
}

.player-image-wrapper-modern {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.player-jersey-number-modern {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bg-white);
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.player-photo-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    filter: brightness(0.9);
    display: block;
    position: relative;
    z-index: 1;
}

.main-team-player-modern-card:hover .player-photo-modern {
    transform: scale(1.05);
}

.player-name-modern {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-white);
    margin: 20px 0 8px 0;
    padding: 0 15px;
}

.player-role-modern {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0 15px;
    text-transform: capitalize;
}

.main-team-slider-indicator {
    width: 100%;
    height: 4px;
    background: rgb(18 97 160 / 33%);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.slider-progress-bar {
    height: 100%;
    background: #1261a0;
    width: 0%;
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: width;
}

.no-players-message-modern {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-size: 1.1rem;
    grid-column: 1 / -1;
}

/* Sponsors Modern Section */
.sponsors-modern-section {
    background: #1d1d1d;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.sponsors-modern-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(18, 97, 160, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(102, 153, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.sponsors-modern-section .container {
    position: relative;
    z-index: 1;
}

.sponsors-modern-header {
    text-align: center;
    margin-bottom: 60px;
}

.sponsors-modern-header .section-label-modern {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--matisse-blue);
    margin-bottom: 0;
    display: block;
    width: 10%;
    align-items: center;
    margin: 0 auto;
}

.sponsors-modern-header .section-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    line-height: 1.2;
}

.sponsors-modern-header .section-description-modern {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.sponsors-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.sponsors-slider-container {
    overflow: hidden;
    margin: 0 auto;
}

.sponsors-slider-track {
    display: flex;
    gap: 40px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.sponsor-item-modern {
    flex: 0 0 200px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sponsor-logo-wrapper {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    /*box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);*/
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

button#sponsorPrevBtn {
    margin-left: -64px;
}

.sponsor-slider-btn.sponsor-next-btn {
    margin-right: 75px;
}

.sponsor-logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(18, 97, 160, 0.05) 0%, rgba(102, 153, 204, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sponsor-logo-wrapper:hover::before {
    opacity: 1;
}

.sponsor-logo-wrapper:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(18, 97, 160, 0.2);
    border-color: rgba(18, 97, 160, 0.3);
}

.sponsor-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
}

.sponsor-logo-wrapper:hover .sponsor-logo-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.sponsors-slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.sponsor-slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(18, 97, 160, 0.2);
    color: var(--matisse-blue);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    pointer-events: all;
}

.sponsor-slider-btn:hover {
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    color: var(--bg-white);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(18, 97, 160, 0.3);
}

.sponsor-slider-btn:active {
    transform: scale(0.95);
}

.sponsor-slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.sponsor-prev-btn {
    left: 0;
}

.sponsor-next-btn {
    right: 0;
}

/* Latest News Modern Section */
.latest-news-modern-section {
    background: #1a1a1a;
    padding: 50px 0;
}

.latest-news-modern-header {
    margin-bottom: 30px;
}

.latest-news-slider-wrapper {
    position: relative;
}

.latest-news-slider-container {
    overflow: hidden;
    margin-bottom: 40px;
}

.latest-news-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding-bottom: 10px;
}

.latest-news-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.news-modern-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.news-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.news-modern-card:focus {
    outline: 2px solid var(--matisse-blue);
    outline-offset: 2px;
}

.news-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.news-modern-card:hover .news-image {
    transform: scale(1.1);
}

.news-content-wrapper {
    padding: 25px;
}

.news-category-modern {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.news-modern-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-modern-card:hover h3 {
    color: var(--matisse-blue);
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.news-date-modern {
    font-size: 0.85rem;
    color: var(--text-light);
}

.news-comments-modern {
    font-size: 0.85rem;
    color: var(--text-light);
}

.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: #1261a0;
    width: 12px;
    height: 12px;
}

.pagination-dot:hover {
    background: #999;
}

/* Responsive slider styles */
@media (max-width: 1024px) {
    .news-modern-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .latest-news-slider-track {
        gap: 20px;
    }
    
    .news-modern-card {
        flex: 0 0 calc(100% - 0px);
        min-width: 100%;
    }
    
    .latest-news-slider-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .latest-news-slider-track {
        scroll-snap-type: x mandatory;
    }
    
    .news-modern-card {
        scroll-snap-align: start;
    }
    
    .latest-news-slider-container::-webkit-scrollbar {
        height: 4px;
    }
    
    .latest-news-slider-container::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    
    .latest-news-slider-container::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 2px;
    }
}

/* Welcome CTA Modern Section */
.welcome-cta-modern-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.welcome-cta-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.welcome-cta-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.welcome-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.welcome-cta-modern-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.welcome-cta-modern-content {
    text-align: left;
    max-width: 600px;
    padding: 100px 0;
}

.welcome-cta-modern-content .section-label-modern {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
    width: 20%;
}

.welcome-cta-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--bg-white);
    margin: 0 0 40px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.btn-cta-modern {
    font-size: 1rem;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    background: #1261a0;
    color: var(--bg-white);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cta-modern:hover {
    background: #cc0000;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
}

.btn-cta-modern:active {
    transform: translateY(0);
}


/* Responsive Styles for Modern Sections */
@media (max-width: 1024px) {
    .section-title-modern {
        font-size: 3rem;
    }
    
    .trending-modern-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .featured-article-image {
        height: 350px;
    }
    
    .trending-item-modern {
        flex-direction: column;
    }
    
    .trending-item-image {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
    }
    
    .trending-item-content {
        padding: 20px;
    }
    
    .trending-featured-card h3 {
        font-size: 1.5rem;
    }
    
    .stats-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .stat-number-modern {
        font-size: 3.5rem;
    }
    
    .statistics-modern-section {
        min-height: 400px;
        padding: 80px 0;
    }
    
    .main-team-slider-track {
        gap: 20px;
    }
    
    .main-team-player-modern-card {
        flex: 0 0 200px;
    }
    
    .player-image-wrapper-modern {
        height: 250px;
    }
    
    .main-team-slider-container {
        margin-bottom: 25px;
    }
    
    .main-team-modern-header .section-title-modern {
        font-size: 3rem;
    }
    
    .video-background-wrapper {
        height: 500px;
    }
    
    .video-play-button {
        width: 90px;
        height: 90px;
    }
    
    .video-play-button i {
        font-size: 1.8rem;
    }
    
    .welcome-cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .recent-matches-modern-section,
    .trending-articles-modern-section,
    .league-table-modern-section,
    .statistics-modern-section,
    .main-team-modern-section,
    .sponsors-modern-section,
    .latest-news-modern-section,
    .welcome-cta-modern-section {
        min-height: 300px;
    }
    
    .sponsors-modern-section {
        padding: 60px 0;
    }
    
    .sponsors-modern-header {
        margin-bottom: 40px;
    }
    
    .sponsors-modern-header .section-title-modern {
        font-size: 2.5rem;
    }
    
    .sponsors-slider-wrapper {
        padding: 0 50px;
    }
    
    .sponsor-item-modern {
        flex: 0 0 180px;
        height: 130px;
    }
    
    .sponsor-slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sponsors-modern-section {
        padding: 40px 0;
    }
    
    .sponsors-modern-header {
        margin-bottom: 30px;
    }
    
    .sponsors-modern-header .section-title-modern {
        font-size: 2rem;
    }
    
    .sponsors-modern-header .section-description-modern {
        font-size: 0.9rem;
    }
    
    .sponsors-slider-wrapper {
        padding: 0 35px;
    }
    
    .sponsor-item-modern {
        flex: 0 0 140px;
        height: 110px;
    }
    
    .sponsor-logo-wrapper {
        padding: 15px;
        border-radius: 12px;
    }
    
    .sponsor-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .welcome-cta-modern-content {
        padding: 80px 0;
        max-width: 500px;
    }
    
    .welcome-cta-title {
        font-size: 2.8rem;
    }
    
    .section-title-modern {
        font-size: 2.5rem;
    }
    
    .matches-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .match-modern-card {
        padding: 25px 20px;
    }
    
    .match-venue {
        font-size: 1.2rem;
    }
    
    .team-vs-logo {
        width: 50px;
        height: 50px;
    }
    
    .team-name {
        font-size: 0.9rem;
    }
    
    .vs-divider {
        font-size: 1.3rem;
    }
    
    .stats-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number-modern {
        font-size: 3rem;
    }
    
    .stat-label-modern {
        font-size: 1rem;
    }
    
    .statistics-modern-section {
        min-height: 350px;
        padding: 60px 0;
    }
    
    .main-team-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .latest-news-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .news-image-wrapper {
        height: 220px;
    }
    
    .news-modern-card h3 {
        font-size: 1.1rem;
    }
    
    .welcome-cta-title {
        font-size: 2rem;
    }
    
    .league-table-modern {
        font-size: 0.9rem;
    }
    
    .league-table-modern th,
    .league-table-modern td {
        padding: 12px 10px;
    }
    
    .team-logo-table {
        width: 35px;
        height: 35px;
    }
    
    .team-cell {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .section-title-modern {
        font-size: 2rem;
    }
    
    .league-subtitle-modern,
    .main-team-subtitle-modern {
        font-size: 1.1rem;
    }
    
    .match-content-wrapper {
        gap: 8px;
        margin: 0;
    }
    
    .team-logo-image {
        width: 55px;
        height: 55px;
    }
    
    .score-large {
        font-size: 1.6rem;
    }
    
    .matches-modern-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .match-modern-card {
        padding: 20px 15px;
    }
    
    .match-number {
        font-size: 0.75rem;
    }
    
    .match-venue {
        font-size: 1.1rem;
    }
    
    .match-datetime {
        font-size: 0.8rem;
    }
    
    .team-section {
        gap: 8px;
    }
    
    .team-vs-logo {
        width: 45px;
        height: 45px;
    }
    
    .team-name {
        font-size: 0.8rem;
    }
    
    .vs-divider {
        font-size: 1.1rem;
        padding: 0 8px;
    }
    
    .featured-article-image {
        height: 280px;
    }
    
    .trending-featured-card h3 {
        font-size: 1.3rem;
    }
    
    .main-team-slider-track {
        gap: 15px;
    }
    
    .main-team-player-modern-card {
        flex: 0 0 calc(100% - 15px);
        min-width: calc(100% - 15px);
    }
    
    .player-image-wrapper-modern {
        height: 240px;
    }
    
    .player-jersey-number-modern {
        font-size: 2rem;
    }
    
    .player-name-modern {
        font-size: 1rem;
        margin: 15px 0 6px 0;
    }
    
    .player-role-modern {
        font-size: 0.85rem;
        margin: 0 0 15px 0;
    }
    
    .main-team-slider-container {
        margin-bottom: 20px;
    }
    
    .trending-item-image {
        height: 150px;
    }
    
    .trending-item-modern h4 {
        font-size: 1rem;
    }
    
    .article-date-modern {
        width: 60px;
        height: 60px;
    }
    
    .date-day-modern {
        font-size: 1.5rem;
    }
    
    .stats-modern-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-number-modern {
        font-size: 2.5rem;
    }
    
    .stat-label-modern {
        font-size: 0.95rem;
    }
    
    .statistics-modern-section {
        min-height: 200px;
        padding: 50px 0;
    }
    
    .video-background-wrapper {
        height: 400px;
    }
    
    .video-play-button {
        width: 80px;
        height: 80px;
    }
    
    .video-play-button i {
        font-size: 1.5rem;
    }
    
    .video-modal-content {
        width: 95%;
    }
    
    .video-modal-close {
        top: -40px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .main-team-modern-grid {
        grid-template-columns: 1fr;
    }
    
    .player-photo-modern-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .latest-news-modern-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .news-image-wrapper {
        height: 200px;
    }
    
    .news-modern-card h3 {
        font-size: 1rem;
    }
    
    .news-content-wrapper {
        padding: 20px;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    
    .welcome-cta-modern-section {
        min-height: 400px;
    }
    
    .welcome-cta-modern-content {
        padding: 60px 0;
        max-width: 100%;
        text-align: center;
    }
    
    .welcome-cta-title {
        font-size: 2rem;
    }
    
    .btn-cta-modern {
        font-size: 0.95rem;
        padding: 14px 30px;
    }
    
    .league-table-modern {
        font-size: 0.8rem;
    }
    
    .league-table-modern th,
    .league-table-modern td {
        padding: 10px 8px;
    }
    
    .team-logo-table {
        width: 30px;
        height: 30px;
    }
    
    .team-cell {
        gap: 8px;
    }
    
    .team-cell strong {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .our-gallery-section {
        padding: 60px 0;
    }
    
    .gallery-section-header {
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 30px;
    }
    
    .gallery-section-header h2 {
        font-size: 2rem;
    }
    
    .gallery-slider-controls {
        align-self: center;
    }
    
    .gallery-slide {
        flex: 0 0 calc(50% - 15px);
    }
    
    .gallery-image-wrapper {
        height: 250px;
    }
    
    .gallery-content h3 {
        font-size: 1.2rem;
    }
    
    .gallery-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .our-gallery-section {
        padding: 50px 0;
    }
    
    .gallery-section-header {
        margin-bottom: 25px;
    }
    
    .gallery-section-header h2 {
        font-size: 1.8rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .gallery-slide {
        flex: 0 0 85%;
    }
    
    .gallery-image-wrapper {
        height: 220px;
    }
    
    .gallery-content {
        padding: 20px;
    }
    
    .gallery-content h3 {
        font-size: 1.1rem;
    }
    
    .gallery-content p {
        font-size: 0.85rem;
    }
}

/* Recent Teams Section */
.recent-teams-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f7fc 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.recent-teams-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(18, 97, 160, 0.03) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(56, 149, 211, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.recent-teams-section .container {
    position: relative;
    z-index: 1;
}

/* ========== Teams Listing Section – Premium redesign ========== */
.teams-listing-section {
    background: linear-gradient(165deg, #0c1929 0%, #132942 40%, #0f2744 100%);
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
}

.teams-listing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(18, 97, 160, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(56, 149, 211, 0.08) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.teams-listing-section .container {
    position: relative;
    z-index: 1;
}

.teams-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 44px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.teams-header-content {
    position: relative;
}

.teams-header-content::before {
    content: 'TEAMS';
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: rgba(126, 184, 247, 0.9);
    margin-bottom: 10px;
}

.teams-header-content h2 {
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 2.5rem);
    font-weight: 800;
    margin: 0 0 6px 0;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.teams-header-content h2 strong {
    color: #7eb8f7;
    background: none;
    -webkit-text-fill-color: initial;
}

.teams-header-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    margin: 0;
    font-weight: 400;
}

.btn-register-teams {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #fff;
    background: linear-gradient(135deg, #1e5a8e 0%, #2a7ab8 50%, #3895d3 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 80, 140, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-register-teams i {
    font-size: 1.1rem;
}

.btn-register-teams:hover {
    background: linear-gradient(135deg, #2a7ab8 0%, #3895d3 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 80, 140, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-register-teams:active {
    transform: translateY(0);
}

/* Teams Grid */
.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 0;
}

.team-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    padding: 32px 28px 28px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e5a8e, #3895d3, #5eb0e8);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.team-card:hover::before {
    opacity: 1;
    background: linear-gradient(90deg, #2a7ab8, #5eb0e8);
}

.team-logo {
    width: 112px;
    height: 112px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
}

.team-logo::after {
    display: none;
}

.team-card:hover .team-logo {
    border-color: rgba(94, 176, 232, 0.5);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35), 0 0 24px rgba(56, 149, 211, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: scale(1.08);
}

.team-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.team-card:hover .team-logo img {
    transform: scale(1.05);
}

.team-card h3 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.team-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.team-card p:last-of-type {
    margin-bottom: 20px;
}

.team-card i {
    color: rgba(126, 184, 247, 0.9);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: color 0.25s ease;
}

.team-card:hover i {
    color: #7eb8f7;
}

/* Team card button – filled style on dark */
.team-card .btn-small {
    padding: 12px 26px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, #1e5a8e 0%, #2a7ab8 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}

.team-card .btn-small::before {
    display: none;
}

.team-card .btn-small:hover {
    background: linear-gradient(135deg, #2a7ab8 0%, #3895d3 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 80, 140, 0.4);
}

.no-teams {
    text-align: center;
    padding: 56px 40px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    margin: 40px 0;
    position: relative;
}

.no-teams::before {
    content: '🏏';
    font-size: 3rem;
    display: block;
    margin-bottom: 14px;
    opacity: 0.6;
}

/* Team Details */
.team-details-section {
    background: var(--bg-white);
    padding: 60px 0;
}

.team-details-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.team-header {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--blue-bg);
}

.team-logo-large img {
    width: 168px;
    height: 168px;
    border-radius: 50%;
}

.team-logo-large {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 6px solid var(--matisse-blue);
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(18, 97, 160, 0.3);
    transition: var(--transition);
    flex-shrink: 0;
}

.team-logo-large:hover {
    border-color: var(--rich-light-blue);
    box-shadow: 0 8px 25px rgba(18, 97, 160, 0.4);
    transform: scale(1.02);
}

.team-info h1 {
    background: linear-gradient(135deg, var(--deep-blue-2) 0%, var(--matisse-blue) 50%, var(--rich-light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
}

.team-info p {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-info i {
    margin-right: 8px;
    color: var(--matisse-blue);
}

.team-players {
    margin-top: 40px;
}

.team-players h2 {
    background: linear-gradient(135deg, var(--deep-blue-2) 0%, var(--matisse-blue) 50%, var(--rich-light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 700;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.player-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--blue-bg) 100%);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.player-card:hover {
    border-color: var(--matisse-blue);
    box-shadow: 0 4px 15px rgba(18, 97, 160, 0.2);
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--serenity-blue) 100%);
}

.player-role-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.role-batsman {
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    color: var(--bg-white);
    box-shadow: 0 2px 5px rgba(18, 97, 160, 0.3);
}

.role-bowler {
    background: linear-gradient(135deg, var(--blue-gray) 0%, var(--chambray-blue) 100%);
    color: var(--bg-white);
    box-shadow: 0 2px 5px rgba(102, 153, 204, 0.3);
}

.role-all-rounder {
    background: linear-gradient(135deg, var(--rich-light-blue) 0%, var(--miami-blue) 100%);
    color: var(--bg-white);
    box-shadow: 0 2px 5px rgba(56, 149, 211, 0.3);
}

.role-wicket-keeper {
    background: linear-gradient(135deg, var(--deep-blue-1) 0%, var(--american-blue) 100%);
    color: var(--bg-white);
    box-shadow: 0 2px 5px rgba(1, 31, 75, 0.3);
}

.player-image-container {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
}

.player-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.player-card:hover .player-photo {
    transform: scale(1.05);
}

.player-image-container .player-role-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 2;
}

.player-card h3,
.player-card h4 {
    color: var(--deep-blue-1);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 5px;
}

.team-actions {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--blue-bg);
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-back {
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    color: var(--bg-white);
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(18, 97, 160, 0.3);
    font-size: 1rem;
}

.btn-back:hover {
    background: linear-gradient(135deg, var(--rich-light-blue) 0%, var(--miami-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 97, 160, 0.4);
    color: var(--bg-white);
}

.btn-back i {
    font-size: 1rem;
}

/* Page Banner (for all pages except index) */
.page-banner {
    position: relative;
    background: #151A19;
    /* background: linear-gradient(135deg, rgba(1, 31, 75, 0.95) 0%, rgba(3, 57, 108, 0.95) 50%, rgba(0, 91, 150, 0.95) 100%),
                url('../images/portrait-person-playing-cricket-sport.jpg'); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
    color: var(--bg-white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--bg-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.page-banner-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.2;
}

.page-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-breadcrumb a:hover {
    color: var(--bg-white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.page-breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 5px;
}

.page-breadcrumb .current {
    color: var(--bg-white);
    font-weight: 600;
}

/* Page Banner Responsive */
@media (max-width: 768px) {
    .page-banner {
        padding: 100px 0 60px;
        background-attachment: scroll;
    }
    
    .page-banner-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .page-breadcrumb {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-banner-title {
        font-size: 1.8rem;
    }
    
    .page-breadcrumb {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }
}

/* Coming Soon - Online Store */
.coming-soon-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.coming-soon-card {
    max-width: 560px;
    margin: 0 auto;
    padding: 50px 40px;
    background: var(--bg-white);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(18, 97, 160, 0.12), 0 2px 10px rgba(0, 0, 0, 0.06);
    text-align: center;
    border: 1px solid rgba(18, 97, 160, 0.1);
}

.coming-soon-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--deep-blue-2) 0%, var(--matisse-blue) 50%, var(--rich-light-blue) 100%);
    border-radius: 50%;
    color: var(--bg-white);
    font-size: 2.5rem;
    box-shadow: 0 8px 24px rgba(18, 97, 160, 0.35);
}

.coming-soon-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.coming-soon-title strong {
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-message {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.coming-soon-subtext {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.coming-soon-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 600px) {
    .coming-soon-card {
        padding: 40px 24px;
    }
    
    .coming-soon-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }
    
    .coming-soon-title {
        font-size: 1.6rem;
    }
}

/* Leaderboard Section */
.leaderboard-section {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 60px 0 80px;
}

.leaderboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.leaderboard-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(18, 97, 160, 0.1);
    border: 1px solid rgba(18, 97, 160, 0.08);
    transition: var(--transition);
}

.leaderboard-card:hover {
    box-shadow: 0 12px 40px rgba(18, 97, 160, 0.15);
    transform: translateY(-2px);
}

.leaderboard-card-header {
    padding: 28px 24px;
    color: var(--bg-white);
    text-align: center;
}

.leaderboard-card-header i {
    font-size: 2rem;
    margin-bottom: 12px;
    opacity: 0.95;
}

.leaderboard-card-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 6px 0;
}

.leaderboard-card-header p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.top-scorer-header {
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
}

.best-bowler-header {
    background: linear-gradient(135deg, var(--deep-blue-2) 0%, var(--matisse-blue) 100%);
}

.leaderboard-list {
    list-style: none;
    margin: 0;
    padding: 20px;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: var(--transition);
}

.leaderboard-item:hover {
    background: var(--bg-light);
}

.leaderboard-item.rank-1 { background: linear-gradient(90deg, rgba(255, 215, 0, 0.12) 0%, transparent 100%); }
.leaderboard-item.rank-2 { background: linear-gradient(90deg, rgba(192, 192, 192, 0.12) 0%, transparent 100%); }
.leaderboard-item.rank-3 { background: linear-gradient(90deg, rgba(205, 127, 50, 0.12) 0%, transparent 100%); }

.leaderboard-rank {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--matisse-blue);
    color: var(--bg-white);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.leaderboard-item.rank-1 .leaderboard-rank { background: linear-gradient(135deg, #d4af37, #f4d03f); color: #2c1810; }
.leaderboard-item.rank-2 .leaderboard-rank { background: linear-gradient(135deg, #a8a8a8, #c0c0c0); color: #1a1a1a; }
.leaderboard-item.rank-3 .leaderboard-rank { background: linear-gradient(135deg, #8b6914, #cd7f32); color: var(--bg-white); }

.leaderboard-player-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(18, 97, 160, 0.2);
}

.leaderboard-player-info {
    flex: 1;
    min-width: 0;
}

.leaderboard-player-info strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
}

.leaderboard-player-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.leaderboard-stat {
    font-weight: 700;
    color: var(--matisse-blue);
    font-size: 1.1rem;
}

.leaderboard-stat small {
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.8rem;
}

.leaderboard-empty {
    text-align: center;
    padding: 30px 20px;
    color: var(--text-light);
}

.leaderboard-placeholder {
    max-width: 480px;
    margin: 60px auto 0;
    padding: 50px 40px;
    text-align: center;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(18, 97, 160, 0.08);
    border: 1px dashed rgba(18, 97, 160, 0.2);
}

.leaderboard-placeholder-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--serenity-blue) 0%, var(--blue-bg) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--matisse-blue);
}

.leaderboard-placeholder h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
}

.leaderboard-placeholder p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.leaderboard-placeholder code {
    background: var(--bg-light);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .leaderboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .leaderboard-card-header {
        padding: 22px 20px;
    }
    
    .leaderboard-list {
        padding: 16px;
    }
    
    .leaderboard-item {
        padding: 12px;
        gap: 12px;
    }
    
    .leaderboard-player-img {
        width: 40px;
        height: 40px;
    }
}

/* About Page */
.about-section {
    background: var(--bg-white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    background: linear-gradient(135deg, var(--deep-blue-2) 0%, var(--matisse-blue) 50%, var(--rich-light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
}

.about-text h3 {
    color: var(--deep-blue-1);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

.founders-note {
    margin: 40px 0;
    padding: 36px 40px;
    background: linear-gradient(135deg, rgba(18, 97, 160, 0.06) 0%, rgba(56, 149, 211, 0.04) 100%);
    border-left: 4px solid var(--matisse-blue);
    border-radius: 0 16px 16px 0;
    box-shadow: 0 2px 15px rgba(18, 97, 160, 0.08);
}

.founders-note h3 {
    margin-top: 0;
    margin-bottom: 24px;
    color: var(--matisse-blue);
    font-size: 1.4rem;
}

.founders-note h3 i {
    margin-right: 8px;
    opacity: 0.8;
}

.founders-note-content p {
    margin-bottom: 18px;
}

.founders-note-content p:last-of-type {
    margin-bottom: 0;
}

.founders-signature {
    margin-top: 24px !important;
    font-style: italic;
    color: var(--chambray-blue);
    font-weight: 600;
}

@media (max-width: 600px) {
    .founders-note {
        padding: 24px 20px;
    }
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    padding: 10px 0;
    color: var(--text-dark);
}

.features-list i {
    color: var(--matisse-blue);
    margin-right: 10px;
    transition: var(--transition);
}

.features-list li:hover i {
    color: var(--rich-light-blue);
    transform: scale(1.2);
}

.registration-fee-note {
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(18, 97, 160, 0.08) 0%, rgba(56, 149, 211, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--matisse-blue);
    margin-bottom: 24px;
    color: var(--text-dark);
}

.registration-fee-note i {
    margin-right: 8px;
    color: var(--matisse-blue);
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Rules Page */
.rules-section {
    background: var(--bg-white);
}

.rules-content {
    max-width: 900px;
    margin: 0 auto;
}

.rules-section-item {
    margin-bottom: 50px;
}

.rules-section-item h2 {
    background: linear-gradient(135deg, var(--deep-blue-2) 0%, var(--matisse-blue) 50%, var(--rich-light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.rules-section-item h2 i {
    color: var(--royal-blue);
    filter: drop-shadow(0 2px 4px rgba(65, 105, 225, 0.3));
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.rule-item {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--blue-bg) 100%);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--matisse-blue);
    transition: var(--transition);
}

.rule-item:hover {
    border-left-color: var(--rich-light-blue);
    box-shadow: 0 3px 10px rgba(18, 97, 160, 0.1);
}

.rule-item h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.rule-item h4 {
    color: var(--primary-dark);
    font-size: 1rem;
    margin: 16px 0 8px 0;
}

.rule-item ul {
    margin-left: 20px;
    margin-top: 10px;
}

.rule-item li {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.rules-tagline {
    text-align: center;
    padding: 40px 20px 20px;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
}

.rules-tagline p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.rules-tagline i {
    color: var(--matisse-blue);
    margin-right: 8px;
}

.how-it-works {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--deep-blue-1) 100%);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(18, 97, 160, 0.3);
    transition: var(--transition);
}

.step-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(18, 97, 160, 0.4);
}

.step-content h3 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-light);
}

.info-box {
    background: linear-gradient(135deg, var(--serenity-blue) 0%, var(--blue-bg) 100%);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--royal-blue);
    box-shadow: 0 2px 8px rgba(65, 105, 225, 0.1);
}

.info-box p {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-box a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}

/* Contact Page */
.contact-section {
    background: var(--bg-white);
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 60px auto;
}

.contact-info h2 {
    background: linear-gradient(135deg, var(--deep-blue-2) 0%, var(--matisse-blue) 50%, var(--rich-light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
    padding: 20px 24px;
    background: rgba(18, 97, 160, 0.04);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(18, 97, 160, 0.08);
    border-left-color: var(--matisse-blue);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-item h3 {
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item p a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.contact-item p a:hover {
    color: var(--deep-blue-3);
    text-decoration-color: var(--deep-blue-3);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(18, 97, 160, 0.4);
    box-shadow: rgba(18, 97, 160, 0.2) 0px 20px 50px;
    background-image: linear-gradient(135deg, transparent 0%, rgba(18, 97, 160, 0.05) 50%, transparent 100%), linear-gradient(225deg, transparent 0%, rgba(102, 153, 204, 0.05) 50%, transparent 100%);
}

/* Fancy Animated Border Frame */
.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, 
        var(--matisse-blue) 0%, 
        var(--rich-light-blue) 25%, 
        var(--miami-blue) 50%, 
        var(--rich-light-blue) 75%, 
        var(--matisse-blue) 100%);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease, background-position 3s ease;
    animation: borderGlow 3s ease infinite;
    z-index: -1;
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -100%;
    width: 100%;
    height: calc(100% + 4px);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: 20px;
}

.contact-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(18, 97, 160, 0.2);
    border-color: transparent;
    background-image: 
        linear-gradient(135deg, transparent 0%, rgba(18, 97, 160, 0.05) 50%, transparent 100%),
        linear-gradient(225deg, transparent 0%, rgba(102, 153, 204, 0.05) 50%, transparent 100%);
    background-size: 200% 200%;
    background-position: 100% 100%;
}

.contact-form-wrapper:hover::before {
    opacity: 1;
    background-position: 100% 100%;
}

.contact-form-wrapper:hover::after {
    left: 100%;
}

/* Ensure form content stays above effects */
.contact-form-wrapper form,
.contact-form-wrapper .alert {
    position: relative;
    z-index: 2;
}

@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.contact-form {
    margin-top: 20px;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Map Section */
.contact-map-section {
    margin-top: 60px;
    padding: 0;
    animation: fadeInUp 0.8s ease-out;
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--bg-light);
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.contact-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.map-container:hover .contact-map-iframe {
    filter: grayscale(0%);
}

.map-overlay-info {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    animation: slideInRight 0.6s ease-out;
}

.map-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    max-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.map-info-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-info-card h3 i {
    color: var(--matisse-blue);
    font-size: 1.2rem;
}

.map-info-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.btn-map-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(18, 97, 160, 0.3);
}

.btn-map-directions:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 97, 160, 0.4);
    background: linear-gradient(135deg, var(--rich-light-blue) 0%, var(--matisse-blue) 100%);
}

.btn-map-directions i {
    font-size: 1rem;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Map Styles */
@media (max-width: 768px) {
    .contact-map-section {
        margin-top: 40px;
    }
    
    .map-container {
        height: 400px;
        border-radius: 15px;
    }
    
    .map-overlay-info {
        top: 15px;
        right: 15px;
        left: 15px;
    }
    
    .map-info-card {
        max-width: 100%;
        padding: 20px;
    }
    
    .map-info-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 350px;
        border-radius: 12px;
    }
    
    .map-info-card {
        padding: 15px;
    }
    
    .map-info-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .map-info-card p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .btn-map-directions {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* Registration Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--bg-white);
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    max-width: 750px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    transform: scale(0.85) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    margin: auto;
    opacity: 0;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Smooth scrollbar for modal */
.modal-container::-webkit-scrollbar {
    width: 8px;
}

.modal-container::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.modal-container::-webkit-scrollbar-thumb {
    background: var(--matisse-blue);
    border-radius: 10px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background: var(--rich-light-blue);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, var(--deep-blue-2) 0%, var(--matisse-blue) 50%, var(--rich-light-blue) 100%);
    border-radius: 20px 20px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-header h2 {
    color: var(--bg-white);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    background: none;
    -webkit-text-fill-color: var(--bg-white);
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--bg-white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.modal-close::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.3s ease, height 0.3s ease;
}

.modal-close:hover::before {
    width: 100%;
    height: 100%;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-close:active {
    transform: rotate(90deg) scale(0.95);
}

.modal-body {
    padding: 36px 32px;
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.modal-description {
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.7;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    background: rgba(248, 249, 250, 0.5);
    margin-left: -32px;
    margin-right: -32px;
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 8px;
}

.modal-form-actions .btn {
    min-width: 140px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-form-actions .btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.modal-form-actions .btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-form-actions .btn-primary {
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    color: var(--bg-white);
    border: none;
    box-shadow: 0 4px 15px rgba(18, 97, 160, 0.3);
}

.modal-form-actions .btn-primary:hover {
    background: linear-gradient(135deg, var(--rich-light-blue) 0%, var(--miami-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 97, 160, 0.4);
}

.modal-form-actions .btn-primary:active {
    transform: translateY(0);
}

/* Modal Form Styles */
.modal-body .registration-form {
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.modal-body .form-group {
    margin-bottom: 24px;
}

.modal-body .form-group:last-of-type {
    margin-bottom: 0;
}

.modal-body .form-group label {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

.modal-body .form-group input[type="text"],
.modal-body .form-group input[type="file"],
.modal-body .form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
    font-family: inherit;
}

.modal-body .form-group input[type="text"]:focus,
.modal-body .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(18, 97, 160, 0.1);
}

.modal-body .form-group input[type="file"] {
    padding: 12px;
    cursor: pointer;
    background: var(--bg-light);
    border-style: dashed;
}

.modal-body .form-group input[type="file"]:hover {
    border-color: var(--primary-color);
    background: rgba(18, 97, 160, 0.05);
}

.modal-body .form-group small {
    display: block;
    margin-top: 8px;
    color: var(--text-light);
    font-size: 0.875rem;
}

.modal-body .player-row {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.modal-body .player-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.modal-body .player-row input[type="text"],
.modal-body .player-row select {
    padding: 12px 14px;
    font-size: 0.95rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.modal-body .player-row input[type="text"]:focus,
.modal-body .player-row select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(18, 97, 160, 0.1);
}

.modal-body .player-image-input {
    padding: 10px;
    font-size: 0.9rem;
}

.modal-body .player-image-hint {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: -5px;
}

.modal-body .btn-remove-player {
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.modal-body .btn-remove-player:hover {
    background: #c82333;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.modal-body .btn-add-player {
    font-size: 0.95rem;
    padding: 12px 24px;
    margin-top: 8px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.modal-body .btn-add-player:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(18, 97, 160, 0.3);
}

/* Footer */
.main-footer {
    background: #282828;
    color: var(--bg-white);
    padding: 40px 0 0;
    margin-top: 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    /* padding-bottom: 50px; */
}

.footer-section h4 {
    margin-bottom: 25px;
    color: var(--bg-white);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Contact Info Section */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--bg-white);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-item i {
    color: var(--bg-white);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
}

.contact-info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(18, 97, 160, 0.3);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social-icons a:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(18, 97, 160, 0.3);
}

/* Navigation Menu Section */
.footer-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-menu li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav-menu li:last-child {
    border-bottom: none;
}

.footer-nav-menu a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    text-transform: capitalize;
}

.footer-nav-menu a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

/* Recent Works Section */
.footer-works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1;
    cursor: pointer;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-item:hover img {
    transform: scale(1.1);
}

/* Footer Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 0;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
}

.footer-logo-img {
    height: 150px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-logo-link:hover .footer-logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.footer-brand-name {
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: left;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* Newsletter Form */
.newsletter-form {
    margin-top: 10px;
}

.newsletter-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 8px;
}

.newsletter-icon {
    color: rgba(255, 255, 255, 0.6);
    margin-right: 10px;
    font-size: 1rem;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--bg-white);
    font-size: 0.95rem;
    outline: none;
    padding: 5px 0;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-submit {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
    margin-left: 10px;
}

.newsletter-submit:hover {
    color: var(--bg-white);
    transform: translateX(3px);
}

.privacy-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    cursor: pointer;
}

.privacy-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #dc3545;
}

.privacy-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: color 0.3s;
}

.privacy-link:hover {
    color: var(--bg-white);
}

/* Footer Lists */
.footer-social-list,
.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-list li,
.footer-menu-list li {
    margin-bottom: 12px;
}

.footer-social-list a,
.footer-menu-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-social-list a i,
.footer-menu-list a i {
    font-size: 0.8rem;
    opacity: 0.6;
    transition: var(--transition);
}

.footer-social-list a:hover,
.footer-menu-list a:hover {
    color: var(--bg-white);
    transform: translateX(5px);
}

.footer-social-list a:hover i,
.footer-menu-list a:hover i {
    opacity: 1;
}

/* Say Hello Section */
.footer-email {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    column-gap: 4px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    position: relative;
    text-align: center;
}

.footer-copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-credit {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
}

.footer-credit a:hover {
    color: #fff;
    text-decoration: underline;
}

.scroll-to-top {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--bg-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 15px rgba(18, 97, 160, 0.4);
    font-size: 1.1rem;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(18, 97, 160, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-wrapper {
        flex-wrap: nowrap;
        gap: 12px;
        width: 100%;
    }
    
    .logo-section {
        order: 1;
        flex-shrink: 0;
    }
    
    .header-actions {
        order: 2;
        flex: 1;
        min-width: 0;
        justify-content: flex-end;
        gap: 8px;
    }
    
    .mobile-menu-toggle {
        order: 3;
        flex-shrink: 0;
    }
    
    .social-icons {
        display: none;
    }
    
    .utility-icons {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap;
        flex-shrink: 0;
    }
    
    .header-actions .btn-register {
        font-size: 0.8rem;
        padding: 10px 16px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .icon-link {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
        flex-shrink: 0;
        touch-action: manipulation;
    }
    
    .icon-link i {
        font-size: 0.95rem;
    }
    
    .utility-icons .btn-register {
        touch-action: manipulation;
    }
    
    .header-logo-img {
        height: 100px;
        max-width: 140px;
        object-fit: contain;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 20px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
        gap: 0;
        align-items: stretch;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
        font-size: 1rem;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-register-mobile {
        display: block;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .btn-register-mobile {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        display: block;
        border-radius: 8px;
    }
    
    .search-bar {
        top: 70px;
        position: fixed;
        width: 100%;
        z-index: 998;
    }
    
    .search-form {
        padding: 0 20px;
    }
    
    /* Countdown Banner Responsive */
    .countdown-banner {
        padding: 80px 0;
        min-height: 500px;
    }
    
    .banner-slide img {
        object-position: center center;
    }
    
    .cricket-watermark {
        font-size: 8rem;
        letter-spacing: 10px;
        transform: translateY(20%);
    }
    
    .countdown-left {
        align-items: flex-start;
        gap: 24px;
    }
    
    .countdown-heading,
    .countdown-opener-label {
        font-size: 0.95rem;
        letter-spacing: 4px;
        padding-bottom: 10px;
    }
    
    .countdown-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin: 0;
        text-align: left;
    }
    
    .countdown-description {
        font-size: 1rem;
        margin-bottom: 25px;
        max-width: 100%;
    }
    
    .countdown-timer {
        gap: 10px;
        padding: 20px 15px;
        align-self: flex-start;
    }
    
    .countdown-item {
        min-width: 65px;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .countdown-separator {
        font-size: 2rem;
        margin: 0 3px;
    }
    
    .btn-register {
        font-size: 0.95rem;
        padding: 12px 28px;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h1,
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Team Cards Responsive */
    .teams-page-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }
    
    .btn-register-teams {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .recent-teams-section,
    .teams-listing-section {
        padding: 60px 0;
    }
    
    .teams-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 24px;
    }
    
    .team-card {
        padding: 32px 24px 28px;
    }
    
    .team-logo {
        width: 108px;
        height: 108px;
        margin-bottom: 18px;
    }
    
    .team-card h3 {
        font-size: 1.25rem;
    }
    
    .registration-form {
        padding: 25px;
    }
    
    .form-row-captains {
        grid-template-columns: 1fr;
    }
    
    .player-row {
        flex-direction: column;
    }
    
    /* Our Players Section Responsive */
    .our-players-section {
        padding: 60px 0;
    }
    
    .players-section-header {
        margin-bottom: 30px;
    }
    
    .players-section-header h2 {
        font-size: 2rem;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .player-slide {
        flex: 0 0 calc(50% - 15px);
    }
    
    .player-image-wrapper {
        height: 240px;
    }
    
    .player-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        top: 15px;
        left: 15px;
    }
    
    .player-image-placeholder i {
        font-size: 5rem;
    }
    
    .player-info-card {
        padding: 20px 15px;
    }
    
    .player-name {
        font-size: 1.2rem;
    }
    
    .teams-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .team-header {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding-bottom: 30px;
    }
    
    .team-logo-large {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .team-info h1 {
        font-size: 2rem;
    }
    
    .players-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .team-details-card {
        padding: 30px 20px;
    }
    
    .player-card {
        padding: 20px 15px;
    }
    
    .btn-back {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .step-item {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .footer-contact-info {
        gap: 15px;
    }
    
    .contact-info-item {
        font-size: 0.9rem;
    }
    
    .footer-social-icons {
        gap: 10px;
    }
    
    .footer-social-icons a {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .footer-nav-menu li {
        padding: 10px 0;
    }
    
    .footer-nav-menu a {
        font-size: 0.9rem;
    }
    
    .footer-works-grid {
        gap: 8px;
    }
    
    .footer-logo-img {
        height: 90px;
    }
    
    .footer-brand-name {
        font-size: 1.3rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding: 25px 0;
        text-align: center;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section h4 {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }
    
    .contact-info-item {
        font-size: 0.85rem;
    }
    
    .footer-social-icons a {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .footer-nav-menu a {
        font-size: 0.85rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 0.9rem;
    }
    
    /* Team Cards Mobile Responsive */
    .recent-teams-section,
    .teams-listing-section {
        padding: 50px 0;
    }
    
    .teams-page-header {
        margin-bottom: 25px;
    }
    
    .teams-header-content h2 {
        font-size: 1.8rem;
    }
    
    .btn-register-teams {
        padding: 14px 24px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
    }
    
    .teams-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-card {
        padding: 28px 20px 26px;
        border-radius: 14px;
    }
    
    .team-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 16px;
        border-width: 2px;
    }
    
    .team-card h3 {
        font-size: 1.15rem;
    }
    
    .btn-small {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .team-card .btn-small {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section h4 {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }
    
    .contact-info-item {
        font-size: 0.85rem;
    }
    
    .footer-social-icons a {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .footer-nav-menu a {
        font-size: 0.85rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /* Header Mobile */
    .navbar {
        padding: 0.35rem 0;
    }
    
    .nav-wrapper {
        gap: 8px;
    }
    
    .header-logo-img {
        height: 100px;
        max-width: 120px;
    }
    
    .header-actions {
        gap: 6px;
    }
    
    .utility-icons {
        gap: 6px;
    }
    
    .header-actions .btn-register {
        font-size: 0.75rem;
        padding: 8px 12px;
    }
    
    .icon-link {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }
    
    .icon-link i {
        font-size: 0.9rem;
    }
    
    .cart-badge {
        width: 15px;
        height: 15px;
        font-size: 0.6rem;
        padding: 0 4px;
        min-width: 18px;
    }
    
    .cart-badge.coming-soon {
        min-width: 26px;
        height: 16px;
        font-size: 0.55rem;
        padding: 0 5px;
    }
    
    .nav-menu {
        top: 65px;
        padding: 20px 15px;
    }
    
    .nav-menu a {
        font-size: 0.95rem;
        padding: 12px 0;
    }
    
    .search-bar {
        top: 65px;
    }
    
    /* Our Players Section Mobile */
    .our-players-section {
        padding: 50px 0;
    }
    
    .players-section-header {
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 25px;
    }
    
    .players-section-header h2 {
        font-size: 1.8rem;
    }
    
    .players-slider-controls {
        align-self: flex-end;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .player-slide {
        flex: 0 0 85%;
    }
    
    .player-image-wrapper {
        height: 220px;
    }
    
    .player-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: 12px;
        left: 12px;
    }
    
    .player-image-placeholder i {
        font-size: 4rem;
    }
    
    .player-info-card {
        padding: 18px 15px;
    }
    
    .player-name {
        font-size: 1.1rem;
    }
    
    .player-role {
        font-size: 0.9rem;
    }
    
    .player-team {
        font-size: 0.85rem;
    }
    
    .players-view-all .btn {
        padding: 12px 30px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
    
    /* Countdown Banner Mobile */
    .countdown-banner {
        padding: 60px 0;
        min-height: 700px;
    }
    
    .banner-slide img {
        object-position: center center;
    }
    
    .cricket-watermark {
        font-size: 5rem;
        letter-spacing: 5px;
        transform: translateY(15%);
    }
    
    .countdown-left {
        align-items: flex-start;
        gap: 20px;
    }
    
    .countdown-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin: 0;
        text-align: left;
    }
    
    .countdown-opener-label {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }
    
    .countdown-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .countdown-timer {
        gap: 10px;
        padding: 22px 16px;
        align-self: flex-start;
    }
    
    .countdown-item {
        min-width: 55px;
    }
    
    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
        margin: 0 2px;
    }
    
    .btn-register {
        font-size: 0.9rem;
        padding: 12px 25px;
        max-width: 100%;
    }
    
    /* Modal Mobile */
    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }
    
    .modal-container {
        max-width: 100%;
        margin: 0;
        border-radius: 20px 20px 0 0;
        max-height: 95vh;
        transform: translateY(100%);
    }
    
    .modal-overlay.active .modal-container {
        transform: translateY(0);
    }
    
    .modal-header {
        padding: 22px 20px;
        border-radius: 20px 20px 0 0;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-close {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .modal-body {
        padding: 24px 20px;
    }
    
    .modal-body .player-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-body .player-input-group {
        width: 100%;
    }
    
    .modal-body .btn-remove-player {
        width: 100%;
        height: 40px;
    }
    
    .modal-form-actions {
        flex-direction: column;
        gap: 12px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .modal-form-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .site-logo {
        height: 28px;
        max-width: 90px;
        padding: 2px 5px;
    }
    
    .logo a {
        font-size: 1rem;
        gap: 6px;
    }
    
    .logo a span {
        display: none;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .registration-form {
        padding: 20px;
    }
    
    /* Footer Logo Mobile */
    .footer-logo-img {
        height: 90px;
        max-width: 160px;
    }
}

/* Newsletter Subscription Section */
.newsletter-section {
    background: linear-gradient(to bottom, rgba(18, 97, 160, 0.05) 0%, #f8f9fa 50%, #212529 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-wrapper {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.newsletter-content {
    flex: 1;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
}

.newsletter-highlight {
    color: var(--primary-color);
}

.newsletter-form-wrapper {
    flex: 0 0 auto;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    background: var(--bg-white);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.newsletter-input {
    flex: 1;
    border: none;
    padding: 18px 30px;
    font-size: 1rem;
    color: var(--text-dark);
    background: transparent;
    outline: none;
    min-width: 300px;
}

.newsletter-input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.newsletter-submit-btn {
    background: var(--primary-color);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--bg-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    font-size: 1.2rem;
}

.newsletter-submit-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(18, 97, 160, 0.4);
}

.newsletter-submit-btn:active {
    transform: scale(0.95);
}

.newsletter-message {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    display: none;
    margin-top: 10px;
}

.newsletter-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.newsletter-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Decorative Dots */
.newsletter-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--primary-color) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.newsletter-dots-top-right {
    top: 20px;
    right: 20px;
}

.newsletter-dots-bottom-left {
    bottom: 20px;
    left: 20px;
}

/* Responsive Newsletter */
@media (max-width: 968px) {
    .newsletter-wrapper {
        flex-direction: column;
        padding: 50px 40px;
        text-align: center;
    }
    
    .newsletter-title {
        font-size: 1.75rem;
    }
    
    .newsletter-input {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-wrapper {
        padding: 40px 30px;
    }
    
    .newsletter-title {
        font-size: 1.5rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        border-radius: 15px;
        padding: 0;
        gap: 10px;
    }
    
    .newsletter-input {
        padding: 15px 20px;
        border-radius: 15px;
        min-width: 100%;
    }
    
    .newsletter-submit-btn {
        width: 100%;
        height: 50px;
        border-radius: 15px;
    }
    
    .newsletter-dots {
        width: 80px;
        height: 80px;
        background-size: 15px 15px;
    }
    
    .newsletter-dots-top-right {
        top: 10px;
        right: 10px;
    }
    
    .newsletter-dots-bottom-left {
        bottom: 10px;
        left: 10px;
    }
}

/* Statistics Section */
.statistics-section {
    background: linear-gradient(135deg, var(--deep-blue-1) 0%, var(--matisse-blue) 50%, var(--rich-light-blue) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.statistics-section .container {
    position: relative;
    z-index: 1;
}

.statistics-section .section-header h2 {
    color: var(--bg-white);
}

.statistics-section .section-header h2 strong {
    -webkit-text-fill-color: var(--bg-white);
    background: none;
}

.statistics-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 3.5rem;
    color: var(--bg-white);
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f7fc 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(18, 97, 160, 0.03) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(56, 149, 211, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(18, 97, 160, 0.2);
    border-color: rgba(18, 97, 160, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--bg-white);
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(18, 97, 160, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(18, 97, 160, 0.4);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue-1);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* Upcoming Matches Section */
.upcoming-matches-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.upcoming-matches-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(18, 97, 160, 0.1) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(56, 149, 211, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.upcoming-matches-section .container {
    position: relative;
    z-index: 1;
}

.upcoming-matches-section .section-header h2 {
    color: var(--bg-white);
}

.upcoming-matches-section .section-header h2 strong {
    -webkit-text-fill-color: var(--bg-white);
    background: none;
}

.upcoming-matches-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.match-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(18, 97, 160, 0.2) 0%, rgba(56, 149, 211, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.match-card:hover::before {
    opacity: 1;
}

.match-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.match-date {
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(18, 97, 160, 0.4);
    position: relative;
    z-index: 1;
}

.date-day {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1;
    display: block;
}

.date-month {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    display: block;
}

.match-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.match-teams {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
      border: 1px solid #7c7474;
    border-radius: 25px;
    padding: 20px 10px;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bg-white);
    flex: 1;
    min-width: 100px;
}

.vs {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.match-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.match-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.match-info i {
    color: var(--rich-light-blue);
    width: 18px;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f7fc 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(18, 97, 160, 0.03) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(56, 149, 211, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    border-radius: 20px 20px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(18, 97, 160, 0.2);
    border-color: rgba(18, 97, 160, 0.2);
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(18, 97, 160, 0.2);
    margin-bottom: 15px;
}

.testimonial-content p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-white);
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(18, 97, 160, 0.3);
}

.author-info h4 {
    color: var(--deep-blue-1);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Sponsors Section */
.sponsors-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.sponsors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(18, 97, 160, 0.02) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(56, 149, 211, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.sponsors-section .container {
    position: relative;
    z-index: 1;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.sponsor-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.sponsor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.sponsor-card:hover::before {
    transform: scaleX(1);
}

.sponsor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(18, 97, 160, 0.15);
    border-color: rgba(18, 97, 160, 0.3);
}

.sponsor-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f2f8 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--matisse-blue);
    transition: all 0.4s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.sponsor-card:hover .sponsor-logo {
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    color: var(--bg-white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 20px rgba(18, 97, 160, 0.3);
}

.sponsor-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-blue-1);
    margin: 0;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--deep-blue-1) 0%, var(--matisse-blue) 50%, var(--rich-light-blue) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.cta-content h2 strong {
    -webkit-text-fill-color: var(--bg-white);
    background: none;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-cta {
    font-size: 1.1rem;
    padding: 18px 45px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-cta::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;
}

.btn-cta:hover::before {
    width: 400px;
    height: 400px;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.btn-cta i {
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: translateX(5px);
}

/* Responsive Styles for New Sections */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .matches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .statistics-section,
    .features-section,
    .upcoming-matches-section,
    .testimonials-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .mobile-menu-toggle span {
    height: 5.4px;
    }
    
    .sponsors-section {
        padding: 50px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-card {
        padding: 35px 25px;
    }
    
    .stat-icon {
        font-size: 3rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    .matches-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .match-card {
        flex-direction: column;
        text-align: center;
    }
    
    .match-date {
        min-width: auto;
        width: 100px;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .btn-cta {
        font-size: 1rem;
        padding: 15px 35px;
    }
}

@media (max-width: 480px) {
    .statistics-section,
    .features-section,
    .upcoming-matches-section,
    .testimonials-section,
    .cta-section {
        padding: 50px 0;
    }
    
    .map-info-card {
        max-width: 49%!important;
    }
    
    .sponsors-section {
        padding: 40px 0;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .match-card {
        padding: 25px 20px;
    }
    
    .date-day {
        font-size: 2rem;
    }
    
    .team-name {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .sponsors-grid {
        grid-template-columns: 1fr;
    }
    
    .sponsor-logo {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .btn-cta {
        font-size: 0.95rem;
        padding: 14px 30px;
        width: 100%;
        max-width: 300px;
    }
}

/* What We Do Section */
.what-we-do-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f7fc 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.what-we-do-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(18, 97, 160, 0.03) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(56, 149, 211, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.what-we-do-section .container {
    position: relative;
    z-index: 1;
}

.what-we-do-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.what-we-do-content {
    max-width: 600px;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--matisse-blue);
    margin-bottom: 20px;
    display: block;
}

.what-we-do-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.what-we-do-title strong {
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.what-we-do-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.what-we-do-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.what-we-do-item {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.what-we-do-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.what-we-do-item:hover::before {
    transform: scaleX(1);
}

.what-we-do-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(18, 97, 160, 0.15);
    border-color: rgba(18, 97, 160, 0.2);
}

.what-we-do-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-white);
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(18, 97, 160, 0.3);
}

.what-we-do-item:hover .what-we-do-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(18, 97, 160, 0.4);
}

.what-we-do-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--deep-blue-1);
    margin-bottom: 12px;
}

.what-we-do-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, var(--deep-blue-1) 0%, var(--matisse-blue) 50%, var(--rich-light-blue) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.services-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    flex-shrink: 0;
    min-width: 100px;
    transition: all 0.4s ease;
}

.service-item:hover .service-number {
    color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.service-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bg-white);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(5px);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Coaches Section */
.coaches-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f7fc 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.coaches-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(18, 97, 160, 0.03) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(56, 149, 211, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.coaches-section .container {
    position: relative;
    z-index: 1;
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.coach-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.coach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(18, 97, 160, 0.2);
    border-color: rgba(18, 97, 160, 0.2);
}

.coach-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    position: relative;
    overflow: hidden;
}

.coach-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.coach-card:hover .coach-image-placeholder {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 0.5);
}

.coach-info {
    padding: 30px;
    text-align: center;
}

.coach-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue-1);
    margin-bottom: 8px;
}

.coach-role {
    display: block;
    font-size: 1rem;
    color: var(--matisse-blue);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coach-info p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Latest News Section */
.latest-news-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.latest-news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(18, 97, 160, 0.02) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(56, 149, 211, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.latest-news-section .container {
    position: relative;
    z-index: 1;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--matisse-blue) 0%, var(--rich-light-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(18, 97, 160, 0.15);
    border-color: rgba(18, 97, 160, 0.2);
}

.news-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--matisse-blue);
    background: rgba(18, 97, 160, 0.1);
    padding: 5px 12px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
    display: block;
}

.news-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--deep-blue-1);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--matisse-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--rich-light-blue);
    gap: 12px;
}

.news-link i {
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(5px);
}

/* Responsive Styles for New Sections */
@media (max-width: 1024px) {
    .what-we-do-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .what-we-do-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coaches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .what-we-do-section,
    .services-section,
    .coaches-section,
    .latest-news-section {
        padding: 60px 0;
    }
    
    .what-we-do-title {
        font-size: 2rem;
    }
    
    .what-we-do-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .what-we-do-item {
        padding: 30px 25px;
    }
    
    .service-item {
        flex-direction: column;
        gap: 20px;
        padding: 30px 25px;
    }
    
    .service-number {
        font-size: 3rem;
        min-width: auto;
    }
    
    .service-details h3 {
        font-size: 1.5rem;
    }
    
    .coaches-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .coach-image {
        height: 250px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .what-we-do-section,
    .services-section,
    .coaches-section,
    .latest-news-section {
        padding: 50px 0;
    }
    
    .what-we-do-title {
        font-size: 1.6rem;
    }
    
    .what-we-do-description {
        font-size: 1rem;
    }
    
    .what-we-do-item {
        padding: 25px 20px;
    }
    
    .what-we-do-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .what-we-do-item h3 {
        font-size: 1.2rem;
    }
    
    .service-item {
        padding: 25px 20px;
    }
    
    .service-number {
        font-size: 2.5rem;
    }
    
    .service-details h3 {
        font-size: 1.3rem;
    }
    
    .service-details p {
        font-size: 1rem;
    }
    
    .coach-image {
        height: 200px;
    }
    
    .coach-image-placeholder {
        font-size: 3.5rem;
    }
    
    .coach-info {
        padding: 25px 20px;
    }
    
    .coach-info h3 {
        font-size: 1.3rem;
    }
    
    .news-card {
        padding: 25px 20px;
    }
    
    .news-card h3 {
        font-size: 1.2rem;
    }
}

/* Hide on Mobile (320px to 767px) */
@media (min-width: 320px) and (max-width: 767px) {
   .header-actions .btn-register {
        display: none;
    }
}