/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BACKGROUND */
body {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    background: url("background.jpg") no-repeat center center/cover;
}

/* OVERLAY */
.background-overlay {
    background: rgba(0, 0, 0, 0.65);
    min-height: 100vh;
    padding-bottom: 60px;
}

/* NAVBAR */
.navbar {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 0;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.navbar a:hover {
    color: #7fdfff; /* toned down */
}

/* HEADER */
.club-header {
    text-align: center;
    margin: 40px 0 20px;
}

.club-badge {
    width: 185px;
    margin-bottom: 100px;
}

.club-header h1 {
    font-size: 2.5rem;
}

/* SECTIONS (TONED DOWN BLUE) */
.next-match,
.last-results {
    width: 80%;
    max-width: 800px;
    margin: 30px auto;
    padding: 25px;
    border-radius: 12px;

    background: linear-gradient(
        135deg,
        rgba(0,191,255,0.15),
        rgba(0,0,0,0.85)
    );

    box-shadow: 0 0 15px rgba(0,191,255,0.15);
    transition: 0.3s ease;
}

.next-match:hover,
.last-results:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,191,255,0.25);
}

/* EXTRA EMPHASIS */
.next-match {
    border-left: 4px solid rgba(0,191,255,0.6);
}

/* TITLES */
h2 {
    margin-bottom: 12px;
    border-bottom: 2px solid rgba(0,191,255,0.6);
    padding-bottom: 5px;
}

/* RESULTS */
.result {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.result:hover {
    color: #7fdfff;
    transform: translateX(5px);
}

/* COUNTDOWN */
#countdown {
    margin-top: 15px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #7fdfff;
    text-align: center;
}

/* FOOTER */
footer {
    margin-top: 100px;
    text-align: center;
}

/* LINKS */
.footer-content a {
    color: #7fdfff;
}

/* 🔥 FIXED BUTTON (THIS SOLVES YOUR ISSUE) */
.contact-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;

    background: #00bfff;

    color: white !important; /* FORCE FIX */
    font-weight: bold;

    border-radius: 6px;
    text-decoration: none;

    text-align: center;
}

.contact-button:hover {
    background: #009acd;
}
@media (max-width: 768px) {

    .navbar ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
        text-align: center;
    }

    .navbar li {
        width: 100%;
    }

    .navbar a {
        font-size: 14px;
    }

}
@media (max-width: 768px) {

    .next-match,
    .last-results {
        width: 90%;
        margin: 20px auto;
    }

}