:root {
    --primary: #c41e3a;
    --primary-dark: #a01830;
    --secondary: #1a1a2e;
    --secondary-light: #16213e;
    --accent: #ffd700;
    --light: #f8f9fa;
    --dark: #0a0a0a;
    --gray: #6c757d;
    --maroon: #4d0b12;
    --sky: #87e0ff;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: var(--light);
    padding-top: 140px;
    opacity: 1;
    visibility: visible;
}

/* Combined Navigation Bar - Desktop */
.desktop-nav-bar {
    background: var(--dark);
    padding: 0.5rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    border-bottom: 2px solid var(--primary);
}

.nav-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo-container img {
    height: 60px;
    width: auto;
}

.nav-logo-container .club-name {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-logo-container .club-name span {
    color: var(--primary);
}

/* Desktop Navigation Menu */
.desktop-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.desktop-menu .nav-item {
    position: relative;
}

.desktop-menu .nav-item > a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.desktop-menu .nav-item > a:hover,
.desktop-menu .nav-item > a.active {
    color: var(--primary);
}

.desktop-menu .nav-item .dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary);
    min-width: 200px;
    border-radius: 10px;
    padding: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1000;
}

.desktop-menu .nav-item:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-menu .nav-item .dropdown-menu-custom li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.desktop-menu .nav-item .dropdown-menu-custom li a:hover {
    background: var(--primary);
}

/* Mobile Top Bar */
.mobile-top-bar {
    display: none;
    background: var(--dark);
    padding: 0.5rem 5%;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    border-bottom: 2px solid var(--primary);
}

.mobile-top-bar img {
    height: 50px;
    width: auto;
}

.mobile-menu-toggle {
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: var(--maroon);
    z-index: 2000;
    transition: all 0.3s ease;
    padding: 60px 20px;
    overflow-y: auto;
}

.sidebar.active { 
    left: 0; 
}

.sidebar ul { 
    list-style: none; 
    padding: 0;
}

.sidebar .mobile-nav-item { 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
}

.mobile-link-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 15px 0;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0,0,0,0.2);
    padding-left: 15px;
}

.mobile-submenu.open { 
    max-height: 500px; 
}

.mobile-submenu li a {
    color: #ddd;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    font-size: 14px;
}

.close-sidebar { 
    color: white; 
    font-size: 2.5rem; 
    cursor: pointer; 
    position: absolute; 
    right: 20px; 
    top: 10px; 
}

.overlay { 
    position: fixed; 
    inset: 0; 
    background: rgba(0,0,0,0.5); 
    visibility: hidden; 
    opacity: 0; 
    z-index: 1500; 
    transition: all 0.3s ease; 
}

.overlay.active { 
    visibility: visible; 
    opacity: 1; 
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    padding: 60px 0;
    text-align: center;
    color: white;
    margin-top: 0;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-breadcrumb {
    font-size: 1.1rem;
}

.page-breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.page-breadcrumb a:hover {
    opacity: 1;
    color: var(--accent);
}

.page-breadcrumb span {
    color: var(--accent);
    font-weight: 600;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary);
}

