/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}



#auth-nav {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    margin-left: auto;
}`n`n

/* Header and Navigation - Updated */
header, .header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
}

header.scrolled {
    background: rgba(15, 23, 42, 0.98) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6) !important;
}

.navbar {
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    gap: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.logo {
    height: 65px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: #f1f5f9;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

#auth-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}`n    `n    .nav-menu li, .nav-menu #auth-nav {`n        display: flex !important;`n        flex-direction: column;`n        width: 100%;`n    }`n`n

.nav-link { color: #e5e7eb !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid transparent;
}

.nav-link i {
    font-size: 1.1rem;
    color: #94a3b8 !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: #f1f5f9 !important;
}

.nav-link:hover i {
    color: #cbd5e1 !important;
    transform: scale(1.1);
}

.nav-link.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.65rem 1.5rem;
    font-weight: 700;
}

.nav-link.nav-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown > .nav-link i:last-child {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 0.25rem;
}

.nav-dropdown:hover > .nav-link i:last-child {
    transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #1e293b;
    min-width: 600px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-column h4 {
    color: #f1f5f9;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-column h4 i {
    margin-right: 0.5rem;
    color: #94a3b8;
}

.mega-menu-column a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-bottom: 0.25rem;
}

.mega-menu-column a i {
    margin-right: 0.5rem;
    color: #94a3b8 !important;
    font-size: 1.1rem;
}

.mega-menu-column a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #f1f5f9;
    transform: translateX(5px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #f1f5f9;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Main Content */
main {
    margin-top: 100px;
}

.section {
    display: none;
    min-height: calc(100vh - 80px);
}

.section.active {
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    backdrop-filter: blur(20px);
    padding: 6rem 2rem 4rem;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
}

.highlight {
    color: #94a3b8;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: rgba(30, 41, 59, 0.9);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-icon {
    font-size: 3rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.hero-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.hero-card p {
    color: #cbd5e1;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #cbd5e1;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #475569, #334155);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #334155, #1e293b);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #e5e7eb;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-full {
    width: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 4rem 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.lead {
    font-size: 1.25rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background: rgba(51, 65, 85, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #475569, #334155);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Teams and Players Grid */
/* Enhanced Player Card Styles */
.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.player-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(51, 65, 85, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.player-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.95), rgba(71, 85, 105, 0.95));
    border-color: rgba(255, 255, 255, 0.2);
}

.player-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.player-card p {
    color: #94a3b8;
    margin-bottom: 0.75rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.player-card p strong {
    color: #cbd5e1;
    font-weight: 600;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(44, 85, 48, 0.1);
    position: relative;
    z-index: 2;
}

.stats p {
    font-size: 0.875rem;
    color: #4a5568;
    margin: 0;
    text-align: center;
    font-weight: 600;
}

.membership-status {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* Enhanced Profile Styles */
.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    border: 6px solid #2c5530;
    box-shadow: 0 15px 40px rgba(44, 85, 48, 0.3);
    transition: all 0.3s ease;
}

.profile-header {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 2rem;
    border-radius: 24px;
    margin-bottom: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.profile-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.profile-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.profile-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.profile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.profile-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.profile-section h3 {
    color: #2c5530;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid rgba(44, 85, 48, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.profile-section h3 i {
    font-size: 1.25rem;
}

.profile-section p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Teams Grid Styles */
.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.98), rgba(30, 58, 33, 0.98));
}

.file-upload {
    margin-top: 1rem;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #2c5530;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.file-upload-btn:hover {
    background: #1e3a21;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
}

.membership-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.membership-status.approved {
    background: #d4edda;
    color: #155724;
}

.membership-status.rejected {
    background: #f8d7da;
    color: #721c24;
}

.membership-status.active {
    background: #d4edda;
    color: #155724;
}

.membership-status.pending {
    background: #fff3cd;
    color: #856404;
}

.membership-status.expired {
    background: #f8d7da;
    color: #721c24;
}

.admin-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.admin-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.admin-header {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.admin-header h2 i {
    color: #2c5530;
}

.admin-subtitle {
    font-size: 1.125rem;
    color: #4a5568;
    font-weight: 500;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    backdrop-filter: blur(20px);
    color: #1a202c;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5530, #1e3a21);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.2);
}

.stat-card .stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: #2c5530;
    text-shadow: 0 2px 4px rgba(44, 85, 48, 0.1);
}

.stat-card .stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.stat-card .stat-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #2c5530, #1e3a21);
    border-radius: 2px;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.stats p {
    font-size: 0.875rem;
    color: #4a5568;
    margin: 0;
    text-align: center;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-icon:hover {
    background: #2c5530;
    color: white;
    transform: translateY(-3px);
}

.admin-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-section h3 {
    color: #2c5530;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, #2c5530, #1e3a21);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image i {
    font-size: 3rem;
    color: white;
}

.news-content {
    padding: 2rem;
}

.news-date {
    font-size: 0.875rem;
    color: #2c5530;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0.5rem 0 1rem;
}

.news-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Contact Section */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5530, #1e3a21);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Auth Forms */
.auth-container {
    max-width: 450px;
    margin: 4rem auto;
}

.auth-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.auth-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.auth-form h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #1a202c;
    font-weight: 700;
    font-size: 2rem;
}

.auth-subtitle {
    text-align: center;
    color: #4a5568;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.auth-form input, .auth-form select, .auth-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    color: #1a202c;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.auth-form input:focus, .auth-form select:focus, .auth-form textarea:focus {
    outline: none;
    border-color: #2c5530;
    background: white;
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.auth-form input::placeholder {
    color: #a0aec0;
}

.auth-switch {
    text-align: center;
    margin-top: 2rem;
    color: #4a5568;
}

.auth-switch a {
    color: #2c5530;
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Payment Section */
.payment-options {
    max-width: 400px;
    margin: 0 auto 3rem;
}

.payment-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.payment-header {
    margin-bottom: 2rem;
}

.payment-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #2c5530;
    line-height: 1;
}

.payment-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.payment-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.payment-features i {
    color: #2c5530;
    font-size: 0.875rem;
}

.payment-form {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #0f172a;
    color: #e5e7eb;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
    color: #a0aec0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: white;
    margin: 2% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.close {
    color: #a0aec0;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #1a202c;
}

/* Team Detail Styles */
.team-detail {
    max-width: 800px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5530, #1e3a21);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.2);
}

.team-icon i {
    font-size: 2rem;
    color: white;
}

.team-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.team-category {
    font-size: 1.125rem;
    color: #2c5530;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    color: #2c5530;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-players {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.team-player {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.mini-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.team-player span {
    flex: 1;
    font-weight: 500;
    color: #1a202c;
}

.btn-remove {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    background: #c82333;
    transform: scale(1.1);
}

.add-player-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
}

.add-player-section h4 {
    color: #1a202c;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.add-player-section select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.add-player-section select:focus {
    outline: none;
    border-color: #2c5530;
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

/* Player Selection Styles */
.player-selection {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem;
    background: #f8fafc;
}

.player-checkbox {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.player-checkbox:hover {
    border-color: #2c5530;
    box-shadow: 0 2px 8px rgba(44, 85, 48, 0.1);
}

.player-checkbox input[type="checkbox"] {
    margin-right: 0.75rem;
    transform: scale(1.2);
}

.player-checkbox label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    flex: 1;
    margin: 0;
}

.checkbox-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.player-checkbox label span {
    font-weight: 500;
    color: #1a202c;
}

.player-checkbox label small {
    color: #4a5568;
    font-size: 0.875rem;
}

/* Elegant Team Card Styles */
.elegant-team {
    color: white !important;
    border: none !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.elegant-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.elegant-team:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

/* Team View Styles */
.team-view-container {
    max-width: 1000px;
    margin: 0 auto;
}

.team-hero {
    border-radius: 24px;
    padding: 3rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.team-hero-content {
    position: relative;
    z-index: 2;
}

.team-logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(20px);
}

.team-logo i {
    font-size: 2.5rem;
    color: white;
}

.team-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.team-category-large {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(10px);
}

.team-season {
    font-size: 1rem;
    opacity: 0.9;
}

.team-stats-hero {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.team-content {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.team-info-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    min-height: 500px;
}

.team-info-card {
    padding: 2rem;
}

.team-info-card:first-child {
    border-right: 1px solid #e2e8f0;
    background: #f8fafc;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid;
}

.info-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item.description {
    margin-top: 1rem;
}

.info-label {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1rem;
    color: #1a202c;
    font-weight: 500;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.player-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.player-item:hover {
    border-color: #2c5530;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.15);
}

.player-avatar-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.player-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e2e8f0;
}

.captain-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ffffff, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

.captain-badge i {
    font-size: 0.75rem;
    color: #b45309;
}

.player-info {
    text-align: center;
}

.player-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.player-position {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.player-stats-mini {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #6b7280;
}

.remove-player-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 28px;
    height: 28px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    opacity: 0;
}

.player-item:hover .remove-player-btn {
    opacity: 1;
}

.remove-player-btn:hover {
    background: #c82333;
    transform: scale(1.1);
}

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.add-player-section {
    border-top: 2px solid #e2e8f0;
    padding-top: 2rem;
}

.add-player-section h4 {
    color: #1a202c;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.add-player-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.player-select {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    background: white;
}

.player-select:focus {
    outline: none;
    border-color: #2c5530;
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.add-player-btn {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Custom Alert Styles */
.custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    min-width: 300px;
    max-width: 500px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: alertSlideIn 0.3s ease-out;
}

.custom-alert.success {
    border-top: 4px solid #10b981;
}

.custom-alert.error {
    border-top: 4px solid #ef4444;
}

.custom-alert.warning {
    border-top: 4px solid #f59e0b;
}

.custom-alert.info {
    border-top: 4px solid #ffffff;
}

.alert-header {
    padding: 1.5rem 2rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.success .alert-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.error .alert-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.warning .alert-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.info .alert-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.alert-message {
    color: #4a5568;
    line-height: 1.5;
}

.alert-actions {
    padding: 1rem 2rem 1.5rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.alert-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.alert-btn-primary {
    background: #2c5530;
    color: white;
}

.alert-btn-primary:hover {
    background: #1e3a21;
    transform: translateY(-1px);
}

.alert-btn-secondary {
    background: #e2e8f0;
    color: #4a5568;
}

.alert-btn-secondary:hover {
    background: #cbd5e0;
}

.alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes alertSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.team-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.team-theme-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.team-theme-icon i {
    font-size: 1.5rem;
    color: white;
}

.team-actions {
    display: flex;
    gap: 0.5rem;
}

.team-action-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.team-action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.team-action-btn.delete-btn:hover {
    background: rgba(220, 53, 69, 0.8);
}

.elegant-team h3 {
    color: white !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.team-category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.team-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.team-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.team-stats .stat-item i {
    width: 16px;
    text-align: center;
}

.team-description {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {`n    `n    #auth-nav {`n        display: none !important;`n    }`n`n`n    `n    `n    `n    .nav-dropdown {`n        position: static !important;`n    }`n    `n    .mega-menu, .social-dropdown {`n        position: static !important;`n        display: none;`n    }
    .team-info {
        grid-template-columns: 1fr;
    }
    
    .team-header {
        padding: 2rem 1rem;
    }
    
    .team-header h2 {
        font-size: 2rem;
    }
    
    .team-icon {
        width: 60px;
        height: 60px;
    }
    
    .team-icon i {
        font-size: 1.5rem;
    }
    
    .player-selection {
        max-height: 200px;
    }
    
    .player-checkbox {
        padding: 0.5rem;
    }
    
    .checkbox-avatar {
        width: 30px;
        height: 30px;
    }
}

/* Media Section Styles */
.media-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.media-tab {
    padding: 0.875rem 2rem;
    border: 2px solid #e2e8f0;
    background: white;
    color: #4a5568;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.media-tab.active {
    background: #2c5530;
    color: white;
    border-color: #2c5530;
}

.media-tab:hover {
    border-color: #2c5530;
    color: #2c5530;
}

.media-tab.active:hover {
    color: white;
}

.media-panel {
    display: none;
}

.media-panel.active {
    display: block;
}

.albums-grid, .videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.album-card, .video-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.album-card:hover, .video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.album-cover, .video-thumbnail {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5530, #1e3a21);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.2);
}

.album-cover i, .video-thumbnail i {
    font-size: 2rem;
    color: white;
}

.album-card h3, .video-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
    text-align: center;
    word-wrap: break-word;
    line-height: 1.3;
}

.album-card p, .video-card p {
    color: #4a5568;
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
    word-wrap: break-word;
}

/* CMS Styles */
.cms-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cms-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cms-subtitle {
    font-size: 1.125rem;
    color: #4a5568;
}

.cms-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cms-tab {
    padding: 0.875rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    color: #4a5568;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cms-tab.active {
    background: #2c5530;
    color: white;
    border-color: #2c5530;
}

.cms-panel {
    display: none;
}

.cms-panel.active {
    display: block;
}

.cms-section {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.cms-section h3 {
    color: #2c5530;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.content-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a202c;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #2c5530;
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.stats-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.media-upload {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.file-input {
    display: none;
}

.file-upload-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.file-upload-label:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    color: #495057;
}

.file-info {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.upload-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.upload-section h4 {
    margin-bottom: 1rem;
    color: #495057;
    font-weight: 600;
}

.file-upload-label {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #2c5530;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.file-upload-label:hover {
    background: #1e3a21;
    transform: translateY(-1px);
}

.file-upload-label i {
    margin-right: 0.5rem;
}

.media-items, .news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.media-item, .news-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.news-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-delete {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-delete:hover {
    background: #c82333;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.photo-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.photo-placeholder {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #6c757d;
    padding: 1rem;
    text-align: center;
}

.photo-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.media-tabs-sub {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.media-tab-sub {
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    background: white;
    color: #4a5568;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.media-tab-sub.active {
    background: #2c5530;
    color: white;
    border-color: #2c5530;
}

.media-items {
    display: none;
}

.media-items.active {
    display: block;
}

.media-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
}

.media-preview {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c5530, #1e3a21);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.media-info {
    flex: 1;
}

.media-info h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
}

.media-info p {
    margin: 0.25rem 0;
    font-size: 0.875rem;
    color: #4a5568;
}

.media-actions {
    display: flex;
    gap: 0.5rem;
}

.empty-media {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

.empty-media i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.photo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-2px);
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay h4 {
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.photo-overlay p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Fixtures Styles */
.fixtures-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fixtures-tab {
    padding: 12px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 6px;
    flex: 1;
    text-align: center;
}

.fixtures-tab.active {
    color: #fff;
    background: linear-gradient(135deg, #2c5aa0, #1e88e5);
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.3);
}

.fixtures-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.fixture-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #2c5aa0;
}

.fixture-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.fixture-card.completed {
    border-left-color: #4caf50;
}

.fixture-result {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.result-score {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.result-winner {
    font-size: 16px;
    margin-bottom: 5px;
}

.result-details {
    font-size: 14px;
    opacity: 0.9;
}

.update-result-btn {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.update-result-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.fixture-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.fixture-date .date {
    font-weight: 600;
    color: #1e293b;
}

.fixture-date .time {
    color: #64748b;
    font-size: 0.9rem;
}

.fixture-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.fixture-teams .team {
    flex: 1;
    text-align: center;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.fixture-teams .team.winner {
    color: #10b981;
}

.fixture-teams .vs {
    margin: 0 1rem;
    color: #64748b;
    font-weight: 500;
}

.fixture-teams .score {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff !important;
}

.fixture-details {
    display: flex;
    justify-content: space-between;
    color: #64748b;
    font-size: 0.9rem;
}

.fixture-details i {
    margin-right: 0.5rem;
}

.empty-fixtures {
    text-align: center;
    padding: 3rem;
    color: #64748b;
}

.empty-fixtures i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.status-scheduled {
    color: #ffffff !important;
    font-weight: 500;
}

.status-completed {
    color: #10b981;
    font-weight: 500;
}

.status-cancelled {
    color: #ef4444;
    font-weight: 500;
}

@media (max-width: 768px) {`n    `n    #auth-nav {`n        display: none !important;`n    }`n`n`n    `n    `n    `n    .nav-dropdown {`n        position: static !important;`n    }`n    `n    .mega-menu, .social-dropdown {`n        position: static !important;`n        display: none;`n    }
    .fixtures-grid {
        grid-template-columns: 1fr;
    }
    
    .fixture-teams {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fixture-teams .vs {
        margin: 0;
    }
    
    .fixture-details {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        width: 280px;
        text-align: left;
        transition: left 0.3s ease;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
        padding: 5rem 0 2rem;
        gap: 0;
        overflow-y: auto;
        z-index: 999;
        justify-content: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 0;
        justify-content: flex-start;
    }
    
    .nav-dropdown {
        position: static;
    }
    
    .nav-dropdown > .nav-link i:last-child {
        margin-left: auto;
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.active > .nav-link i:last-child {
        transform: rotate(180deg);
    }
    
    .mega-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(30, 41, 59, 0.8) !important;
        grid-template-columns: 1fr;
        padding: 0;
        margin: 0;
        min-width: auto;
        border: none !important;
        border-radius: 0;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    .nav-dropdown:hover .mega-menu {
        display: none !important;
    }
    
    .nav-dropdown.active .mega-menu {
        display: grid !important;
    }
    
    .mega-menu-column {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .mega-menu-column:last-child {
        border-bottom: none;
    }
    
    .mega-menu-column h4 {
        font-size: 0.75rem;
        padding: 0.5rem 1.5rem;
        margin: 0;
        background: transparent !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .mega-menu-column a {
        padding: 0.75rem 2rem;
        font-size: 0.85rem;
    }
    
    .social-dropdown {
        position: static;
        display: none;
        background: rgba(30, 41, 59, 0.8) !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0;
        padding: 0.5rem 0;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        backdrop-filter: none !important;
        min-width: auto !important;
    }
    
    .nav-dropdown:hover .social-dropdown {
        display: none !important;
    }
    
    .nav-dropdown.active .social-dropdown {
        display: block !important;
    }
    
    .social-dropdown a {
        display: flex !important;
        padding: 0.75rem 2rem;
        font-size: 0.85rem;
        width: 100%;
    }
    
    #auth-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        justify-content: space-around;
        padding: 0.75rem 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
        z-index: 1001;
        margin: 0;
    }
    
    #auth-nav .nav-link {
        flex-direction: column;
        padding: 0.5rem;
        font-size: 0.75rem;
        gap: 0.25rem;
        background: transparent;
        border: none;
    }
    
    #auth-nav .nav-link i {
        font-size: 1.25rem;
    }
    
    .nav-menu {
        padding-bottom: 5rem;
    }`n
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .teams-grid, .players-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 4rem 1rem 3rem;
    }
    
    .section-header {
        padding: 3rem 0 1rem;
    }
    
    .auth-form {
        padding: 2rem;
        margin: 2rem 1rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 2rem;
        width: 95%;
    }
    
    .payment-card {
        padding: 2rem 1.5rem;
    }
    
    /* Mobile profile adjustments */
    .profile-avatar {
        width: 100px;
        height: 100px;
    }
    
    .player-avatar {
        width: 70px;
        height: 70px;
    }
    
    .profile-header {
        padding: 2rem 1rem;
    }
    
    .profile-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .profile-section {
        padding: 1.5rem;
    }
    
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-card .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-card .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .stat-card .stat-icon i {
        font-size: 1.25rem;
    }
    
    .admin-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .admin-subtitle {
        font-size: 1rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stats p {
        text-align: left;
    }
}

/* People's Voice Styles */
.voices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.voice-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.voice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.voice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.voice-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.voice-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.voice-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    text-align: center;
}

.voice-position {
    color: #667eea;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.voice-comment {
    font-style: italic;
    color: #4a5568;
    line-height: 1.6;
    position: relative;
    padding: 0 1rem;
    margin: 0;
    text-align: center;
}

.voice-comment .fa-quote-left {
    position: absolute;
    top: -10px;
    left: 0;
    color: #667eea;
    opacity: 0.3;
    font-size: 1.5rem;
}

.voice-comment .fa-quote-right {
    position: absolute;
    bottom: -10px;
    right: 0;
    color: #667eea;
    opacity: 0.3;
    font-size: 1.5rem;
}

.empty-voices {
    text-align: center;
    padding: 4rem 2rem;
    color: #a0aec0;
}

.empty-voices i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.voice-preview {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.voice-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.voice-excerpt {
    color: #718096;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {`n    `n    #auth-nav {`n        display: none !important;`n    }`n`n`n    `n    `n    `n    .nav-dropdown {`n        position: static !important;`n    }`n    `n    .mega-menu, .social-dropdown {`n        position: static !important;`n        display: none;`n    }
    .voices-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .voice-card {
        padding: 1.5rem;
    }
    
    .voice-avatar {
        width: 70px;
        height: 70px;
    }
}

/* Availability System Styles */
.availability-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.availability-tab {
    padding: 0.875rem 2rem;
    border: 2px solid #e2e8f0;
    background: white;
    color: #4a5568;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.availability-tab.active {
    background: #2c5530;
    color: white;
    border-color: #2c5530;
}

.availability-tab:hover {
    border-color: #2c5530;
    color: #2c5530;
}

.availability-tab.active:hover {
    color: white;
}

.availability-panel {
    display: none;
}

.availability-panel.active {
    display: block;
}

/* Fixtures Availability Grid */
.fixtures-availability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.fixture-availability-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fixture-availability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.fixture-availability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.fixture-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.fixture-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.fixture-datetime {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

.fixture-datetime i {
    margin-right: 0.5rem;
    color: #2c5530;
}

.availability-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.availability-status.available {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.availability-status.unavailable {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.availability-status.maybe {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 2px solid rgba(245, 158, 11, 0.2);
}

.availability-status.pending {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
    border: 2px solid rgba(107, 114, 128, 0.2);
}

.fixture-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.detail-item i {
    color: #2c5530;
    width: 16px;
    text-align: center;
}

.availability-actions {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.btn-availability {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-submit-availability {
    background: linear-gradient(135deg, #2c5530, #1e3a21);
    color: white;
}

.btn-submit-availability:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
}

.btn-view-responses {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-view-responses:hover {
    background: #ffffff;
    color: white;
    transform: translateY(-2px);
}

/* Availability Modal Styles */
#availability-modal .modal-content {
    max-width: 500px;
    border-radius: 24px;
    padding: 2.5rem;
}

#availability-modal h2 {
    color: #1a202c;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.availability-fixture-info {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid rgba(44, 85, 48, 0.1);
}

.availability-fixture-info h4 {
    color: #2c5530;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.fixture-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    font-size: 0.9rem;
    color: #4a5568;
}

.fixture-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fixture-info-item i {
    color: #2c5530;
    width: 16px;
}

.availability-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.availability-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.availability-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.availability-option:hover::before {
    opacity: 1;
}

.availability-option input[type="radio"] {
    display: none;
}

.availability-option.available {
    border-color: rgba(16, 185, 129, 0.3);
}

.availability-option.unavailable {
    border-color: rgba(239, 68, 68, 0.3);
}

.availability-option.maybe {
    border-color: rgba(245, 158, 11, 0.3);
}

.availability-option input[type="radio"]:checked + .option-icon {
    transform: scale(1.2);
}

.availability-option:has(input[type="radio"]:checked) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.availability-option.available:has(input[type="radio"]:checked) {
    background: rgba(16, 185, 129, 0.05);
    border-color: #10b981;
}

.availability-option.unavailable:has(input[type="radio"]:checked) {
    background: rgba(239, 68, 68, 0.05);
    border-color: #ef4444;
}

.availability-option.maybe:has(input[type="radio"]:checked) {
    background: rgba(245, 158, 11, 0.05);
    border-color: #f59e0b;
}

.option-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.available .option-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.unavailable .option-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.maybe .option-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.availability-option span:last-child {
    font-weight: 600;
    color: #1a202c;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Availability History Styles */
.availability-history {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.availability-history-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.availability-history-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.history-fixture {
    flex: 1;
}

.history-fixture h4 {
    color: #1a202c;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.history-date {
    color: #4a5568;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.history-status {
    position: relative;
    z-index: 2;
}

.history-reason {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 8px;
    border-left: 4px solid #2c5530;
    position: relative;
    z-index: 2;
}

.history-reason strong {
    color: #2c5530;
    font-weight: 600;
}

.history-reason p {
    margin: 0.5rem 0 0 0;
    color: #4a5568;
    font-style: italic;
}

/* Admin Overview Styles */
.admin-availability-overview {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.admin-fixture-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.admin-fixture-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.admin-fixture-info h3 {
    color: #1a202c;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.admin-fixture-details {
    display: flex;
    gap: 2rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.admin-fixture-actions {
    display: flex;
    gap: 1rem;
}

.btn-send-request {
    background: linear-gradient(135deg, #ffffff, #2563eb);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-send-request:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-send-report {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-send-report:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.availability-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.summary-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
}

.summary-card.available::before {
    background: linear-gradient(135deg, #10b981, #059669);
}

.summary-card.unavailable::before {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.summary-card.maybe::before {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.summary-card.no-response::before {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.summary-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.summary-card.available .summary-number {
    color: #10b981;
}

.summary-card.unavailable .summary-number {
    color: #ef4444;
}

.summary-card.maybe .summary-number {
    color: #f59e0b;
}

.summary-card.no-response .summary-number {
    color: #6b7280;
}

.summary-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.responses-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.response-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.response-section h4 {
    color: #1a202c;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.response-section.available h4 {
    color: #10b981;
}

.response-section.unavailable h4 {
    color: #ef4444;
}

.response-section.maybe h4 {
    color: #f59e0b;
}

.response-section.no-response h4 {
    color: #6b7280;
}

.player-response {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.player-response:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.player-response-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.player-response-info {
    flex: 1;
}

.player-response-name {
    font-weight: 600;
    color: #1a202c;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.player-response-position {
    color: #6b7280;
    font-size: 0.8rem;
}

.player-response-reason {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #4a5568;
    font-style: italic;
    background: #f8fafc;
    padding: 0.5rem;
    border-radius: 6px;
    border-left: 3px solid #e2e8f0;
}

/* Email Modal Styles */
#email-modal .modal-content {
    max-width: 600px;
}

#email-modal h2 {
    color: #1a202c;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

#email-form .form-group {
    margin-bottom: 1.5rem;
}

#email-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a202c;
}

#email-form input,
#email-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #f8fafc;
}

#email-form input:focus,
#email-form textarea:focus {
    outline: none;
    border-color: #ffffff !important;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

/* Dashboard Styles */
.dashboard-header {
    background: linear-gradient(135deg, #2c5530, #1e3a21);
    color: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.dashboard-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.dashboard-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-welcome h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dashboard-welcome p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.dashboard-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Statistics Highlights Section */
.stats-highlights-section {
    margin-bottom: 3rem;
}

.highlights-header {
    text-align: center;
    margin-bottom: 2rem;
}

.highlights-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.highlights-header h2 i {
    color: #f59e0b;
    font-size: 1.75rem;
}

.highlights-header p {
    color: #4a5568;
    font-size: 1.1rem;
    font-weight: 500;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
}

.highlight-card.batting::before {
    background: linear-gradient(135deg, #ffffff, #2563eb);
}

.highlight-card.bowling::before {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.highlight-card.fielding::before {
    background: linear-gradient(135deg, #10b981, #059669);
}

.highlight-card.matches::before {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.highlight-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.highlight-card.batting .highlight-icon {
    background: linear-gradient(135deg, #ffffff, #2563eb);
}

.highlight-card.bowling .highlight-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.highlight-card.fielding .highlight-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.highlight-card.matches .highlight-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.highlight-content {
    flex: 1;
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #1a202c;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight-label {
    font-size: 1rem;
    font-weight: 600;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.highlight-detail {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.highlight-trend {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.highlight-trend i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.dashboard-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2c5530, #1e3a21);
}

.dashboard-card h3 {
    color: #1a202c;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dashboard-card h3 i {
    color: #2c5530;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-box {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.stat-box-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2c5530;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-box-label {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.upcoming-matches {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.upcoming-match {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.upcoming-match:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.match-teams {
    font-weight: 600;
    color: #1a202c;
    font-size: 1.1rem;
}

.match-date {
    color: #4a5568;
    font-size: 0.9rem;
}

.match-details {
    display: flex;
    justify-content: space-between;
    color: #6b7280;
    font-size: 0.85rem;
}

.performance-chart {
    height: 300px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 1.1rem;
    border: 1px solid #e2e8f0;
}

/* Empty States */
.empty-availability {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
}

.empty-availability i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.empty-availability h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #4a5568;
}

.empty-availability p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Player Profile System Styles */
.player-profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Player Profile Header */
.player-profile-header {
    background: linear-gradient(135deg, #2c5530, #1e3a21);
    color: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.player-profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.player-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.player-profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.player-basic-info h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.player-role-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(10px);
}

.player-team-info {
    display: flex;
    gap: 2rem;
    font-size: 1rem;
    opacity: 0.9;
}

.player-team-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Desktop Layout */
.player-profile-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Left Column */
.player-left-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.player-info-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.player-info-card h3 {
    color: #2c5530;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
}

.player-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.player-detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.9rem;
}

.detail-value {
    font-weight: 500;
    color: #1a202c;
}

/* Season/Career Stats Cards */
.stats-summary-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stats-summary-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(44, 85, 48, 0.1);
}

.stats-summary-card.batting {
    border-left: 4px solid #ffffff;
}

.stats-summary-card.bowling {
    border-left: 4px solid #ef4444;
}

.stats-summary-card h4 {
    color: #1a202c;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stats-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    font-size: 0.85rem;
}

.stats-summary-item {
    text-align: center;
}

.stats-summary-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c5530;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stats-summary-label {
    color: #4a5568;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

/* Right Column - Tabs */
.player-right-column {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.player-stats-tabs {
    display: flex;
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
}

.player-stats-tab {
    flex: 1;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #4a5568;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.player-stats-tab.active {
    color: #2c5530;
    background: white;
    border-bottom-color: #2c5530;
}

.player-stats-tab:hover {
    color: #2c5530;
    background: rgba(44, 85, 48, 0.05);
}

.player-stats-content {
    padding: 2rem;
}

.stats-tab-panel {
    display: none;
}

.stats-tab-panel.active {
    display: block;
}

/* Stats Tables */
.stats-section {
    margin-bottom: 2rem;
}

.stats-section:last-child {
    margin-bottom: 0;
}

.stats-section h4 {
    color: #1a202c;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.stats-table th {
    background: #2c5530;
    color: white;
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-table td {
    padding: 0.875rem 0.75rem;
    border-bottom: 1px solid #e2e8f0;
    color: #1a202c;
    font-weight: 500;
}

.stats-table tr:last-child td {
    border-bottom: none;
}

.stats-table tr:hover {
    background: rgba(44, 85, 48, 0.05);
}

/* Format Breakdown Table */
.format-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.format-table th {
    background: linear-gradient(135deg, #2c5530, #1e3a21);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.format-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    color: #1a202c;
    font-weight: 500;
}

.format-table tr:nth-child(even) {
    background: #f8fafc;
}

.format-table tr:hover {
    background: rgba(44, 85, 48, 0.05);
}

.format-name {
    font-weight: 700 !important;
    color: #2c5530 !important;
    text-align: left !important;
}

/* Recent Matches */
.recent-matches-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-match-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.recent-match-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.match-opposition {
    font-weight: 700;
    color: #1a202c;
    font-size: 1.1rem;
}

.match-date {
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

.match-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.match-stat {
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.match-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c5530;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.match-stat-label {
    font-size: 0.8rem;
    color: #4a5568;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.match-result {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.match-result.won {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.match-result.lost {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.match-result.draw {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Progress Bars for Stats */
.stat-progress {
    margin-top: 1rem;
}

.progress-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.progress-label {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.9rem;
}

.progress-value {
    font-weight: 700;
    color: #2c5530;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #2c5530, #1e3a21);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Empty States */
.empty-stats {
    text-align: center;
    padding: 3rem 2rem;
    color: #6b7280;
}

.empty-stats i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.empty-stats h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.empty-stats p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {`n    `n    #auth-nav {`n        display: none !important;`n    }`n`n`n    `n    `n    `n    .nav-dropdown {`n        position: static !important;`n    }`n    `n    .mega-menu, .social-dropdown {`n        position: static !important;`n        display: none;`n    }
    .player-profile-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .player-header-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .player-profile-image {
        width: 100px;
        height: 100px;
    }
    
    .player-basic-info h1 {
        font-size: 2rem;
    }
    
    .player-team-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stats-summary-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .player-stats-tabs {
        flex-direction: column;
    }
    
    .player-stats-tab {
        text-align: center;
    }
    
    .stats-table {
        font-size: 0.85rem;
    }
    
    .stats-table th,
    .stats-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .format-table {
        font-size: 0.85rem;
    }
    
    .format-table th,
    .format-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .match-details {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .recent-match-item {
        padding: 1rem;
    }
    
    .match-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Player Cards Enhancement for Profile Links */
.player-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.player-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.view-profile-btn {
    background: linear-gradient(135deg, #2c5530, #1e3a21);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.view-profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
}

/* Responsive Design for Availability */
@media (max-width: 768px) {`n    `n    #auth-nav {`n        display: none !important;`n    }`n`n`n    `n    `n    `n    .nav-dropdown {`n        position: static !important;`n    }`n    `n    .mega-menu, .social-dropdown {`n        position: static !important;`n        display: none;`n    }
    .availability-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .availability-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .fixtures-availability-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fixture-availability-card {
        padding: 1.5rem;
    }
    
    .fixture-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .fixture-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .availability-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .availability-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .availability-option {
        flex-direction: row;
        padding: 1rem;
        text-align: left;
    }
    
    .option-icon {
        margin-bottom: 0;
        margin-right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .availability-summary {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .summary-card {
        padding: 1rem;
    }
    
    .summary-number {
        font-size: 2rem;
    }
    
    .responses-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dashboard-header-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .dashboard-avatar {
        width: 80px;
        height: 80px;
    }
    
    .dashboard-welcome h1 {
        font-size: 2rem;
    }
    
    /* Mobile Highlights Styles */
    .highlights-header h2 {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .highlight-number {
        font-size: 2rem;
    }
    
    .highlight-label {
        font-size: 0.9rem;
    }
    
    .highlight-detail {
        font-size: 0.8rem;
    }
    
    .highlight-trend {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stat-box {
        padding: 1rem;
    }
    
    .stat-box-number {
        font-size: 1.5rem;
    }
    
    .admin-fixture-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .admin-fixture-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .btn-send-request,
    .btn-send-report {
        width: 100%;
        justify-content: center;
    }
}

.social-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.social-icon-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #2c5530;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-icon-nav:hover {
    background: #1e3a21;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

.footer .social-icon {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer .social-icon:hover {
    background: white;
    color: #2c5530;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.social-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e293b;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    padding: 0.5rem 0;
    min-width: 180px;
    display: none;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-dropdown:hover .social-dropdown {
    display: block;
}

.social-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-dropdown a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #f1f5f9;
}

.social-dropdown a i {
    width: 20px;
    text-align: center;
}








/* Stylish Navigation Override */
.nav-link {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
}

.nav-link i {
    color: #ffffff !important;
    font-size: 1.3rem !important;
    filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.5)) !important;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}

.nav-link:hover i {
    transform: scale(1.2) !important;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.7)) !important;
}








/* Force White Text for Navigation */
.nav-link, .nav-link:visited, .nav-link:link {
    color: #ffffff !important;
}


/* Classic Navigation Theme - Remove Underline */
.nav-link, .nav-link:hover, .nav-link:visited, .nav-link:link, .nav-link:active {
    color: #ffffff !important;
    text-decoration: none !important;
}

.nav-link i {
    color: #ffffff !important;
    font-size: 1.2rem !important;
    filter: none !important;
    margin-right: 0.5rem !important;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3) !important;
}

.nav-link:hover i {
    transform: scale(1.1) !important;
    filter: none !important;
}


/* Enhanced Classic Icon Theme */
.nav-link {
    background: transparent !important;
    border: none !important;
    padding: 0.6rem 1rem !important;
}

.nav-link i {
    opacity: 0.9 !important;
    transition: all 0.3s ease !important;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
}

.nav-link:hover i {
    opacity: 1 !important;
    transform: translateY(-2px) !important;
}


/* Elegant Submenu Theme */
.mega-menu, .social-dropdown {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98)) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.mega-menu-column h4 {
    background: linear-gradient(135deg, #2c5530, #1e3a21) !important;
    color: white !important;
    padding: 0.75rem 1rem !important;
    margin: -0.5rem -0.5rem 1rem -0.5rem !important;
    border-radius: 8px !important;
}

.mega-menu-column a, .social-dropdown a {
    border-left: 3px solid transparent !important;
    transition: all 0.3s ease !important;
}

.mega-menu-column a:hover, .social-dropdown a:hover {
    background: linear-gradient(90deg, rgba(44, 85, 48, 0.1), transparent) !important;
    border-left-color: #2c5530 !important;
    padding-left: 1.25rem !important;
}

.mega-menu-column a i, .social-dropdown a i {
    color: #2c5530 !important;
    font-size: 1.2rem !important;
}


/* Gray Shade Submenu Override */
.mega-menu, .social-dropdown {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.98), rgba(51, 65, 85, 0.98)) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(148, 163, 184, 0.3) !important;
}

.mega-menu-column h4 {
    background: linear-gradient(135deg, #64748b, #475569) !important;
    color: #f1f5f9 !important;
    padding: 0.75rem 1rem !important;
    margin: -0.5rem -0.5rem 1rem -0.5rem !important;
    border-radius: 8px !important;
    border-bottom: 2px solid rgba(148, 163, 184, 0.3) !important;
}

.mega-menu-column a, .social-dropdown a {
    border-left: 3px solid transparent !important;
    transition: all 0.3s ease !important;
    color: #e2e8f0 !important;
}

.mega-menu-column a:hover, .social-dropdown a:hover {
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.2), transparent) !important;
    border-left-color: #94a3b8 !important;
    padding-left: 1.25rem !important;
    color: #f8fafc !important;
}

.mega-menu-column a i, .social-dropdown a i {
    color: #cbd5e1 !important;
    font-size: 1.2rem !important;
}


/* Elegant Team Cards - Web Application Style */
.team-card {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.95), rgba(51, 65, 85, 0.95)) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(148, 163, 184, 0.3) !important;
    color: #f1f5f9 !important;
}

.team-card:hover {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.98), rgba(71, 85, 105, 0.98)) !important;
    border-color: rgba(203, 213, 225, 0.4) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.team-card h3 {
    color: #f8fafc !important;
}

.team-card p {
    color: #cbd5e1 !important;
}

.team-card::before {
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.1) 0%, transparent 50%) !important;
}


/* Fix Player Cards Alignment */
.players-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
}

.player-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    height: 100% !important;
}

.player-card h3,
.player-card p,
.player-card .stats {
    width: 100% !important;
}


/* Fix Player Card Images */
.player-card img,
.player-avatar {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    margin: 0 auto 1rem !important;
    display: block !important;
}


/* Fixtures Gray Theme */
.fixtures-tabs {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.9), rgba(51, 65, 85, 0.9)) !important;
    border-bottom: 2px solid rgba(148, 163, 184, 0.3) !important;
}

.fixtures-tab {
    color: #cbd5e1 !important;
}

.fixtures-tab.active {
    background: linear-gradient(135deg, #64748b, #475569) !important;
    color: #f8fafc !important;
    box-shadow: 0 2px 8px rgba(100, 116, 139, 0.4) !important;
}

.fixture-card {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.95), rgba(51, 65, 85, 0.95)) !important;
    border-left: 4px solid #64748b !important;
    color: #e2e8f0 !important;
}

.fixture-card.completed {
    border-left-color: #94a3b8 !important;
}

.fixture-card:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3) !important;
}

.fixture-date .date {
    color: #f1f5f9 !important;
}

.fixture-date .time {
    color: #cbd5e1 !important;
}

.fixture-teams .team {
    color: #f8fafc !important;
}

.fixture-teams .vs {
    color: #94a3b8 !important;
}

.fixture-details {
    color: #cbd5e1 !important;
}


/* Fixture Result Gray Theme */
.fixture-result {
    background: linear-gradient(135deg, #64748b, #475569) !important;
    color: #f8fafc !important;
    border: 1px solid rgba(148, 163, 184, 0.3) !important;
}

.result-score,
.result-winner,
.result-details {
    color: #f1f5f9 !important;
}

.update-result-btn {
    background: linear-gradient(135deg, #94a3b8, #64748b) !important;
}

.update-result-btn:hover {
    box-shadow: 0 4px 12px rgba(148, 163, 184, 0.4) !important;
}


/* Media Page Gray Theme */
.media-tab.active {
    background: #64748b !important;
    border-color: #64748b !important;
}

.media-tab:hover {
    border-color: #64748b !important;
    color: #64748b !important;
}

.album-cover, .video-thumbnail {
    background: linear-gradient(135deg, #64748b, #475569) !important;
}

.album-card:hover, .video-card:hover {
    box-shadow: 0 20px 40px rgba(100, 116, 139, 0.3) !important;
}


/* News Cards Gray Theme */
.news-image {
    background: linear-gradient(135deg, #64748b, #475569) !important;
}

.news-date {
    color: #64748b !important;
}

.news-card:hover {
    box-shadow: 0 20px 40px rgba(100, 116, 139, 0.3) !important;
}


/* Voices Cards Gray Theme */
.voice-card::before {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%) !important;
}

.voice-avatar {
    border: 4px solid #64748b !important;
    box-shadow: 0 4px 15px rgba(100, 116, 139, 0.3) !important;
}

.voice-position {
    color: #64748b !important;
}

.voice-comment .fa-quote-left,
.voice-comment .fa-quote-right {
    color: #64748b !important;
}

.voice-card:hover {
    box-shadow: 0 20px 40px rgba(100, 116, 139, 0.3) !important;
}


/* Contact Cards Gray Theme */
.contact-icon {
    background: linear-gradient(135deg, #64748b, #475569) !important;
}

.contact-card:hover {
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.3) !important;
}


/* Profile Page Gray Theme */
.profile-header {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%) !important;
}

.profile-section h3 {
    color: #64748b !important;
    border-bottom: 3px solid rgba(100, 116, 139, 0.2) !important;
}

.profile-avatar {
    border: 6px solid #64748b !important;
    box-shadow: 0 15px 40px rgba(100, 116, 139, 0.3) !important;
}

.player-profile-header {
    background: linear-gradient(135deg, #64748b, #475569) !important;
}

.dashboard-header {
    background: linear-gradient(135deg, #64748b, #475569) !important;
}

.stat-card .stat-icon {
    background: linear-gradient(135deg, #64748b, #475569) !important;
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.3) !important;
}

.stat-card .stat-number {
    color: #64748b !important;
}

.stat-card:hover {
    box-shadow: 0 20px 50px rgba(100, 116, 139, 0.3) !important;
}


/* Change Photo Button Gray Theme */
.file-upload-btn {
    background: #64748b !important;
}

.file-upload-btn:hover {
    background: #475569 !important;
    box-shadow: 0 4px 15px rgba(100, 116, 139, 0.3) !important;
}


/* Availability Page Gray Theme */
.availability-tab.active {
    background: #64748b !important;
    border-color: #64748b !important;
}

.availability-tab:hover {
    border-color: #64748b !important;
    color: #64748b !important;
}

.btn-submit-availability {
    background: linear-gradient(135deg, #64748b, #475569) !important;
}

.btn-submit-availability:hover {
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.3) !important;
}

.btn-send-report {
    background: linear-gradient(135deg, #64748b, #475569) !important;
}

.btn-send-report:hover {
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.3) !important;
}

.availability-fixture-info {
    border: 1px solid rgba(100, 116, 139, 0.2) !important;
}

.availability-fixture-info h4 {
    color: #64748b !important;
}

.fixture-info-item i {
    color: #64748b !important;
}


/* Availability Modal Visibility Fix */
.availability-fixture-info h4 {
    color: #1a202c !important;
}

.fixture-info-item {
    color: #4a5568 !important;
}

.fixture-info-item i {
    color: #64748b !important;
}

.btn-secondary {
    background: #e2e8f0 !important;
    color: #1a202c !important;
    border: 2px solid #cbd5e0 !important;
}

.btn-secondary:hover {
    background: #cbd5e0 !important;
    color: #1a202c !important;
}


/* Match Text Visibility Fix */
#availability-fixture-info h4,
#availability-fixture-info strong {
    color: #0f172a !important;
    font-weight: 700 !important;
}

.availability-fixture-info {
    background: #f8fafc !important;
}


/* Payment Price Gray Theme */
.price {
    color: #64748b !important;
}


/* Dashboard Statistics Highlights Visibility */
.highlights-header h2,
.highlights-header p {
    color: #f1f5f9 !important;
}

.highlights-header h2 i {
    color: #94a3b8 !important;
}


/* Success Alert Gray Theme */
.custom-alert.success {
    border-top: 4px solid #64748b !important;
}

.success .alert-icon {
    background: rgba(100, 116, 139, 0.1) !important;
    color: #64748b !important;
}

.alert-btn-primary {
    background: #64748b !important;
}

.alert-btn-primary:hover {
    background: #475569 !important;
}


/* Admin Dashboard Gray Theme */
.admin-header h2 i {
    color: #64748b !important;
}

.admin-section h3 {
    color: #64748b !important;
}

.stat-card .stat-icon {
    background: linear-gradient(135deg, #64748b, #475569) !important;
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.2) !important;
}

.stat-card .stat-number {
    color: #64748b !important;
    text-shadow: 0 2px 4px rgba(100, 116, 139, 0.1) !important;
}

.stat-card .stat-label::after {
    background: linear-gradient(90deg, #64748b, #475569) !important;
}

.stat-card:hover {
    box-shadow: 0 20px 50px rgba(100, 116, 139, 0.15) !important;
}


/* CMS Page Gray Theme */
.cms-header h2 i {
    color: #64748b !important;
}

.cms-tab.active {
    background: #64748b !important;
    border-color: #64748b !important;
}

.cms-tab:hover {
    border-color: #64748b !important;
    color: #64748b !important;
}

.cms-section h3 {
    color: #64748b !important;
}

.form-control:focus {
    border-color: #64748b !important;
    box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.1) !important;
}

.file-upload-label {
    background: #64748b !important;
}

.file-upload-label:hover {
    background: #475569 !important;
}

.btn-primary {
    background: linear-gradient(135deg, #64748b, #475569) !important;
    border: 1px solid rgba(148, 163, 184, 0.2) !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #475569, #334155) !important;
    box-shadow: 0 10px 25px rgba(100, 116, 139, 0.3) !important;
}


/* CMS Title Visibility */
.cms-header h2 {
    color: #f1f5f9 !important;
}

.cms-subtitle {
    color: #cbd5e1 !important;
}


/* CMS Media Tab Buttons Gray Theme */
.media-tab-sub.active {
    background: #64748b !important;
    border-color: #64748b !important;
}

.media-tab-sub:hover {
    border-color: #64748b !important;
    color: #64748b !important;
}

.file-upload-label {
    background: #64748b !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
}

.file-upload-label:hover {
    background: #475569 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(100, 116, 139, 0.3) !important;
}


/* Fix Button Text Visibility on Hover */
.file-upload-label:hover {
    color: white !important;
}


/* Team Detail Page Gray Theme */
.team-hero {
    background: linear-gradient(135deg, #64748b, #475569) !important;
}

.team-logo {
    background: rgba(148, 163, 184, 0.3) !important;
}

.team-category-large {
    background: rgba(148, 163, 184, 0.3) !important;
}

.hero-stat {
    background: rgba(148, 163, 184, 0.2) !important;
}

.info-header {
    border-bottom: 3px solid #64748b !important;
}

.player-item:hover {
    border-color: #64748b !important;
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.15) !important;
}

.team-icon {
    background: linear-gradient(135deg, #64748b, #475569) !important;
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.2) !important;
}

.team-category {
    color: #64748b !important;
}

.info-card h3 {
    color: #64748b !important;
}

.add-player-btn {
    background: linear-gradient(135deg, #64748b, #475569) !important;
}

.add-player-btn:hover {
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.3) !important;
}

.player-select:focus {
    border-color: #64748b !important;
    box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.1) !important;
}


/* View Full Profile Gray Theme */
.player-profile-header {
    background: linear-gradient(135deg, #64748b, #475569) !important;
}

.player-role-badge {
    background: rgba(148, 163, 184, 0.3) !important;
}

.stats-summary-card.batting {
    border-left: 4px solid #64748b !important;
}

.stats-summary-card.bowling {
    border-left: 4px solid #94a3b8 !important;
}

.stats-summary-number {
    color: #64748b !important;
}

.player-stats-tab.active {
    color: #64748b !important;
    border-bottom-color: #64748b !important;
}

.player-stats-tab:hover {
    color: #64748b !important;
    background: rgba(100, 116, 139, 0.05) !important;
}

.stats-table th {
    background: #64748b !important;
}

.stats-table tr:hover {
    background: rgba(100, 116, 139, 0.05) !important;
}

.format-table th {
    background: linear-gradient(135deg, #64748b, #475569) !important;
}

.format-table tr:hover {
    background: rgba(100, 116, 139, 0.05) !important;
}

.format-name {
    color: #64748b !important;
}

.match-stat-value {
    color: #64748b !important;
}

.player-info-card h3 {
    color: #64748b !important;
}

.progress-fill {
    background: linear-gradient(135deg, #64748b, #475569) !important;
}

.progress-value {
    color: #64748b !important;
}


/* Players Page My Profile Button Gray Theme */
.view-profile-btn {
    background: linear-gradient(135deg, #64748b, #475569) !important;
}

.view-profile-btn:hover {
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.3) !important;
}

/* Player Card Hover Text Visibility */
.player-card:hover h3,
.player-card:hover p,
.player-card:hover .stats p {
    color: #f8fafc !important;
}

.player-card:hover p strong {
    color: #ffffff !important;
}
