/* CSS Reset */
* {
    margin: 0px;
    padding: 0px;
}

/* index.html */
/* navbar-section */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 24px;
}

.nav-logo {
    width: 160px;
}

.nav-logo img {
    width: 100%;
}

.nav-list ul {
    display: flex;
    align-items: center;
    padding: 0px;
    margin: 0px;
}

.nav-list ul li {
    list-style: none;
    font-weight: 600;
    margin: 0px 16px;
}

.nav-list ul li a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: rgba(235, 37, 83, 1);
}

.nav-list ul li a {
    text-decoration: none;
    color: black;
    padding: 16px 8px;
    position: relative;
}

.nav-list ul li a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0%;
    width: 100%;
    height: 4px;
    background-color: rgba(235, 37, 83, 1);
    border-radius: 10px;
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.play-btn {
    background-color: rgba(235, 37, 83, 1);
    border: none;
    outline: none;
    color: white;
    padding: 7px 35px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin: 0px 12px;
}

.play-btn:hover {
    background-color: rgba(186, 10, 59, 1);
}

.nav-buttons a {
    font-size: 29px;
    color: gainsboro;
}

.nav-buttons a:hover {
    font-size: 29px;
    color: rgba(235, 37, 83, 1);
}

/* herobanner-section */
.hero-banner {
    margin-top: 59px;
}

.hero-banner,
.slider,
.slide {
    height: calc(115vh - 59px);
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

video,
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.black-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.5) 70%, transparent);
    z-index: 3;
}

.overlay-content {
    position: absolute;
    top: 25%;
    left: 3%;
    z-index: 4;
    color: white;
    max-width: 500px;
}

.overlay-content h1 {
    font-size: 46px;
    margin-bottom: 16px;
}

.overlay-content p {
    font-size: 20px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
}

.subscribe-btn {
    margin-top: 1rem;
    background: rgba(235, 37, 83, 1);
    color: white;
    padding: 12px 60px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
}

.subscribe-btn:hover {
    background: rgba(186, 10, 59, 1);
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
    cursor: pointer;
}

.dot {
    height: 8px;
    background-color: #fff;
    opacity: 0.5;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.dot.active {
    width: 24px;
    opacity: 1;
    background-color: rgba(235, 37, 83, 1);
}

.dot:not(.active) {
    width: 8px;
    background-color: #fff;
}

.arrow-btn {
    font-size: 20px;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.arrow-btn:hover {
    background: rgba(235, 37, 83, 1);
}

.arrow-left,
.arrow-right {
    display: none;
}

#prevSlideBtn {
    order: 1;
}

.dot {
    order: 2;
}

#nextSlideBtn {
    order: 3;
}

/* consolebanner-section */
.console-banner {
    margin: 62.333px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.cb-text {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.cb-text h1 {
    font-size: 48px;
    font-weight: bold;
}

.cb-text p {
    max-width: 500px;
    font-weight: 600;
    color: gray;
}

.cb-image {
    max-width: 925px;
}

.cb-image img {
    width: 100%;
}

/* features-section */
.features {
    margin: 62.333px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100% !important;
    padding: 0px 31.1665px !important;
}

.features .row {
    justify-content: space-between !important;
}

.feature-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 24% !important;
}

.feature-img {
    width: 75px;
    margin-bottom: 20px;
}

.feature-img img {
    width: 100%;
}

.feature-text {
    text-align: center;
}

.feature-text p {
    color: gray;
    font-weight: 500;
}

/* tickets-section */
.tickets {
    background: rgba(43, 43, 43, 1);
    padding: 48px 144.333px;
}

.tickets-text {
    color: white;
    text-align: center;
}

.tickets-text h1 {
    font-weight: 700;
    font-size: 48px;
}

.tickets-text p {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin: 15px 0px;
}

.tickets-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.ticket-img {
    margin: 0px 5px;
}

.ticket-img img {
    border-radius: 8px;
    width: 100%;
}

/* pricing-section */
.pricing {
    padding: 62.333px;
    background: rgba(0, 0, 0, 0.02);
}

.pricing-card {
    border: 1px solid rgba(186, 10, 59, 1);
    padding: 25px !important;
    width: 28.33333333% !important;
    margin: 0px 12px;
    border-radius: 12px;
}

.pricing-text {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 50px;
}

.pricing-text h1 {
    font-weight: bold;
    font-size: 36px;
}

.pricing-text p {
    font-weight: 500;
    color: gray;
    max-width: 900px;
}

.pricing .row {
    justify-content: center;
}

.pricing-tag {
    background: rgba(235, 37, 83, 0.2);
    color: rgba(235, 37, 83, 1);
    font-weight: 500;
    padding: 2px;
    width: 90px;
    text-align: center;
    border-radius: 5px;
}

.pricing-price p {
    margin: 16px 0px;
    color: gray;
}

.pricing-subscribeBtn button {
    width: 100%;
}

.p-price {
    display: flex;
    align-items: center;
}

.p-price h2 {
    font-weight: bold;
}

.p-price span {
    font-weight: 500;
}

.pricing-features {
    margin: 16px 0px;
}

.pricing-features ul {
    margin: 0px;
    padding: 0px;
}

.pricing-features ul li {
    list-style: none;
}

.pricing-features ul li i {
    margin-right: 10px;
    color: rgba(235, 37, 83, 1);
}

/* gamescarousel-section */
.carousel-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 4px;
    cursor: pointer;
}