.section-title.center {
    text-align: center;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-padding {
    padding: 80px 0;
}

/* Banner Slider */
.banner-slider {
    position: relative;
}

.banner-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(196, 30, 58, 0.4) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.banner-title {
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.banner-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.banner-btn:hover {
    background: transparent;
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

.slick-dots {
    bottom: 30px;
}

.slick-dots li button:before {
    color: white;
    font-size: 12px;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--primary);
    opacity: 1;
}

.slick-prev, .slick-next {
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slick-prev {
    left: 30px;
}

.slick-next {
    right: 30px;
}

.slick-prev:hover, .slick-next:hover {
    background: var(--primary);
}

.slick-prev:before, .slick-next:before {
    font-size: 20px;
}

/* News Card */
.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(196, 30, 58, 0.2);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
}

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

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    z-index: 2;
}

.news-content {
    padding: 1.5rem;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.news-excerpt {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Match Card */
.match-card {
    background: linear-gradient(135deg, var(--secondary), #2a2a3a);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2rem 0;
}

.team {
    text-align: center;
    flex: 1;
}

.team-logo {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    border: 4px solid var(--primary);
    overflow: hidden;
}

.team-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.vs {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    padding: 0 2rem;
}

.match-info {
    text-align: center;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.btn-ticket {
    background: var(--accent);
    color: var(--dark);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    text-decoration: none;
}

.btn-ticket:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

/* Results Table */
.results-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.result-item {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.result-item:hover {
    background: #f8f9fa;
    transform: translateX(10px);
}

.result-score {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.result-teams {
    flex: 1;
    padding: 0 2rem;
}

/* Standings Table */
.standings-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.standings-table table {
    margin-bottom: 0;
}

.standings-table th {
    background: var(--secondary);
    color: white;
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.standings-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.standings-table tr:last-child td {
    border-bottom: none;
}

.standings-table tr:hover td {
    background: #f8f9fa;
}

.chitipa-row {
    background: rgba(196, 30, 58, 0.05);
    font-weight: 700;
}

/* Player Cards */
.player-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.player-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(196, 30, 58, 0.3);
}

.player-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
}

.player-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
}

.player-info {
    padding: 1.5rem;
}

.player-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.player-role {
    color: var(--primary);
    font-weight: 600;
}

/* Partners Slider */
.partners-slider-section {
    background: white;
    padding: 3rem 0;
    overflow: hidden;
}

.partners-slider-container {
    width: 100%;
    position: relative;
}

.partners-slider {
    display: flex;
    animation: scrollPartners 30s linear infinite;
    width: max-content;
}

.partners-slider:hover {
    animation-play-state: paused;
}

@keyframes scrollPartners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-slide {
    flex: 0 0 auto;
    width: 200px;
    margin: 0 30px;
    text-align: center;
}

.partner-slide .partner-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.partner-slide .partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-slide p {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 600;
}

/* Results Page Specific Styles */
.results-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.results-filter select {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    min-width: 200px;
}

.result-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.1);
}

.result-card.win {
    border-left: 5px solid #28a745;
}

.result-card.draw {
    border-left: 5px solid #ffc107;
}

.result-card.loss {
    border-left: 5px solid #dc3545;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.result-competition {
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.result-date {
    color: #666;
    font-size: 0.9rem;
}

.result-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.result-team {
    display: flex;
    align-items: center;
    flex: 1;
}

.result-team.home {
    justify-content: flex-end;
}

.team-logo-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0 15px;
}

.team-name {
    font-weight: 600;
}

.result-score-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    padding: 0 30px;
}

.match-report {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    font-size: 0.95rem;
    color: #666;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Shop Page Styles */
.shop-filters {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    background: white;
    color: var(--dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(196, 30, 58, 0.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image i {
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.5;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(196, 30, 58, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: white;
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    transform: scale(1.1);
    background: var(--accent);
}

.product-info {
    padding: 20px;
}

.product-category {
    color: var(--gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.add-to-cart-btn {
    background: var(--secondary);
    color: white;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: var(--primary);
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    background: var(--secondary);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 700;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 5px;
    cursor: pointer;
}

.cart-footer {
    padding: 20px;
    border-top: 2px solid #e0e0e0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.checkout-btn {
    background: var(--primary);
    color: white;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: var(--secondary);
}

.cart-toggle {
    position: fixed;
    bottom: 20px;
    right: 80px;
    z-index: 999;
}

.cart-toggle-btn {
    background: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: var(--dark);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.size-selector {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.size-option {
    width: 40px;
    height: 40px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-option:hover,
.size-option.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* News Page Styles */
.news-filter .btn {
    border-radius: 50px;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.news-filter .btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.news-article {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.article-content {
    line-height: 1.8;
    color: #444;
}

.share-section {
    border-top: 2px solid #e0e0e0;
    padding-top: 30px;
}

.share-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.share-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    color: var(--dark);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-button:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Officials Page Styles */
.staff-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(196, 30, 58, 0.2);
}

.staff-image {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    border: 5px solid var(--accent);
    overflow: hidden;
}

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

.staff-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark);
}

.staff-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Team Tabs */
.team-tabs {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    gap: 20px;
}

.team-tab {
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.team-tab.senior,
.team-tab.reserve {
    background: transparent;
    color: var(--primary);
}

.team-tab.senior.active,
.team-tab.reserve.active {
    background: var(--primary);
    color: white;
}

.team-tab:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(196, 30, 58, 0.3);
}

/* Position Groups */
.position-group {
    margin-bottom: 50px;
}

.position-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary);
    position: relative;
}

.position-title::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
}

/* Squad Stats */
.squad-stats {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--accent);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Fixtures Tabs */
.fixtures-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.fixture-tab {
    padding: 15px 30px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.fixture-tab.active {
    color: var(--primary);
}

.fixture-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.fixture-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.fixture-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.1);
}

.fixture-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fixture-team {
    display: flex;
    align-items: center;
    flex: 1;
}

.fixture-team.home {
    justify-content: flex-end;
}

.fixture-team-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    margin: 0 15px;
}

.fixture-score {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    padding: 0 30px;
}

.fixture-info {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.fixture-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-live {
    background: #dc3545;
    color: white;
    animation: pulse 1.5s infinite;
}

.status-upcoming {
    background: var(--accent);
    color: var(--dark);
}

.status-finished {
    background: #28a745;
    color: white;
}

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

.match-week {
    margin-bottom: 40px;
}

.week-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

/* Standings Page Styles */
.standings-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.season-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.season-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.season-badge {
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
}

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

.standings-table-custom th {
    background: var(--secondary);
    color: white;
    font-weight: 600;
    padding: 15px;
    text-align: left;
}

.standings-table-custom td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.standings-table-custom tr:hover td {
    background: #f8f9fa;
}

.team-cell {
    display: flex;
    align-items: center;
}

.team-badge {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    margin-right: 10px;
}

.position-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.position-1 {
    background: gold;
    color: var(--dark);
}

.position-2 {
    background: silver;
    color: var(--dark);
}

.position-3 {
    background: #cd7f32;
    color: white;
}

.promotion-zone {
    background: rgba(40, 167, 69, 0.1);
}

.playoff-zone {
    background: rgba(255, 193, 7, 0.1);
}

.relegation-zone {
    background: rgba(220, 53, 69, 0.1);
}

.form-indicator {
    display: inline-flex;
    gap: 3px;
    margin-left: 10px;
}

.form-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
}

.form-w {
    background: #28a745;
}

.form-d {
    background: #ffc107;
}

.form-l {
    background: #dc3545;
}

.key-legend {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

/* Contact Page Styles */
.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(196, 30, 58, 0.15);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-icon i {
    font-size: 2rem;
    color: white;
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary);
}

.info-text {
    color: #666;
    margin-bottom: 5px;
}

.social-contact {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-circle {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-circle:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control-custom {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

textarea.form-control-custom {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(196, 30, 58, 0.3);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.alert-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #28a745;
}

.faq-section {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.faq-answer {
    color: #666;
}

.office-hours {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin-top: 30px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

/* Buy Ticket Page Styles */
.match-summary {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.ticket-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.ticket-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(196, 30, 58, 0.15);
}

.ticket-card.selected {
    border-color: var(--primary);
    background: #fff5f5;
}

.ticket-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ticket-icon i {
    font-size: 2rem;
    color: white;
}

.ticket-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ticket-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.ticket-price small {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.ticket-description {
    color: #666;
    font-size: 0.9rem;
}

.booking-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-input {
    width: 80px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px;
}

.total-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.total-row:last-child {
    border-bottom: none;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.btn-purchase {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-purchase:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(196, 30, 58, 0.3);
}

.seat-map {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stadium-section {
    margin-bottom: 30px;
}

.section-title-small {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary);
}

.seat-row {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
    justify-content: center;
}

.seat {
    width: 35px;
    height: 35px;
    background: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.seat.available {
    background: #d4edda;
    color: #155724;
}

.seat.selected {
    background: var(--primary);
    color: white;
}

.seat.taken {
    background: #f8d7da;
    color: #721c24;
    cursor: not-allowed;
}

.seat.vip {
    background: gold;
    color: var(--dark);
}

.seat-legend {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Info Cards for Reserve Team */
.info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(196, 30, 58, 0.15);
}

.info-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.info-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.info-card p {
    color: #666;
    margin-bottom: 0;
}

.alert-info {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border: none;
    border-radius: 15px;
    padding: 40px;
    color: var(--secondary);
}

.alert-info i {
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact i {
    color: var(--primary);
    margin-right: 10px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 1rem;
    z-index: 9999;
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.btn-cookie {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 5px;
    margin-left: 1rem;
    cursor: pointer;
}

/* Admin Login Button */
.admin-login {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.admin-login a {
    background: var(--dark);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.admin-login a:hover {
    background: var(--primary);
    transform: scale(1.1);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 3rem;
}

.page-item {
    margin: 0 5px;
}

.page-link {
    display: block;
    padding: 8px 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

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

/* Utility Classes */
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.bg-primary { background: var(--primary) !important; }
.bg-accent { background: var(--accent) !important; }

/* Mobile Responsive */
@media (max-width: 991px) {
    body {
        padding-top: 70px;
    }
    
    .desktop-nav-bar {
        display: none;
    }
    
    .mobile-top-bar {
        display: flex;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .banner-slide {
        height: 70vh;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
    }
    
    .match-teams {
        flex-direction: column;
    }
    
    .vs {
        padding: 1rem 0;
    }
    
    .team-logo {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .team-name {
        font-size: 1.2rem;
    }
    
    .fixture-teams {
        flex-direction: column;
        text-align: center;
    }
    
    .fixture-team {
        justify-content: center !important;
        margin: 10px 0;
    }
    
    .fixture-score {
        padding: 10px 0;
    }
    
    .result-body {
        flex-direction: column;
        text-align: center;
    }
    
    .result-team {
        justify-content: center !important;
        margin: 10px 0;
    }
    
    .result-score-large {
        padding: 10px 0;
        font-size: 2rem;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .squad-stats {
        padding: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .standings-table-custom {
        font-size: 0.85rem;
    }
    
    .standings-table-custom td {
        padding: 10px 5px;
    }
    
    .team-badge {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .player-image {
        height: 200px;
    }
    
    .staff-image {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }
    
    .standings-table {
        font-size: 0.85rem;
    }
    
    .standings-table th,
    .standings-table td {
        padding: 0.75rem 0.3rem;
    }
    
    .result-item {
        flex-direction: column;
        text-align: center;
    }
    
    .result-teams {
        padding: 0;
        margin-bottom: 0.5rem;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

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