body {
    background-color: #000000 !important;
    background-image: none !important;
    padding-bottom: 0 !important;
    overflow: hidden;
}

body::before {
    display: none !important;
}

.floating-nav {
    display: none !important;
}

.drawer-overlay {
    display: none !important;
}

.drawer-nav {
    display: none !important;
}

.site-wrapper {
    max-width: 100vw !important;
    padding: 0 !important;
    margin: 0 !important;
}

.cinema-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cinema-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.cinema-image {
    max-width: 100vw;
    max-height: 100vh;
    width: auto;
    height: auto;
    object-fit: contain;
    user-select: none;
}

.cinema-btn {
    position: absolute;
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    z-index: 10000;
    transition: background 0.2s, opacity 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.cinema-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-cinema-close {
    top: 20px;
    left: 20px;
}

.btn-cinema-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.btn-cinema-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.cinema-btn.disabled {
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
}

.cinema-counter {
    position: absolute;
    top: 25px;
    right: 25px;
    color: rgba(255, 255, 255, 0.6);
    font-family: monospace;
    font-size: 14px;
    font-weight: bold;
    z-index: 10000;
    background: rgba(0,0,0,0.4);
    padding: 6px 12px;
    border-radius: 20px;
}

/* Reels Container (Mobile) */
.reels-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    z-index: 9999;
    overflow: hidden;
}

.reels-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    text-decoration: none;
    transition: background 0.2s;
}

/* Reels Wrapper */
.reels-wrapper {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.reels-wrapper::-webkit-scrollbar {
    display: none;
}

/* Reel Page */
.reel-page {
    width: 100vw;
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.reel-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

/* Counter */
.reels-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ffffff;
    font-family: monospace;
    font-size: 14px;
    font-weight: bold;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
}

.reels-current {
    font-size: 16px;
}

/* Reel bloqueada (sem assinatura) */
.reel-page-locked {
    background: #000;
}

.reel-locked-box {
    width: 90%;
    max-width: 340px;
    text-align: center;
    padding: 40px 28px;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    color: #fff;
}

.reel-locked-box h2 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.reel-locked-price {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    opacity: 0.9;
}

.reel-locked-box .btn-restricted-login {
    width: 100%;
    text-align: center;
}

.reel-locked-box .crown-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

/* Media Queries */
@media (max-width: 768px) {
    .cinema-container {
        display: none !important;
    }

    .reels-container {
        display: block !important;
    }
}

@media (min-width: 769px) {
    .reels-container {
        display: none !important;
    }
}
