/* ==========================================
   COOKIE CONSENT BANNER
   ASOBOAD EN Tools — GDPR Compliance
   ========================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(29, 29, 31, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #f5f5f7;
    padding: 20px 24px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.82rem;
    line-height: 1.6;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
    color: #ccc;
}

.cookie-banner-text a {
    color: #6eb5ff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-text a:hover {
    color: #99ccff;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #007AFF;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #0066d6;
}

.cookie-btn-decline {
    background: transparent;
    color: #aaa;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-decline:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile */
@media (max-width: 600px) {
    .cookie-banner {
        padding: 16px;
        font-size: 0.78rem;
    }

    .cookie-banner-inner {
        flex-direction: column;
        gap: 14px;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
        padding: 12px 16px;
    }
}
