    body {
        margin: 0;
        font-family: Arial, sans-serif;
    }

    /* HEADER */
    header {
        background-color: #0b1d2a;
        padding: 20px;
    }

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

    .logo img {
        width: 150px;
    }

    .list-ul {
        list-style: none;
        display: flex;
        gap: 30px;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    .list-ul a {
        color: #f5f5f5;
        text-decoration: none;
        font-weight: bold;
    }

    .list-ul a:hover {
        color: #d4af37;
    }

    #search-bar {
        padding: 5px 10px;
    }

    /* SLIDER */
    .slider-container {
        width: 100%;
        height: 500px;
        overflow: hidden;
        position: relative;
    }

    input[type="radio"] {
        display: none;
    }

    .slides {
        display: flex;
        width: 300%;
        height: 100%;
        transition: transform 0.5s ease-in-out;
        position: relative;
        z-index: 0;
    }

    .img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* SLIDE MOVEMENT */
    #slide1:checked ~ .slides {
        transform: translateX(0);
    }

    #slide2:checked ~ .slides {
        transform: translateX(-33.33%);
    }

    #slide3:checked ~ .slides {
        transform: translateX(-66.66%);
    }

    /* DARK OVERLAY */
    .slider-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }

    /* HERO ON TOP OF SLIDER */
    .hero-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        background-color: rgba(0, 0, 0, 0.3);
        z-index: 2;
        width: 80%;
    }

    .hero-overlay h1 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .hero-overlay p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .cta-btn {
        padding: 12px 25px;
        background: #a00404;
        color: white;
        border: none;
        cursor: pointer;
        font-size: 16px;
    }

    .cta-btn:hover {
        background: #800303;
    }

    /* NAV DOTS */
    .navigation {
        position: absolute;
        bottom: 15px;
        width: 100%;
        display: flex;
        justify-content: center;
        z-index: 2;
    }

    .nav-btn {
        width: 15px;
        height: 15px;
        background: rgba(255, 255, 255, 0.5);
        margin: 5px;
        border-radius: 50%;
        cursor: pointer;
    }

    .nav-btn:hover {
        background: white;
    }
    .menu-toggle {
        display: none;
        font-size: 28px;
        cursor: pointer;
    }
    /* Stats bar */
    .status {
        color: white;
    }
    #status:hover {
        color: #d4af37;
        cursor: pointer;
    }
    .status-containar {
        display: flex;
        justify-content: space-around;
        padding: 50px;
        height: 50px;
        background-color: #0b1d2a;
        text-align: center;
        align-items: center;
    }
    .sponsors {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
    }

    .sponsors h2 {
        margin-bottom: 30px;
        font-size: 24px;
    }

    .sponsor-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }
    .sponsor_3 {
        border-radius: 8px;
    }

    .sponsor-logos img {
        width: 120px;
        transition: 0.3s ease;
    }

    .sponsor-logos img:hover {
        opacity: 1;
        transform: scale(1.05);
    }
    /* FOOTER */
    footer {
        background: #111;
        color: white;
        text-align: center;
        padding: 20px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        display: inline;
        margin: 0 10px;
    }

    .footer-links a {
        color: white;
        text-decoration: none;
        padding-inline: 20px;
    }
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column !important;
        align-items: center;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-top: 1px solid rgba(255,255,255,0.15);
    }

    .nav-links a {
        display: block;
        width: 100%;
        color: white;
        text-decoration: none;
    } 
    

    #navLinks {
        display: none;
        width: 100%;
    }

    #navLinks.show {
        display: block;
    }

    #navLinks a {
        display: block;
        width: 100%;
        padding: 15px;
        border-top: 1px solid rgba(255,255,255,0.2);
        text-align: center;
    }
    #search-bar {
        display: none;
    }
    #navLinks a {
        display: block;
        width: 100%;
        color: white;
        text-decoration: none;
        transition: color 0.3s;
    }
    #navLinks a:hover {
        color: #d4af37;
    }
}