/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: Arial, Helvetica, sans-serif;
    color: white;

    background:
        linear-gradient(
            rgba(10, 10, 10, 0.84),
            rgba(10, 10, 10, 0.90)
        ),
        url("background.jpg");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* OVERLAY */
.background-overlay {
    min-height: 100vh;
    padding-bottom: 60px;
}

/* NAVBAR */
.navbar {
    background: rgba(0, 0, 0, 0.75);
    padding: 16px 0;
    backdrop-filter: blur(5px);
}

.navbar ul {
    list-style: none;

    display: flex;
    justify-content: center;
    gap: 30px;

    flex-wrap: wrap;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-weight: bold;

    transition: 0.3s ease;
}

.navbar a:hover {
    color: #7fdfff;
}

/* PAGE TITLE */
.page-title {
    text-align: center;
    margin: 50px 0 40px;
}

.page-title h1 {
    font-size: 3rem;
    margin-bottom: 10px;

    text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.page-title p {
    color: #cfcfcf;
}

/* SPONSORS CONTAINER */
.sponsors-container {
    width: 90%;
    max-width: 1200px;

    margin: auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 35px;
}

/* SPONSOR CARD */
.sponsor-card {
    background: linear-gradient(
        145deg,
        rgba(25, 25, 25, 0.96),
        rgba(10, 10, 10, 0.96)
    );

    border-radius: 18px;
    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.06);

    box-shadow:
        0 8px 20px rgba(0,0,0,0.5);

    transition: 0.3s ease;

    text-align: center;
}

/* HOVER EFFECT */
.sponsor-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 12px 28px rgba(0,0,0,0.7),
        0 0 12px rgba(0,191,255,0.15);
}

/* SPONSOR IMAGE */
.sponsor-logo {
    width: 100%;
    height: 260px;

    object-fit: cover;

    background: white;

}

/* SPONSOR INFO */
.sponsor-info {
    padding: 24px;
}

.sponsor-info h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.sponsor-info p {
    color: #bdbdbd;
    margin-bottom: 20px;
}

@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;
    }

}
/* BUTTON */
.visit-button {
    display: inline-block;

    padding: 12px 24px;

    border-radius: 10px;

    background: rgba(0,191,255,0.12);

    border: 1px solid rgba(0,191,255,0.2);

    color: white;
    text-decoration: none;
    font-weight: bold;

    transition: 0.3s ease;
}

/* BUTTON HOVER */
.visit-button:hover {
    background: rgba(0,191,255,0.22);

    transform: translateY(-2px);
}

/* FOOTER */
footer {
    margin-top: 90px;

    text-align: center;

    color: #d0d0d0;

    padding-bottom: 25px;
}

footer p {
    margin: 4px 0;
}
