
:root {
    --primary-color: #0d1f3c; /* Dark Navy */
    --primary-dark-color: #0a1628; /* Deeper Navy */
    --secondary-color: #d4a854; /* Gold */
    --accent-color: #d4a854; /* Gold accent */
    --dark-color: #0d1f3c;
    --light-color: #f8fafc;
    --text-color: #374151;
    --border-color: #e5e7eb;
}

/* Base Styles */
* {
    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-color);
    background-color: #fff;
}

.bg-navy {
    background-color: var(--primary-color) !important;
}

.bg-primary {
    background: linear-gradient(135deg, #0a1628 0%, #132240 40%, #1a3060 70%, #0d1f3c 100%) !important;
}

.btn-warning {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-color);
    font-weight: 600;
    border-radius: 6px;
}

.btn-warning:hover {
    background-color: #c49a42;
    border-color: #c49a42;
    color: #fff;
}

.text-warning {
    color: var(--secondary-color) !important;
}

/* Header Styles */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.top-bar {
    padding: 8px 0;
    font-size: 14px;
    background-color: #0a1628;
}

.contact-info span {
    margin-right: 20px;
    color: #fff;
}

.contact-info i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.social-links .social-link {
    color: #fff;
    margin-left: 10px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-links .social-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Navigation */
.navbar {
    padding: 15px 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #fff !important;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 600;
    padding: 10px 15px !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.dropdown-menu {
    background-color: #0d1f3c;
    border: none;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    color: #fff;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(212, 168, 84, 0.15);
    color: #d4a854;
}

/* Modern Hero Section - Enhanced */
.modern-hero-section {
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modern-hero-section::before {
    display: none;
}

.modern-hero-section .carousel {
    height: 600px;
    position: relative;
    z-index: 2;
}

.slider-content {
    background: transparent;
    color: white;
    padding: 40px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.slider-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.slider-badge:hover {
    background: rgba(255, 255, 255, 0.25);
}

.slider-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.slider-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
    font-weight: 400;
}

.btn-slider-primary {
    background: #ffffff;
    color: var(--primary-color);
    border: 2px solid #ffffff;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-slider-primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-slider-primary i {
    transition: transform 0.3s ease;
}

.btn-slider-primary:hover i {
    transform: translateX(5px);
}

/* Enhanced Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.carousel-control-prev {
    left: 40px;
}

.carousel-control-next {
    right: 40px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev i,
.carousel-control-next i {
    color: white;
    font-size: 18px;
    font-weight: 500;
}

/* Enhanced Custom Indicators */
.carousel-indicators-custom {
    position: absolute;
    bottom: 30px;
    left: 50px;
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 10;
}

.carousel-indicators-custom button {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.carousel-indicators-custom button::before {
    display: none;
}

.carousel-indicators-custom button.active {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
}

.carousel-indicators-custom button:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.3);
}

/* Enhanced Hero Sidebar */
.hero-sidebar {
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.hero-sidebar::before {
    display: none;
}

.sidebar-section {
    text-align: center;
    padding: 15px;
    background: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-section::before {
    display: none;
}

.sidebar-section:hover {
    border-color: var(--secondary-color);
    background: #ffffff;
}

.sidebar-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-section:hover .sidebar-icon {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.sidebar-icon i {
    color: white;
    font-size: 28px;
    z-index: 2;
    position: relative;
}

.sidebar-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.sidebar-description {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 400;
}

.btn-sidebar-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-sidebar-outline:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Enhanced Responsive Design for Modern Hero */
@media (max-width: 991px) {
    /* Hide top bar on mobile/tablet */
    .top-bar {
        display: none;
    }
    
    /* Mobile Menu Styles */
    .navbar-collapse {
        background: var(--primary-navy);
        padding: 15px 10px;
        margin: 10px -12px -12px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    .navbar-nav {
        gap: 3px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 12px;
        border-radius: 6px;
        transition: all 0.3s ease;
        font-size: 14px;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 20px;
    }
    
    .dropdown-menu {
        background: rgba(0, 0, 0, 0.3);
        border: none;
        margin-top: 5px;
        padding: 5px;
        box-shadow: none;
    }
    
    .dropdown-item {
        padding: 8px 15px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 13px;
    }
    
    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.15);
        color: white;
        padding-left: 22px;
    }
    
    .dropdown-divider {
        border-color: rgba(255, 255, 255, 0.2);
        margin: 5px 0;
    }
    
    .navbar-toggler {
        border: 2px solid rgba(255, 255, 255, 0.3);
        padding: 8px 12px;
        border-radius: 6px;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
    }
    
    .navbar-toggler-icon {
        width: 24px;
        height: 24px;
    }
    
    /* Top Bar Mobile */
    .top-bar {
        padding: 10px 20px !important;
    }
    
    .top-bar .contact-info {
        font-size: 12px;
    }
    
    .top-bar .contact-info span {
        display: block;
        margin-bottom: 5px;
    }
    
    .social-links a {
        font-size: 14px;
        margin: 0 8px;
    }
    
    /* Logo adjustments */
    .navbar-brand img,
    .navbar-brand .logo-placeholder {
        height: 40px;
        width: 40px;
    }
    
    .navbar-brand span {
        font-size: 14px;
    }
    
    .modern-hero-section {
        min-height: auto;
    }
    
    .modern-hero-section .carousel {
        height: auto;
    }
    
    .slider-content {
        min-height: 450px;
        padding: 50px 0;
    }
    
    .slider-title {
        font-size: 2.4rem;
    }
    
    .slider-description {
        font-size: 1.1rem;
        max-width: 95%;
    }
    
    .hero-sidebar {
        padding: 40px 25px;
        gap: 35px;
        min-height: auto;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 20px;
    }
    
    .carousel-control-next {
        right: 20px;
    }
    
    .carousel-indicators-custom {
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation Refinements */
    .top-bar {
        display: none; /* Hide top bar on small mobile */
    }
    
    .navbar {
        padding: 8px 10px !important;
    }
    
    .navbar-brand {
        font-size: 11px;
    }
    
    .navbar-brand img,
    .navbar-brand .logo-placeholder {
        height: 35px;
        width: 35px;
        margin-right: 6px;
    }
    
    .navbar-collapse {
        margin: 8px -10px -8px;
        padding: 12px 8px;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .dropdown-menu {
        padding: 3px;
        margin-top: 3px;
    }
    
    .dropdown-item {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .dropdown-item:hover {
        padding-left: 18px;
    }
    
    .dropdown-divider {
        margin: 3px 0;
    }
    
    .slider-content {
        min-height: 400px;
        padding: 40px 0;
    }
    
    .slider-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .slider-description {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .slider-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .btn-slider-primary {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .hero-sidebar {
        margin-top: 0;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .sidebar-section {
        padding: 25px 20px;
    }
    
    .sidebar-icon {
        width: 60px;
        height: 60px;
    }
    
    .sidebar-icon i {
        font-size: 24px;
    }
    
    .sidebar-title {
        font-size: 1.2rem;
    }
    
    .sidebar-description {
        font-size: 14px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .carousel-indicators-custom {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Mobile Section Adjustments */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .news-card {
        margin-bottom: 25px;
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .sidebar-widget {
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .match-item, .result-item {
        padding: 18px;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .slider-content {
        min-height: 350px;
        padding: 30px 0;
    }
    
    .slider-title {
        font-size: 1.7rem;
        line-height: 1.2;
    }
    
    .slider-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .btn-slider-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-sidebar {
        padding: 25px 15px;
    }
    
    .sidebar-section {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .news-image {
        height: 160px;
    }
    
    .news-content {
        padding: 18px;
    }
    
    .news-title {
        font-size: 1.1rem;
    }
    
    .sidebar-widget {
        padding: 20px 15px;
    }
    
    .widget-title {
        font-size: 1.2rem;
    }
    
    .stat-item h3 {
        font-size: 2.2rem;
    }
    
    .stat-item p {
        font-size: 1rem;
    }
}

/* Enhanced Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Loading States Enhancement */
.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid var(--secondary-color);
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Squad Page Mobile Responsive */
@media (max-width: 991px) {
    .position-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
        gap: 10px;
    }
    
    .position-title i {
        font-size: 1.1rem;
    }
    
    .player-card {
        margin-bottom: 20px;
    }
    
    .player-image {
        height: 220px;
    }
    
    .player-info {
        padding: 15px;
    }
    
    .player-name {
        font-size: 1rem;
    }
    
    .player-position {
        font-size: 0.8rem;
    }
    
    .player-details {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .position-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
        padding: 0 10px 8px;
        gap: 8px;
        letter-spacing: 0.3px;
    }
    
    .position-title i {
        font-size: 1rem;
    }
    
    .position-group {
        padding: 0 10px;
        margin-bottom: 30px;
    }
    
    .player-card {
        margin-bottom: 15px;
    }
    
    .player-image {
        height: 200px;
    }
    
    .player-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: 8px;
        right: 8px;
    }
    
    .player-info {
        padding: 12px;
    }
    
    .player-name {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    
    .player-position {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    
    .player-details {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .player-details span {
        font-size: 0.75rem;
    }
    
    /* Tabs mobile */
    .nav-tabs .nav-link {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
    
    .nav-tabs .nav-link i {
        display: none;
    }
}

@media (max-width: 576px) {
    .position-title {
        font-size: 1rem;
        margin-bottom: 12px;
        padding: 0 5px 6px;
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .position-title i {
        font-size: 0.9rem;
    }
    
    .position-group {
        padding: 0 5px;
        margin-bottom: 25px;
    }
    
    .player-card {
        margin-bottom: 12px;
    }
    
    .player-image {
        height: 180px;
    }
    
    .player-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        top: 6px;
        right: 6px;
    }
    
    .player-info {
        padding: 10px;
    }
    
    .player-name {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    .player-position {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }
    
    .player-details {
        font-size: 0.75rem;
        margin-bottom: 8px;
        flex-direction: column;
        gap: 4px;
        align-items: center;
    }
    
    .player-details span {
        font-size: 0.7rem;
    }
    
    /* Button adjustments */
    .btn-sm {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    /* Tabs very small mobile */
    .nav-tabs .nav-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
        letter-spacing: 0.3px;
    }
}

/* Enhanced News Section Styles */
.news-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.news-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.news-image {
    position: relative;
    overflow: hidden;
    background: #f1f5f9;
}

.news-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.news-date {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--secondary-color);
    gap: 8px;
}

/* News Category Colors */
.news-category[data-category="futbol"],
.news-card:has(.news-category:contains("Futbol")) .news-category {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.news-category[data-category="basketbol"],
.news-card:has(.news-category:contains("Basketbol")) .news-category {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.news-category[data-category="voleybol"],
.news-card:has(.news-category:contains("Voleybol")) .news-category {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
}

.news-category[data-category="transfer"],
.news-card:has(.news-category:contains("Transfer")) .news-category {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.news-category[data-category="genel"],
.news-card:has(.news-category:contains("Genel")) .news-category {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
}

/* No News State */
.no-news {
    padding: 80px 20px;
    text-align: center;
}

.no-news i {
    color: #cbd5e1;
    margin-bottom: 20px;
}

.no-news h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

/* Section Header Enhancement */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    color: var(--primary-dark-color);
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Carousel Indicators Enhancement */
#modernSlider .carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
    z-index: 10;
}

#modernSlider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

#modernSlider .carousel-indicators button.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    width: 40px;
    border-radius: 6px;
}

#modernSlider .carousel-indicators button:hover {
    background-color: rgba(251, 191, 36, 0.8);
    transform: scale(1.1);
}

/* Youth Academy Registration Section Styles */
.youth-registration-section {
    position: relative;
    overflow: hidden;
}

.youth-registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dee2e6" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.youth-registration-content {
    position: relative;
    z-index: 2;
}

.youth-registration-section .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.youth-registration-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.youth-registration-section .section-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.youth-features .feature-item {
    padding: 10px 0;
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 500;
}

.youth-features .feature-item i {
    font-size: 1.2rem;
}

.youth-registration-actions .btn {
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.youth-registration-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.youth-registration-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border: none;
}

.youth-registration-actions .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.youth-registration-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.youth-stats-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    border: 1px solid #e9ecef;
}

.youth-stats-card .stats-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.youth-stats-card .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.youth-stats-card .stat-item {
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.youth-stats-card .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.youth-stats-card .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.youth-stats-card .stat-item:hover .stat-number {
    color: white;
}

.youth-stats-card .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.youth-stats-card .stat-item:hover .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design for Youth Registration Section */
@media (max-width: 992px) {
    .youth-registration-section .section-title {
        font-size: 2rem;
    }
    
    .youth-stats-card {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .youth-registration-section .section-title {
        font-size: 1.8rem;
    }
    
    .youth-registration-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .youth-stats-card .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .youth-stats-card .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .youth-registration-section {
        padding: 40px 0;
    }
    
    .youth-registration-section .section-title {
        font-size: 1.5rem;
    }
    
    .youth-registration-section .section-description {
        font-size: 1rem;
    }
    
    .youth-stats-card {
        padding: 20px;
    }
}

/* Youth Registration Form Styles */
.youth-registration-page {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: white;
    padding: 60px 0;
    margin: -30px -15px 0 -15px;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.registration-form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    padding: 40px;
    margin-top: 40px;
}

.form-section {
    border: 2px solid #f1f5f9;
    border-radius: 15px;
    padding: 30px;
    background: #fafbfc;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.form-section:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.1);
}

.section-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #e2e8f0;
}

.section-title {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.section-description {
    color: #64748b;
    margin-bottom: 0;
    font-size: 1rem;
}

.form-label {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-label.required::after {
    content: " *";
    color: #dc2626;
    font-weight: 900;
}

.form-control, .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.25);
    background: #fffef7;
}

.form-control.is-invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

.form-text {
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 5px;
    font-style: italic;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 3px solid #e2e8f0;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    border: none;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.btn-outline-secondary {
    border: 2px solid #64748b;
    color: #64748b;
    background: transparent;
}

.btn-outline-secondary:hover {
    background: #64748b;
    border-color: #64748b;
    color: white;
    transform: translateY(-2px);
}

.alert {
    border-radius: 12px;
    border: none;
    padding: 20px;
    margin-bottom: 30px;
    font-weight: 600;
}

.alert-success {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #166534;
    border-left: 5px solid #16a34a;
}

.alert-danger {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    color: #991b1b;
    border-left: 5px solid #dc2626;
}

.alert ul {
    padding-left: 20px;
}

/* File Upload Styling */
input[type="file"] {
    padding: 10px;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="file"]:hover {
    border-color: var(--secondary-color);
    background: #fffef7;
}

input[type="file"]:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .registration-form-container {
        padding: 25px;
        margin-top: 20px;
        border-radius: 15px;
    }
    
    .form-section {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .form-actions .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 40px 0;
        margin: -15px -15px 0 -15px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .registration-form-container {
        padding: 20px;
        border-radius: 10px;
    }
    
    .form-section {
        padding: 15px;
    }
    
    .section-title {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* Animation for form sections */
.form-section {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Header Styles */
.page-header {
    background: var(--primary-color) !important;
}

.page-header .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.page-header .breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Contact Page Styles */
.contact-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid #e2e8f0;
}

.contact-info-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    border-top: 4px solid var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.social-media-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    border-top: 4px solid var(--secondary-color);
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.social-link-large:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.map-placeholder {
    height: 400px;
    background: #e2e8f0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    background: rgba(30, 58, 138, 0.9);
    color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

/* Team Pages Styles */
.stat-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.stat-icon i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 10px 0;
}

.nav-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.nav-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.nav-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

/* Squad Styles */
.squad-section {
    background: #f8fafc;
    min-height: 100vh;
}

.position-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.position-title i {
    color: #2c3e50;
    font-size: 1.3rem;
    opacity: 0.8;
}

.player-card {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.player-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.player-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-number {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(44, 62, 80, 0.9);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.player-info {
    padding: 20px;
    text-align: center;
}

.player-name {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.player-position {
    color: #64748b;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.player-details {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #64748b;
}

/* Staff Card Variations - Corporate */
.staff-card .player-image {
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
}

.staff-card .player-details {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.staff-card .player-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
}

.staff-card .player-details i {
    color: #94a3b8;
    width: 16px;
}

/* Board Card Variations */
.board-card .player-image {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.board-card .player-number {
    display: none;
}

/* Instagram Feed Section */
.instagram-feed-section {
    background: #fafafa;
}

.instagram-post {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.instagram-post:hover {
    transform: translateY(-5px);
}

.instagram-image {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.instagram-post:hover .instagram-image {
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.instagram-caption {
    font-size: 0.85rem;
    line-height: 1.4;
}

.instagram-post-link:hover {
    text-decoration: none;
}

/* Custom Tabs Styling - Corporate */
.nav-tabs {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 2.5rem;
}

.nav-tabs .nav-link {
    color: #64748b;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-tabs .nav-link:hover {
    border-bottom-color: #2c3e50;
    color: #2c3e50;
    background: transparent;
}

.nav-tabs .nav-link.active {
    color: #2c3e50;
    border-bottom-color: #2c3e50;
    background: transparent;
}

.nav-tabs .nav-link i {
    margin-right: 0.5rem;
    opacity: 0.7;
}

/* Fixtures Styles */
.fixture-card {
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.fixture-card:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.match-date {
    text-align: center;
    min-width: 80px;
}

.match-date .day {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.match-date .month-year {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.match-date .time, .match-date .result {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    background: #f8fafc;
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: 5px;
}

.match-info {
    flex: 1;
}

.teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 15px;
}

.team-name {
    font-weight: 700;
    color: var(--primary-color);
}

.vs {
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
}

.score {
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 800;
}

.venue {
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.league-table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.our-team {
    background: rgba(30, 58, 138, 0.1);
    font-weight: bold;
}

/* Groups Styles */
.academy-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.group-card {
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.group-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.group-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}

.group-title {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 20px;
}

.group-info {
    background: #f8fafc;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: left;
}

.group-info p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.enrollment-info .info-item {
    text-align: center;
}

.enrollment-info i {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* News Styles */
.categories-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.categories-nav .btn {
    border-radius: 6px;
}

.news-article {
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    padding: 20px;
    transition: all 0.3s ease;
}

.news-article:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #64748b;
}

.news-title a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.news-title a:hover {
    color: var(--secondary-color);
}

.news-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.views-count {
    font-size: 0.9rem;
    color: #64748b;
}

.no-news {
    background: #f8fafc;
    border-radius: 8px;
    border: 2px dashed #e2e8f0;
}

.featured-news-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.featured-image {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.featured-title {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.featured-title a {
    color: var(--text-color);
    text-decoration: none;
}

.featured-title a:hover {
    color: var(--primary-color);
}

.featured-date {
    font-size: 0.8rem;
    color: #64748b;
}

/* Staff Styles */
.head-coach-profile {
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    border-top: 4px solid var(--secondary-color);
    padding: 40px;
}

.coach-photo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.coach-name {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 10px;
}

.coach-title {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.coach-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.detail-item {
    font-size: 0.9rem;
}

.category-title {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.staff-card {
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.staff-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.staff-photo {
    height: 200px;
    overflow: hidden;
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-info {
    padding: 20px;
    text-align: center;
}

.staff-name {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 5px;
}

.staff-position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.staff-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.9rem;
    color: #64748b;
}

.philosophy-item {
    text-align: center;
    padding: 20px;
}

.philosophy-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .contact-form-card,
    .contact-info-card,
    .social-media-card {
        padding: 25px 20px;
    }
    
    .categories-nav {
        justify-content: center;
    }
    
    .news-actions {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .teams {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .coach-details {
        grid-template-columns: 1fr;
    }
    
    .featured-news-item {
        flex-direction: column;
        text-align: center;
    }
    
    .featured-image {
        width: 100%;
        height: 150px;
    }
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 0 0 120px;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 30px;
}

.timeline-content {
    flex: 1;
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    position: relative;
}

.timeline-content h3 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 10px;
}

/* Trophy Styles */
.trophy-category {
    text-align: center;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    height: 100%;
    transition: all 0.3s ease;
}

.trophy-category:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.trophy-icon i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.trophy-title {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.trophy-count {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.trophy-years {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.year-badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.achievement-card {
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.achievement-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.achievement-icon i {
    font-size: 2.5rem;
}

.achievement-stat {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* Legend Cards */
.legend-card {
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.legend-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.legend-photo img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    margin-bottom: 15px;
}

.legend-info h4 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 5px;
}

.legend-position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.legend-years {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.legend-stats {
    display: flex;
    justify-content: space-around;
    font-size: 0.9rem;
    color: #64748b;
}

/* Records */
.record-item {
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.record-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.record-icon i {
    font-size: 2.5rem;
}

.record-holder {
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.record-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--secondary-color);
}

/* Stats Styles */
.stats-card {
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    border-top: 4px solid var(--primary-color);
    padding: 30px;
    height: 100%;
}

.stats-title {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.stat-label {
    font-weight: 600;
    color: var(--text-color);
}

.stat-value {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Form Display */
.form-display {
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    padding: 30px;
    text-align: center;
}

.form-matches {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.match-result {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 1.1rem;
}

.match-result.win {
    background: #16a34a;
}

.match-result.draw {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.match-result.loss {
    background: #dc2626;
}

.form-summary {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.form-stat {
    text-align: center;
}

.form-stat .label {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 5px;
}

.form-stat .value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Player Profile Styles */
.player-profile-card {
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    border-top: 4px solid var(--secondary-color);
    padding: 30px;
    text-align: center;
    height: 100%;
}

.player-photo-large {
    position: relative;
    margin-bottom: 25px;
}

.player-photo-large img {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    border: 4px solid var(--primary-color);
}

.jersey-number-large {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
}

.player-name-large {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 10px;
}

.player-position-large {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.player-details-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.detail-label {
    font-weight: 600;
    color: #64748b;
}

.detail-value {
    font-weight: 700;
    color: var(--primary-color);
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #e2e8f0;
}

.stat-box {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--secondary-color);
    background: #ffffff;
}

.stat-box .stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-box .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

.performance-card {
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    padding: 25px;
    height: 100%;
}

.performance-title {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.performance-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.perf-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.perf-label {
    font-weight: 600;
    color: var(--text-color);
}

.perf-value {
    font-weight: 800;
    color: var(--primary-color);
}

.performances-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.performance-item {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.performance-item:hover {
    border-color: var(--primary-color);
    background: #ffffff;
}

.match-info {
    flex: 1;
}

.match-info .match-date {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.match-info .match-opponent {
    color: #64748b;
    font-weight: 600;
}

.rating-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    font-size: 1.2rem;
}

.rating-6, .rating-7 {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.rating-8, .rating-9 {
    background: #16a34a;
}

.rating-10 {
    background: var(--primary-color);
}

.performance-stats-inline {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
}

.performance-stats-inline .stat-item {
    color: #64748b;
    font-weight: 600;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.highlight-item {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: var(--secondary-color);
    background: #ffffff;
    transform: translateY(-3px);
}

.highlight-icon i {
    font-size: 2rem;
}

.highlight-content h5 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 5px;
}

.highlight-content p {
    color: #64748b;
    margin: 0;
    font-weight: 600;
}

/* Photo Cards */
.photo-card {
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.photo-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.photo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.photo-caption {
    padding: 20px;
}

.photo-caption h5 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 10px;
}

.photo-caption p {
    color: #64748b;
    margin: 0;
}

/* Admin Placeholder Styles */
.admin-placeholder {
    text-align: center;
    padding: 60px 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 2px dashed #e2e8f0;
}

.admin-placeholder i {
    color: #94a3b8;
}

.admin-placeholder h3 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 15px;
}

.admin-placeholder p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 400px;
    margin: 0 auto;
}

.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.admin-page-header h1 {
    color: var(--primary-color);
    font-weight: 800;
    margin: 0;
}

.admin-content-card {
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    padding: 30px;
    margin-bottom: 30px;
}

.admin-tabs {
    display: flex;
    gap: 10px;
}

.tab-link {
    padding: 8px 16px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.setting-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.setting-card:hover {
    border-color: var(--secondary-color);
    background: #ffffff;
}

.setting-card h5 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.setting-card p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

/* Legal Pages Styles */
.legal-content {
    background: #f8fafc;
}

.legal-document {
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.legal-section p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-section li {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 8px;
    font-size: 1rem;
}

.legal-section .contact-info {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.legal-section .contact-info p {
    margin-bottom: 10px;
    font-weight: 600;
}

.legal-section .contact-info p:last-child {
    margin-bottom: 0;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-document {
        padding: 25px 20px;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 0.95rem;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-soft {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shadow-medium {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.shadow-strong {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) 1;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Focus States */
*:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

button:focus,
.btn:focus {
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.3);
}

/* High Contrast Support */
@media (prefers-contrast: high) {
    .slider-badge {
        background: rgba(255, 255, 255, 0.9);
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
    }
    
    .news-card {
        border: 2px solid #e2e8f0;
    }
    
    .sidebar-widget {
        border: 2px solid #e2e8f0;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .carousel {
        scroll-behavior: auto;
    }
}

/* Quick Stats */
.quick-stats {
    background: var(--primary-color);
}

.quick-stats::before {
    display: none;
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    margin: 10px 0;
}

/* Enhanced Section Styles */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #f1f5f9;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.section-title {
    color: var(--primary-dark-3color);
    font-weight: 800;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 0;
    margin: 0;
    letter-spacing: -0.02em;
}

.section-title::after {
    display: none;
}

/* Enhanced News Cards */
.news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #f1f5f9;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.news-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-date {
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
}

.news-title {
    color: var(--primary-color);
    font-weight: 800;
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.news-excerpt {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
}

.news-card .btn {
    background: var(--primary-color);
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.news-card .btn:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
}

/* Enhanced Sidebar Widgets */
.sidebar-widget {
    background: #f8fafc;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    margin-bottom: 35px;
    border: 2px solid #e2e8f0;
    border-top: 4px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.sidebar-widget::before {
    display: none;
}

.widget-title {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 25px;
    font-size: 1.4rem;
    border-bottom: none;
    padding-bottom: 0;
    letter-spacing: -0.01em;
}

/* Enhanced Match Items */
.match-item, .result-item {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 18px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.match-item::before, .result-item::before {
    display: none;
}

.match-item:hover, .result-item:hover {
    background: #ffffff;
    border-left-color: var(--primary-color);
    border-color: var(--secondary-color);
}

.match-date, .result-date {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.match-teams, .result-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-color);
}

.vs, .score {
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.match-venue {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

/* Instagram Feed Styles */
.instagram-feed-card {
    background: #ffffff;
    border-top: 4px solid #e1306c; /* Instagram pink */
    padding: 25px;

}

.instagram-feed-card .card-header {
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

.instagram-feed-card .card-title {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.3rem;
}

.instagram-posts {
    max-height: 400px;
    overflow-y: auto;
}

.instagram-post {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
}

.instagram-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.post-header {
    margin-bottom: 12px;
}

.profile-pic img {
    border: 2px solid #e2e8f0;
}

.username {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.post-time {
    font-size: 0.8rem;
}

.post-text {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

.post-image img {
    max-height: 150px;
    object-fit: cover;
}

.post-stats {
    font-size: 0.8rem;
}

.post-stats i {
    color: #64748b;
}

/* Announcements Styles */
.announcements-card {
    background: #ffffff;
    border-top: 4px solid var(--secondary-color);
    padding: 25px;
}

.announcements-card .card-header {
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

.announcements-card .card-title {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.3rem;
}

.announcements-list {
    overflow-y: auto;
}

.announcement-item {
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    border-color: var(--secondary-color);
    transform: translateX(3px);
}

.announcement-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.announcement-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
}

.announcement-text {
    color: var(--text-color);
    line-height: 1.4;
}

.badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sidebar Styles */
.hero-sidebar {
    background: #fff;

}

/* Responsive adjustments for sidebar */
@media (max-width: 991px) {
    .instagram-feed-card,
    .announcements-card {
        margin-bottom: 30px;
    }
    
    .instagram-posts,
    .announcements-list {
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .instagram-feed-card,
    .announcements-card {
        padding: 20px;
    }
    
    .post-image img {
        max-height: 120px;
    }
    
    .announcement-item {
        padding: 15px !important;
    }
}
.horizontal-match-calendar {

    padding: 40px 0;

}

/* Match Calendar Section */
.match-calendar-section {
    background: #ffffff;
    padding: 60px 0;
}

.match-calendar-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.match-calendar-section .section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color:var(--primary-dark-color);
    margin: 0;
    letter-spacing: 0.5px;
}

.match-calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.nav-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.nav-btn:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
}

.nav-filters {
    display: flex;
    gap: 15px;
    background: white;
    padding: 8px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.filter-btn {
    background: transparent;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    color: var(--primary-dark-color);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn.active,
.filter-btn:hover {
    background: #1f2937;
    color: white;
}

.matches-horizontal-container {
    position: relative;
    overflow: hidden;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.matches-horizontal-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.matches-horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.horizontal-match-card {
    background: white;
    padding: 20px;
    min-width: 320px;
    max-width: 320px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    flex-shrink: 0;
}

.horizontal-match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-dark-color), var(--primary-color));
    border-radius: 16px 16px 0 0;
}

.horizontal-match-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #d1d5db;
}

.horizontal-match-card.upcoming::before {
    background: linear-gradient(90deg, var(--primary-dark-color), var(--primary-color));
}

.horizontal-match-card.finished::before {
    background: linear-gradient(90deg, #6b7280, #9ca3af);
}

.match-status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.match-competition-badge {
    background: #f3f4f6;
    color: #374151;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid #e5e7eb;
}

.match-competition-badge i {
    font-size: 10px;
    color: var(--primary-dark-color);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.upcoming {
    background: var(--primary-dark-color);
}

.status-dot.finished {
    background: #9ca3af;
    animation: none;
}

.status-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
}

.match-date-section {
    text-align: center;
    margin-bottom: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
}

.match-datetime-section {
    background: #f9fafb;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 16px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.match-datetime-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
}

.match-datetime-info i {
    color: var(--primary-dark-color);
    font-size: 14px;
}

.match-time-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #1f2937;
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    margin: 0 auto;
}

.match-time-info i {
    font-size: 12px;
}

.match-day {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-dark-color);
    line-height: 1;
    margin-bottom: 5px;
}

.match-month {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.match-time-section {
    text-align: center;
    margin-bottom: 20px;
}

.match-time {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
}

.match-score-section {
    text-align: center;
    margin-bottom: 16px;
}

.final-score {
    background: #1f2937;
    color: white;
    padding: 8px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.teams-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
}

.team-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo:hover {
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

.team-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 13px;
    text-align: center;
    line-height: 1.3;
}

.vs-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vs-text {
    font-weight: 700;
    font-size: 11px;
    color: #9ca3af;
    letter-spacing: 1px;
}

.score-display {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1px;
}

.match-venue-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
}

.match-venue-section i {
    color: var(--primary-dark-color);
    font-size: 11px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(22, 163, 74, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .match-calendar-nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-filters {
        order: -1;
    }
    
    .horizontal-match-card {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
    }
    
    .team-logo {
        width: 50px;
        height: 50px;
    }
    
    .match-day {
        font-size: 2rem;
    }
    
    .team-name {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .horizontal-match-card {
        min-width: 250px;
        max-width: 250px;
        padding: 15px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .filter-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
}


.quick-stats {
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.quick-stats::before {
    display: none;
}

.stat-item {
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
}

.stat-item i {
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.stat-item h3 {
    font-size: 3rem;
    margin: 15px 0;
    font-weight: 900;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced CTA Section */
.cta-section {
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    display: none;
}

.cta-section h2,
.cta-section p {
    position: relative;
    z-index: 2;
}

.cta-section .btn {
    position: relative;
    z-index: 2;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.4s ease;
    text-transform: none;
    letter-spacing: 0.5px;
}

.cta-section .btn-dark {
    background: var(--dark-color);
    border: 2px solid var(--dark-color);
}

.cta-section .btn-dark:hover {
    background: transparent;
    color: var(--dark-color);
    border-color: var(--dark-color);
}

.cta-section .btn-outline-dark {
    border: 2px solid var(--dark-color);
    color: var(--dark-color);
    background: transparent;
}

.cta-section .btn-outline-dark:hover {
    background: var(--dark-color);
    color: white;
}

/* Call to Action */
.cta-section {
    background: var(--secondary-color);
}

.cta-section h2 {
    color: var(--dark-color) !important;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0d1f3c 0%, #1a3060 100%) !important;
    margin-top: 0;
    padding-top: 4rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer h5, .footer h6 {
    color: #d4a854 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 2;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #d4a854;
    padding-left: 4px;
}

.contact-info li {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-info i {
    color: #d4a854;
    width: 20px;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 8px 0 0 8px;
}

.newsletter-form .btn {
    border-radius: 0 8px 8px 0;
}

/* Footer Social Links */
.footer .social-links .social-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer .social-links .social-link:hover {
    color: #d4a854;
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
    
    .carousel-caption {
        bottom: 10%;
        padding: 20px;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 15px !important;
    }
    
    .top-bar {
        text-align: center;
    }
    
    .contact-info span {
        display: block;
        margin: 5px 0;
    }
}

@media (max-width: 576px) {
    .carousel-caption h2 {
        font-size: 1.2rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading States */
.loading {
    position: relative;
    color: transparent;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--secondary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}