@font-face {
    font-family: "KumbhSans-Bold";
    src: local("Kumbh Sans Bold"),
        url("assets/fonts/kumbh-sans/KumbhSans-Bold.ttf") format("truetype");
}

@font-face {
    font-family: "KumbhSans-Light";
    src: local("Kumbh Sans Light"),
        url("assets/fonts/kumbh-sans/KumbhSans-Light.ttf") format("truetype");
}

@font-face {
    font-family: "KumbhSans-Regular";
    src: local("Kumbh Sans Regular"),
        url("assets/fonts/kumbh-sans/KumbhSans-Regular.ttf") format("truetype");
}

body {
    margin: 0;
    background-color: #0b0c2a;
    font-family: "Segoe UI", sans-serif;
    color: white;
    text-align: center;
}

h1 {
    color: #ffffff;
    margin-top: 40px;
    font-family: "KumbhSans-Bold";
    margin-bottom: 26px;
}

h2 {
    font-family: "KumbhSans-Bold";
}

.subheading {
    color: #3dacff;
    font-size: 1.1rem;
    margin: 18px 0;
    font-family: "KumbhSans-Regular";
}

.event-time {
    margin: 5px 0 35px;
    color: #ffffff;
    font-family: "KumbhSans-Bold";
}

.cta-button {
    background-color: #ff3b3f;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-family: "KumbhSans-Regular";
}

.cta-button:hover {
    background-color: #ff676b;
    box-shadow: 0 0 10px #ff3b3f;
}

.countdown {
    font-size: 2rem;
    margin: 30px 0 10px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.countdown div {
    color: white;
    font-family: "KumbhSans-Bold";
}

.countdown p {
    margin: 10px 0;
    font-size: 2rem;
    font-family: "KumbhSans-Regular";
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px auto;
    max-width: 1400px;
}

.video-grid video {
    width: 100%;
    height: 100%;
}

.video-card {
    border: 3px solid #3dacff;
    padding: 5px;
    border-radius: 8px;
    background: #1b1c3a;
}

.video-card.red {
    border-color: #ff3b3f;
}

.video-card iframe {
    width: 100%;
    height: 160px;
    border: none;
    border-radius: 4px;
}

.footer {
    margin-top: 50px;
    font-size: 0.9rem;
    color: #999;
    padding-bottom: 30px;
    font-family: "KumbhSans-Regular";
}

@media (max-width: 1400px) {

    .video-grid {
        max-width: 90%;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

}

@media (max-width: 600px) {

    .countdown {
        font-size: 1.3rem;
        gap: 16px;
    }

    .wetstock-page {
        width: 95%;
        margin: 0 auto;
    }

    .cta-button {
        width: 90%;
    }

    .video-card {
        border: none;
        background: unset;
    }

    .countdown p {
        font-size: 1.1rem;
    }

}

@media (max-width: 400px) {

    .countdown {
        font-size: 1.2rem;
        gap: 10px;
    }

    h1 {
        font-size: 27px;
    }
}