/* ===========================================
   HEADER GERAL
=========================================== */
.header-game {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 50px 0 0;
    position: fixed;
    /* 🔥 Fica flutuando sobre o conteúdo */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: var(--primary-light);
    /* 🔥 Remove qualquer cor de fundo */
    pointer-events: auto;
    /* ainda permite clicar nos itens */
}

/* LOGO */
.header-left .logo {
    display: flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.header-left .logo img {
    width: 36px;
    height: 36px;
}

.header-left .logo:hover {
    transform: scale(1.05);
}

.owl-dot.active span {
    background-color: var(--primary) !important;
}

/* BOTÃO FLUTUANTE FIXO - ASSISTIR */
.watch-now-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: #cc33ff;
    color: #fff;
    padding: 14px 28px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    z-index: 999999999;
    cursor: pointer;
    opacity: 0.92;
    transition: 0.2s;
}

.watch-now-btn:hover {
    opacity: 1;
    transform: scale(1.05);
}

.owl-next,
.owl-prev img {
    width: 40px !important;
    height: 40px !important;

}


@media (max-width: 600px) {
    .watch-now-btn {
        bottom: 15px;
        right: 15px;
        padding: 12px 22px;
        font-size: 1rem;
    }
}

.close {
    display: flex;
    align-items: center;

    padding: 12px;
    text-align: center;
}

.closeBtn {
    color: white;
    font-weight: 800;
    background-color: var(--secondary);
}

/* ===========================================
   HAMBURGER (Mobile)
=========================================== */
.hamburger {
    display: none;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 10px;
    z-index: 9999;
}

.hamburger span {
    height: 4px;
    background: #fff;
    border-radius: 4px;
    transition: .3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ===========================================
   HEADER RIGHT (Busca, Categorias, Avatar)
=========================================== */
.header-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* BUSCA */
.search-box {
    display: flex;
    align-items: center;
    background: #1c1c1c;
    color: #fff;
    border: 1px solid #333;
    border-radius: 6px;
    font-size: 15px;
    min-width: 250px;
}

.search-box:focus-within {
    border-color: var(--primary);
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    width: 160px;
    transition: width 0.3s ease;
}

.search-box input:focus {
    width: 200px;
}

/* SELECT CATEGORIAS */
.fixed-categories select {
    background: #1c1c1c;
    color: #fff;
    border: 1px solid #333;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 15px;
    margin-right: 8px;
}

.user-menu {
    position: relative;
    display: inline-block;
}

.user-avatar {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
    transition: transform .2s;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-avatar:hover {
    transform: scale(1.05);
}

.user-dropdown {
    position: absolute;
    right: 0;
    top: 55px;
    background: var(--secondary);
    border: 1px solid #333;
    border-radius: 6px;
    width: 180px;
    padding: 10px 0;
    display: none;
    flex-direction: column;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .4);
}

.user-dropdown a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 15px;
    transition: background .2s;

    border: 0.1rem solid var(--primary);

    margin: 0 10px;
}

.user-dropdown a:hover {
    background: #222;
}

/* ===========================================
   MOBILE MENU
=========================================== */
@media (max-width: 1024px) {

    .hamburger {
        display: flex;
    }

    .header-right {
        position: fixed;
        top: 0px;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        align-items: flex-start;
        padding: 0 20px;
        background: rgba(0, 0, 0, 0.459);
        backdrop-filter: blur(50px);
        transition: .3s ease;
    }

    .header-right.open {
        height: 100%;
        padding-top: 80px;
    }

    .search-box input {
        width: 140px;
    }

    .fixed-categories select {
        width: 100%;
        min-width: 300px;
    }

    .user-avatar {
        margin-top: 5px;
    }


}

/* ===========================================
   MAIN WRAPPER / BACKGROUND
=========================================== */

.main-wrapper h2 {
    color: white;
}

/* ===========================================
   BANNER
=========================================== */
.banner-wrapper .banner-wrap {
    border-radius: 0;
    height: 70vh !important;
}

/* ===========================================
   LANÇAMENTOS / OWL CAROUSEL
=========================================== */
#lancamentos {
    height: 100%;
    background: linear-gradient(to right, #211813, #211813);
    padding-bottom: 20px;
}




.main-wrapper section .owl-item {
    max-width: 200px !important;
    height: 50% !important;

}

.owl-nav {
    top: -55px !important;
}

/* permite que os itens ultrapassem os limites do carrossel */
#lancamentos .owl-stage-outer,
#lancamentos .owl-stage {
    overflow: visible !important;
}

/* ===========================================
   SECTION SPACING
=========================================== */
.slide-image {
    background-position: bottom !important;
}

/* ===========================================
   ANIMAÇÕES
=========================================== */
@keyframes fadeSeq {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}