/* ========================================================================
   Nume Uno — GDPR Cookie Consent Styles (consent.css)
   Isolated, vibe-matched floating card, centered prominently at screen bottom.
   ======================================================================== */

.nu-cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(24px) scale(0.97);
    width: calc(100% - 2rem);
    max-width: 520px;
    z-index: 99999;
    background: #1c1d22;
    border: 1px solid #3d4048;
    border-radius: 18px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.65);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nu-cookie-banner--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.nu-cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.nu-cookie-badge {
    display: inline-block;
    font-family: 'Lexend', system-ui, -apple-system, sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #8fdae2;
    margin-bottom: 0.35rem;
}

.nu-cookie-title {
    font-family: 'Lexend', system-ui, -apple-system, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #f8f8fa;
    line-height: 1.3;
    margin: 0 0 0.4rem 0;
    letter-spacing: -0.02em;
}

.nu-cookie-desc {
    font-family: 'Lexend', system-ui, -apple-system, sans-serif;
    font-size: 0.825rem;
    font-weight: 300;
    color: #9d9da7;
    line-height: 1.55;
    margin: 0 0 0.4rem 0;
}

.nu-cookie-scroll-hint {
    display: block;
    font-family: 'Lexend', system-ui, -apple-system, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: #8fdae2;
    opacity: 0.85;
}

.nu-cookie-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.nu-cookie-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.2rem;
    border-radius: 9999px;
    font-family: 'Lexend', system-ui, -apple-system, sans-serif;
    font-size: 0.825rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    outline: none;
}

.nu-cookie-btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #dfe0e5;
    border: 1px solid #3d4048;
}

.nu-cookie-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #9d9da7;
    color: #f8f8fa;
}

.nu-cookie-btn--primary {
    background: #8fdae2;
    color: #141318;
    font-weight: 600;
}

.nu-cookie-btn--primary:hover {
    background: #a3e4eb;
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .nu-cookie-banner {
        bottom: 1rem;
        width: calc(100% - 1.5rem);
        padding: 1.25rem;
        border-radius: 16px;
    }

    .nu-cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .nu-cookie-btn {
        width: 100%;
    }
}
