/* TOP MARQUEE */
.top-marquee {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background-color: #D32F2F;
    color: white;
    z-index: 1002;
    display: flex;
    align-items: center;
    text-decoration: none;
    overflow: hidden;
}

.top-marquee span {
    display: inline-block;
    white-space: nowrap;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    animation: marquee 20s linear infinite;
}

.top-marquee:hover span {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* NAVBAR ADJUSTMENT */
.navbar {
    top: 35px !important; /* Push navbar down for marquee */
}

/* STICKY RIGHT BUTTON */
.sticky-right-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform-origin: right bottom;
    transform: rotate(-90deg) translateX(50%);
    background-color: #FFD700;
    color: #0f0f23;
    padding: 12px 25px;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 8px 8px 0 0;
    z-index: 999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: background-color 0.3s ease;
    letter-spacing: 1px;
}

.sticky-right-btn:hover {
    background-color: #ffea00;
}

/* LANGUAGE MENU */
.lang-dropdown .dropdown-content {
    min-width: 150px;
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}
