
/* DARKENER OVERLAY */
#darkenerDiv {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* COOKIE MODAL */
#transitionDivCookie {
    top: 100%;
    z-index: 99999;
    background-color: #191919;
    position: fixed;
    left: 0;
    width: 100vw;
    height: var(--app-height, 100vh);
    will-change: transform;
    overflow-y: scroll;
    display: block !important;
    transition: top 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.CookieDeclaration {
    width: 70vw;
}

.cookie_cont {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    padding: 3rem 1rem;
}

.closeBtnCookie {
    position: fixed;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 100000;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    backdrop-filter: blur(4px);
}

.closeBtnCookie:hover {
    background: #FF6B9D;
    transform: rotate(90deg);
}

.camping__quest {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FF6B9D;
    margin-bottom: 2rem;
    text-align: center;
}

@media only screen and (max-width: 750px) {
    #transitionDivCookie {
        overflow: scroll;
        padding-top: 11vw;
        padding-bottom: 11vw;
    }
    .CookieDeclaration {
        width: 90vw;
    }
    .camping__quest {
        font-size: 2rem;
    }
}

/* VALENTINO MARQUEE - CLEAN VERSION */
.valentino-marquee-section {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0510 0%, #0a0f1a 100%);
    border-top: 3px solid #FF6B9D;
    border-bottom: 3px solid #FF1744;
    transform: rotate(-1.5deg);
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.3);
    position: relative;
    z-index: 10;
}

.valentino-marquee-track {
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0;
    position: relative;
}

.valentino-marquee-content {
    display: inline-flex;
    white-space: nowrap;
    will-change: transform;
}

.valentino-item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-right: 2.5rem;
    font-size: 1.8rem;
    font-weight: 900;
    color: #FF6B9D;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(255, 107, 157, 0.5);
}

.valentino-badge {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    display: inline-block;
}

@media (max-width: 960px) {
    .valentino-item {
        font-size: 1.4rem;
        margin-right: 2rem;
    }
    
    .valentino-badge {
        font-size: 0.9rem;
        padding: 0.25rem 0.7rem;
    }
}

@media (max-width: 578px) {
    .valentino-marquee-section {
        margin: 1.5rem 0;
    }
    
    .valentino-marquee-track {
        padding: 1rem 0;
    }
    
    .valentino-item {
        font-size: 1.1rem;
        margin-right: 1.5rem;
        gap: 0.7rem;
    }
    
    .valentino-badge {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }
}