.carousel-row {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 8px;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

.row-right .carousel-track {
    animation: scroll-right 45s linear infinite;
}

.carousel-track img {
    width: 196.792px;
    height: 110.729px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .carousel-track img {
        width: 150px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .carousel-track img {
        width: 120px;
        height: 70px;
    }
}

/* accordion-section */
.accordion-container {
    max-width: 975px;
    margin: 62.333px auto;
}

.accordion-container h2 {
    text-align: center;
    margin-bottom: 31.1665px;
}

.accordion-item {
    border-radius: 8px;
    margin-bottom: 4px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.05);
    border: none !important;
}

.accordion-header {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 8px 24px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    color: rgba(235, 37, 83, 1);
}

.accordion-icon {
    font-size: 24px;
    transition: transform 0.2s ease;
    color: gray;
}

.accordion-content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 0 24px;
}

.accordion-content p {
    margin: 0;
    padding-bottom: 24px;
    color: gray;
}

/* footer-section */
.footer {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 46.74975px 23.374875px;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    width: 160px;
    opacity: 0.55;
}

.footer-socials {
    display: flex;
    gap: 9px;
    font-size: 26px;
}

.footer-socials a {
    color: rgba(0, 0, 0, 0.55);
}

.footer-socials a:hover {
    color: rgba(235, 37, 83, 1);
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
    margin-top: 25px;
}

.footer-left-desc {
    flex: 1;
    min-width: 250px;
}

.footer-left-desc p {
    font-size: 14px;
    color: gray;
    margin-bottom: 15px;
    max-width: 380px;
}

.footer-links {
    display: flex;
    gap: 65px;
    justify-content: space-between;
}

.link-column {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.link-column a {
    font-size: 14px;
    color: gray;
    text-decoration: none;
}

.link-column a:hover {
    color: rgba(235, 37, 83, 1);
}

.footer-divider {
    border: none;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 14px;
    color: gray;
    text-decoration: none;
}

.footer-legal a:hover {
    color: rgba(235, 37, 83, 1);
}

.f-play-btn {
    padding: 5px 48px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    outline: none;
    border-radius: 20px;
    font-size: 12px;
    color: gray;
    font-weight: 500;
    cursor: pointer;
}

.f-play-btn:hover {
    background: rgba(235, 37, 83, 1);
    border: 2px solid rgba(235, 37, 83, 1);
    color: white;
}

.language-btn {
    min-width: 160px;
    margin: 10px;
}

.modal-fullscreen-center {
    display: flex !important;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.custom-lang-btn {
    background: transparent;
    color: gray;
    font-size: 14px;
    padding: 4px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-lang-btn:hover {
    color: rgba(235, 37, 83, 1);
}

.custom-lang-btn i {
    margin-left: 6px;
    font-size: 12px;
}

@media (max-width: 576px) {
    .custom-lang-btn {
        font-size: 16px;
        padding: 14px 28px;
    }
}

.language-btn.selected {
    border: 1px solid rgba(235, 37, 83, 1);
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.05);
}

.modal-header {
    padding: 30px !important;
}

.custom-close-btn {
    background-color: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.custom-close-btn:hover {
    color: rgba(235, 37, 83, 1);
}

/* games.html */
/* herobanner-section*/
.oc-gamespage {
    max-width: 590px;
}

.oc-gamespage p {
    font-size: 14px;
    color: white;
    font-weight: 400;
    margin-bottom: 22px;
}

.oc-gamespage-head {
    display: flex;
    margin-bottom: 24px;
}

.oc-gamespage-head-img {
    width: 80px;
    height: 80px;
}

.oc-gamespage-head-img img {
    width: 100%;
    border-radius: 5px;
}

.oc-gamespage-head-text {
    margin-left: 16px;
}

.oc-gamespage-head-text h1 {
    font-size: 36px;
    margin-bottom: 0px;
}

.oc-gamespage-head-text span {
    font-size: 14px;
    color: gray;
    font-weight: 500;
}

.ocg-play {
    padding: 7.5px 32px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(235, 37, 83, 1);
    color: white;
    border: none;
    outline: none;
    border-radius: 24px;
}

.ocg-play:hover {
    background: rgba(186, 10, 59, 1);
}

.ocg-readmore {
    padding: 7.5px 32px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    outline: none;
    border-radius: 24px;
}

.ocg-readmore:hover {
    background: rgba(255, 255, 255, 0.1);
}

.oc-gamespage-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* category-navigation */
.tag-container-wrapper {
    position: relative;
    width: 100%;
    padding: 8px 24px;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    /* space for toggle */
    padding: 5px 0px;
}

.tag {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 4px 16px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    color: black;
    text-decoration: none;
}

.tag:hover {
    color: rgba(235, 37, 83, 1);
}

.toggle-icon {
    position: absolute;
    top: 14px;
    right: 20px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.toggle-icon:hover {
    background: white;
    border: 1px solid rgba(235, 37, 83, 1);
}

.toggle-icon i {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
}

.toggle-icon i:hover {
    color: rgba(235, 37, 83, 1);
}

/* gamescta-section */
.games-cta {
    background: rgb(0, 151, 224);
    display: flex;
    justify-content: space-between;
    padding: 46.74975px 85.707875px;
}

.gamescta-left {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.gamescta-left h4 {
    color: white;
    font-weight: bold;
    margin-top: 0.5rem;
}

.gamescta-left p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
}

.gamescta-leftimg {
    width: 75px;
}

.gamescta-leftimg img {
    width: 100%;
}

.gamescta-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-bottom: 18px;
}

.gamescta-rightimg {
    max-width: 198.667px;
}

.gamescta-rightimg img {
    width: 100%;
    border-radius: 8px;
}

.ctagames-sub {
    padding: 8px 24px;
    width: 90%;
    font-size: 14px;
}