:root {
    --primary-color: #4A956C;
    --primary-dark: #3A7455;
    --primary-light: #5FB484;
    --primary-very-light: #E8F5EE;
    --text-color: #333333;
    --light-gray: #f8f9fa;
    --border-color: #E0E0E0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --border-radius: 20px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Comfortaa', cursive, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--light-gray);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Header avec animation */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(74, 149, 108, 0.15);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.logo {
    height: 70px;
    margin-right: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    transition: var(--transition);
    background-color: white;
    border-radius: 15px;
    padding: 8px;
    animation: float 3s ease-in-out infinite;
}

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

.header-pattern {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header p {
    margin: 10px 0 0 0;
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Navigation améliorée */
.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 10px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 20px;
    z-index: 100;
}

.nav-link {
    margin: 0 8px;
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.nav-link a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 24px;
    display: block;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s;
}

.nav-link:hover:after {
    transform-origin: bottom left;
    transform: scaleX(1);
}

.nav-link.active a {
    color: white;
}

.nav-link.active {
    background-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(74, 149, 108, 0.25);
}

/* Section des matchs à venir améliorée */
.upcoming-matches-section {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-left: none;
    position: relative;
    overflow: hidden;
}

.upcoming-matches-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}

.upcoming-matches-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
}

.upcoming-matches-section h3 svg {
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Filtres améliorés */
.upcoming-matches-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    align-items: center;
    background-color: var(--primary-very-light);
    padding: 15px;
    border-radius: 15px;
}

.upcoming-matches-filters span {
    font-weight: 600;
    color: var(--primary-dark);
    margin-right: 5px;
}

.filter-btn {
    background-color: white;
    color: var(--text-color);
    border: none;
    padding: 10px 18px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(74, 149, 108, 0.25);
}

/* Cards des matchs repensés */
.match-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}

.match-card {
    display: flex;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 200px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.date-column {
    width: 110px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.date-column::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    top: -50%;
    left: -50%;
}

.day {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.month {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 4px;
    letter-spacing: 1px;
}

.time {
    margin-top: 16px;
    background-color: rgba(255, 255, 255, 0.25);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.category {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.category-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 8px;
    margin-right: 8px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Styles pour les différentes catégories */
.category-m3 {
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
}

.category-m4 {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
}

.category-m5 {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
}

.category-m6 {
    background: linear-gradient(135deg, #2A3A30 0%, #1A2A20 100%);
}

.category-f4 {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
}

.category-f6 {
    background: linear-gradient(135deg, #F51BF5 0%, #D400D4 100%);
}

.teams {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
    justify-content: center;
}

.team:hover {
    background-color: var(--primary-very-light);
}

.team-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    transition: var(--transition);
}

.team-icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    object-fit: contain;
    background-color: var(--primary-very-light);
    padding: 3px;
    border-radius: 50%;
}

.vs {
    font-size: 14px;
    color: #999;
    text-align: center;
    margin: 0;
    position: relative;
}

.vs::before, .vs::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: #ddd;
}

.vs::before {
    left: 25%;
}

.vs::after {
    right: 25%;
}

.countdown {
    text-align: right;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    background-color: var(--primary-very-light);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-left: auto;
}

/* Style pour les skeletons de chargement */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.loading-spinner {
    width: 35px;
    height: 35px;
    border: 4px solid var(--primary-very-light);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 15px;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Page Description */
.page-description {
    background-color: var(--primary-very-light);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.page-description p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.back-to-home {
    margin: 40px 0;
    text-align: center;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-very-light);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.back-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.back-button svg {
    transition: transform 0.3s ease;
}

.back-button:hover svg {
    transform: translateX(-5px);
}

.filter-section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.filter-section:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

select, input, button {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    transition: var(--transition);
    font-family: 'Comfortaa', cursive;
}

select:focus, input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(95, 180, 132, 0.2);
}

select {
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A956C' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    appearance: none;
}

button {
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--border-radius);
}

button:hover {
    background-color: var(--primary-dark);
}

button svg {
    width: 16px;
    height: 16px;
}

#resetFilters {
    background-color: var(--light-gray);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

#resetFilters:hover {
    background-color: #e5e5e5;
}

.home-tag {
    background-color: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
}

.home-tag::before {
    content: '🏠';
    margin-right: 4px;
    font-size: 10px;
}

/* Style pour mettre en évidence les matches à domicile dans le tableau */
.home-match td {
    background-color: rgba(74, 149, 108, 0.05);
}

tr.home-match:hover td {
    background-color: rgba(74, 149, 108, 0.15);
}

/* Style pour la case à cocher du filtre domicile */
.home-filter-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-very-light);
    padding: 10px 15px;
    border-radius: 12px;
    margin-top: 8px;
}

