/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s, color 0.3s;
}

/* Standings Section */
.standings-section .table {
    background: #fff;
}

.standings-section .table-hover tbody tr:hover {
    background-color: #f1f1f1;
}

/* Fixtures Section */
.fixture-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fixture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.team-logo {
    width: 50px;
    height: 50px;
    margin: 0 10px;
}

.vs {
    font-weight: bold;
    font-size: 1.2rem;
}

.status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.status.scheduled {
    background: #28a745;
    color: #fff;
}

/* Results Section */
.result-card {
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: scale(1.05);
}

/* Statistics Section */
.statistics-section .table, .statistics-section .list-group {
    background: #fff;
}

/* Dark Mode */
body.dark-mode {
    background: #1a1a1a;
    color: #fff;
}

body.dark-mode .navbar, body.dark-mode footer {
    background: #333 !important;
}

body.dark-mode .standings-section .table,
body.dark-mode .statistics-section .table,
body.dark-mode .statistics-section .list-group {
    background: #333;
    color: #fff;
}

body.dark-mode .fixtures-section,
body.dark-mode .statistics-section {
    background: #2c2c2c;
}

body.dark-mode .fixture-card,
body.dark-mode .result-card {
    background: #333;
    color: #fff;
}

body.dark-mode .table-hover tbody tr:hover {
    background-color: #444;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.9rem;
    }
    .team-logo {
        width: 40px;
        height: 40px;
    }
}


/* Footer Styling */
footer {
    background-color: #1a2526; /* Matches the dark background in the image */
}

footer h5 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer .footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-link:hover {
    color: #007bff;
}

footer .footer-link i {
    margin-right: 8px;
}

footer p {
    font-size: 0.9rem;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    footer .col-md-3 {
        margin-bottom: 2rem;
    }
}

/* Marquee */
.marquee {
    width: 100%;
    overflow: hidden;
    background: #1a2526;
    color: #ffd700; /* Yellow text on dark background */
    padding: 1.5rem 1;
    font-size: 4.5rem;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: background-color 0.3s ease;
}

.footer-marquee .marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 13s linear infinite; /* Slower speed */
}

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