/* ============================================
   COOKIES CONSENT BANNER
   ============================================ */

.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--primary);
    padding: 20px;
    z-index: 9999;
    animation: slideUp 0.5s ease-out;
    box-shadow: 0 -8px 32px rgba(255, 255, 255, 0.08);
}

.cookies-banner.hide {
    animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookies-text {
    flex: 1;
    min-width: 300px;
}

.cookies-text h3 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.cookies-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.cookies-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.cookies-text a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.cookies-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.btn-reject,
.btn-accept {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-reject {
    background: transparent;
    border: 2px solid var(--text-secondary);
    color: var(--text-secondary);
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.btn-accept {
    background: var(--primary);
    color: var(--dark-bg);
    border: 2px solid var(--primary);
}

.btn-accept:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
}

/* Responsive */
@media (max-width: 768px) {
    .cookies-banner {
        padding: 15px;
    }

    .cookies-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .cookies-text {
        width: 100%;
    }

    .cookies-buttons {
        width: 100%;
        justify-content: stretch;
        gap: 10px;
    }

    .btn-reject,
    .btn-accept {
        flex: 1;
    }
}
