
/* Base Styling */
header.navbar {
    background-color: #00000d !important;
}

/* Nav Link Color (optional refine) */
.navbar-nav .nav-link {
    color: #fff;
}

.navbar-nav .nav-link:hover {
    color: #ffcc00;
}

body, .winrat-theme {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #00000d !important;
    color: white;
    text-align: center;
}

.accordion-body {
    color: #111 !important;
    background-color: #ffffff !important;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(25,25,111,255);
    padding: 10px 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.video-container.scrolled video {
    transform: translateY(-100%);
    transition: transform 1s ease-out;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-content {
    position: relative;
    top: calc(100% - 5px);
    transform: translateY(-100%);
}

h1 {
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.btn {
    padding: 15px 30px;
    background-color: #ff3c00;
    color: white;
    font-size: 18px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.news-section,
.first-scroll,
#gallery .news-section,
#events .news-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 50px auto;
    max-width: 1200px;
}

.news-item {
    width: 300px;
    height: 400px;
    background: #00000d;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

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

.first-scroll {
    align-items: center;
    justify-content: center;
    padding: 100px;
    background: linear-gradient(to bottom, #00000ac4, #00000ac4);
    position: relative;
    height: 100vh;
    gap: 20px;
}

.scroll-img,
.scroll-video {
    width: 90%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

.parallax-section {
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
    padding: 50px 0;
}

@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll !important;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }

    .first-scroll {
        flex-direction: column;
        padding: 50px 20px;
        height: auto;
    }

    .news-item {
        width: 90%;
        height: auto;
    }

    .scroll-img,
    .scroll-video {
        height: 300px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

.responsive-video-block {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 80vh;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.responsive-video-block video {
    width: 90%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

#background-video {
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    max-height: 90vh;
    position: relative;
    z-index: 0;
}

.video-container {
    position: relative;
    height: 90vh;
    overflow: hidden;
    text-align: center;
}

.scroll-video {
    width: 90%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

.mute-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 2;
}

.mute-icon.muted {
    background-image: url('../icons/muted.png');
}

.mute-icon.unmuted {
    background-image: url('../icons/unmuted.png');
}

.android-download-btn {
    display: inline-block;
    margin-right: 10px;
}

.android-download-btn img {
    height: 40px;
    width: auto;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .android-download-btn {
        margin-left: 10px;
        margin-top: 5px;
    }

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

.android-download-btn img {
    height: 40px;
    width: auto;
    margin-left: 10px;
}

.video-block,
.image-block {
    margin-bottom: 50px;
    padding-bottom: 20px;
}

.video-container {
    position: relative;
    text-align: center;
}

.video-container video {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/*@media (min-width: 1024px) {*/
/*    .scroll-video {*/
/*        width: 100% !important;*/
/*        height: auto !important;*/
/*        max-height: 90vh;*/
/*        object-fit: contain;*/
/*    }*/

/*    .video-wrapper {*/
/*        flex: 1 1 48%;*/
/*        max-width: 48%;*/
/*        box-sizing: border-box;*/
/*        margin: 10px;*/
/*    }*/

/*    .video-row {*/
/*        display: flex;*/
/*        flex-wrap: wrap;*/
/*        justify-content: center;*/
/*        gap: 20px;*/
/*    }*/
/*}*/

@media (min-width: 768px) {
    .video-wrapper {
        flex: 1 1 48%;
        max-width: 48%;
        box-sizing: border-box;
        margin: 10px;
    }

    .video-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .scroll-video {
        width: 100% !important;
        object-fit: contain;
    }
}