html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial;
    background-color: #181818;
    color: #ffffff;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

#akward-freestyle-video,
#just-friends-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-blur {
    filter: blur(20px);
}

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    height: 50px;
    background-color: rgba(255, 255, 255, 0);
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 26px;
    z-index: 1;
    text-align: center;
}

.navbar a {
    color: #e6dda1;
    text-decoration: none;
    padding: 20px;
    transition: 0.3s ease-in-out;
    font-family: "podium-soft-variable";
    font-variation-settings: 'wdth' 132;
}

.navbar a:hover {
    color: #ffffff;
}

.release-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 100px;
    z-index: 2;
    position: relative;
}

.release {
    display: flex;
    align-items: center;
    background-color: #23232380;
    padding: 15px;
    border-radius: 8px;
    width: 500px;
    height: 180px;
    box-sizing: border-box;
}

.release img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 8px;
}

.release-info {
    display: flex;
    flex-direction: column;
}

.release-info h1 {
    font-size: 22px;
    margin: 0;
    font-weight: bold;
}

.release-info p {
    font-size: 16px;
    margin: 0;
    color: #dddddd;
}

.release:hover {
    color: #e6dda1;
    transition: 0.3s ease-in-out;
}

.popular-releases-link {
    text-decoration: none;
    color: inherit;
}

.navbar a.true {
    color: #ffffff;
}

.event-section {
    margin: 40px;
    color: #ffffff;
}

.event-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.event {
    background-color: #232323;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.event h3 {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
}

.event p {
    margin: 5px 0;
    font-size: 16px;
}

.map-container {
    height: 400px;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.links-section {
    text-align: center;
    margin: 50px 0;
    color: #e6dda1;
}

.links-section h2 {
    font-size: 32px;
    color: #ffffff;
    font-family: inherit;
}

.links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
}

.link-button {
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    background-color: #e6dda1;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin: 10px 30%;
    text-transform: uppercase;
}

.link-button:hover {
    background-color: #ffffff;
}

.contact-form-page {
    margin: 100px auto;
    width: 300px;
    background-color: #232323;
    padding: 20px;
    border-radius: 10px;
    color: #ffffff;
}

.contact-form-page h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-form-page label {
    margin-top: 10px;
    display: block;
}

.contact-form-page input,
.contact-form-page textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: none;
    background-color: #00000033;
    color: #ffffff;
}

.submit-button {
    background-color: #e6dda1;
    color: #000;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 30px;
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.footer {
    z-index: 1;
    font-size: 10px;
    color: inherit;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    text-align: left;
}

.submit-button:hover {
    background-color: #ffffff;
}

@media (max-width: 768px) {
    .navbar {
        display: flex;
        flex-direction: column;
        height: auto;
        background-color: rgba(0, 0, 0, 0);
        position: sticky;
    }

    .navbar a {
        font-size: 24px;
        padding: 10px 0;
    }


    .release-list {
        margin: 0 10px;
        margin-top: 50px;
        gap: 15px;
        flex-direction: column;
    }

    .release {
        width: 300px;
        height: auto;
        padding: 10px;
    }

    .release img {
        width: 90px;
        height: 90px;
        margin-right: 10px;
    }

    .release-info h1 {
        font-size: 18px;
    }

    .release-info p {
        font-size: 14px;
    }

    iframe {
        height: 75%;
        width: 100%;
    }

    .links-section {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 0 10px;
    }

    .link-button {
        margin: 10px auto;
        width: 80%;
    }

    .footer {
        z-index: 1;
        font-size: 10px;
        color: inherit;
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0);
        text-align: center;
    }
}