.home-filter-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.home-filter-container label {
    font-weight: 500;
    color: var(--primary-dark);
    cursor: pointer;
}

/* Ajout d'un nouveau bouton de filtre pour les matches à domicile */
.filter-btn.home-filter {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Tabs */
.team-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--light-gray);
    padding: 10px 0;
    border-radius: var(--border-radius);
}

.team-tab {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 12px 18px;
    font-weight: 600;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.team-tab:hover {
    background-color: var(--primary-very-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.team-tab.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(74, 149, 108, 0.3);
}

/* Team content */
.team-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.team-content.active {
    display: block;
}

.team-content .title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.team-content .title-row h2 {
    margin-top: 0;
    margin-bottom: 0;
    border-bottom: none;
}

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

.stat-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.stat-card h4 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card p {
    margin-bottom: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
}

/* Tables */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 30px;
    background-color: white;
    box-shadow: var(--shadow);
    border-radius: 15px;
    overflow: hidden;
}

th, td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

tr:nth-child(even):not(.round-header) {
    background-color: var(--light-gray);
}

tr:hover:not(.round-header) {
    background-color: var(--primary-very-light);
}

.round-header {
    background-color: var(--primary-light);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.team-name {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

tr:hover .team-name {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Section CTA améliorée */
.cta-section {
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: var(--border-radius);
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(74, 149, 108, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='white' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::after {
    left: 100%;
}

/* Footer amélioré */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

footer p {
    margin: 8px 0;
    opacity: 0.9;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
}

.footer-link:hover {
    color: white;
    border-bottom: 1px solid white;
}

/* Responsive */
@media (max-width: 768px) {
    .upcoming-matches-filters {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .match-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .match-card {
        width: 100%;
    }
    
    .logo {
        height: 50px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    header p {
        font-size: 0.9rem;
    }
    
    .upcoming-matches-section h3 {
        font-size: 1.2rem;
    }
    
    .filter-btn {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        margin: 0 5px;
    }
    
    .nav-link a {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --light-gray: #121212;
        --text-color: #e0e0e0;
        --border-color: #333333;
    }

    body {
        background-color: #121212;
    }

    .team-tab, 
    .filter-section, 
    .stat-card, 
    table, 
    .upcoming-matches-section,
    .match-card,
    .main-nav,
    .team,
    .filter-btn {
        background-color: #1f1f1f;
        color: #e0e0e0;
    }

    .upcoming-matches-filters {
        background-color: #2a3a30;
    }

    .team-name {
        color: var(--primary-light);
    }

    .countdown {
        background-color: #2a3a30;
        color: #e0e0e0;
    }

    .team:hover {
        background-color: #2a3a30;
    }

    .filter-btn {
        background-color: #333333;
        color: #e0e0e0;
    }

    .filter-btn:hover {
        background-color: #444444;
    }

    .skeleton {
        background: linear-gradient(90deg, #262626 25%, #333333 50%, #262626 75%);
    }
    tr:nth-child(even):not(.round-header) {
        background-color: #262626;
    }

    tr:hover:not(.round-header) {
        background-color: #2a3a30;
    }

    #resetFilters {
        background-color: #333333;
        color: #e0e0e0;
    }

    select, input {
        background-color: #1f1f1f;
        color: #e0e0e0;
    }

    .back-button {
        background-color: #2a3a30;
    }
    
    .cta-button {
        color: #1f1f1f;
    }
}