/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: -100%; /* Скрыт по умолчанию */
    left: 0;
    width: 100%;
    background: rgba(10, 20, 40, 0.95);
    border-top: 1px solid var(--cyan);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    transition: bottom 0.5s ease-in-out;
}

.cookie-banner.active {
    bottom: 0;
}

.cookie-text {
    color: #ccc;
    font-size: 14px;
    max-width: 800px;
}

.cookie-text a {
    color: var(--cyan);
    text-decoration: none;
    border-bottom: 1px solid var(--cyan);
}

.cookie-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 13px;
    transition: 0.3s;
    white-space: nowrap;
}

.cookie-btn:hover {
    background: var(--cyan);
    color: #000;
    box-shadow: 0 0 15px var(--cyan);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}





