body {
    background: linear-gradient(135deg, #002395 0%, #e30613 100%);
    color: #fff;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
}

.logo-text {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.logo-subtext {
    font-size: 1.8rem;
    font-style: italic;
    margin: 0;
    color: #ffd700;
}

.score-section {
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
    position: relative;
    margin-bottom: 30px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.score-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.score-section h2 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.display-3 {
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    padding: 10px 0;
}

.text-gold {
    color: #ffd700;
}

.faq-section .accordion-button {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #ffd700;
    color: #002395;
}

.faq-section .accordion-body {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
}

.highlights-section .card {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    transition: transform 0.3s ease;
}

.highlights-section .card:hover {
    transform: scale(1.05);
}

.highlights-section .card-title {
    font-weight: 700;
    color: #ffd700;
}

.teams-section .card {
    background: rgba(0, 0, 0, 0.7);
    border: none;
}

.teams-section .card-header {
    font-size: 1.5rem;
    background: #002395;
}

footer {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px 0;
    margin-top: 30px;
}

.nav-buttons a {
    color: #fff;
    text-decoration: none;
    margin: 5px;
}

.btn-light {
    background-color: #fff;
    color: #000;
    border: 1px solid #ddd;
}

.btn-primary {
    background: #ffd700;
    border: none;
    color: #002395;
}

.btn-success { background: #4CAF50; border: none; }
.btn-secondary { background: #6c757d; border: none; }

@media (max-width: 576px) {
    .logo-text { font-size: 1.5rem; }
    .logo-subtext { font-size: 1rem; }
    .display-3 { font-size: 2rem; }
    .score-section h2 { font-size: 1.2rem; }
    .score-content .col-12 { margin-bottom: 10px; }
    .highlights-section .card { margin-bottom: 15px; }
    .teams-section .card-header { font-size: 1rem; }
    .nav-buttons .btn { width: 100%; margin: 5px 0; }
    .score-content .col-12.col-md-4 { flex: 0 0 40%; }
    .score-content .col-12.col-md-2 { flex: 0 0 10%; }
}

@media (min-width: 577px) and (max-width: 768px) {
    .logo-text { font-size: 2rem; }
    .logo-subtext { font-size: 1.2rem; }
    .display-3 { font-size: 2.5rem; }
    .score-section h2 { font-size: 1.5rem; }
    .highlights-section .card { margin-bottom: 10px; }
    .teams-section .card-header { font-size: 1.2rem; }
    .nav-buttons .btn { width: 45%; margin: 5px; }
}

@media (min-width: 769px) {
    .score-content .col-md-4 { padding: 10px; }
    .score-content .col-md-2 { padding: 5px; }
}