.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -100%;
    z-index: 2500;
    background: linear-gradient(180deg, rgba(25,25,25,0.96), rgba(17,17,17,0.98));
    border-top: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    color: #fff;
    transition: transform 280ms cubic-bezier(.2,.9,.3,1), bottom 0s linear 280ms;
    transform: translateY(100%);
    padding: 1rem 0;
}
.cookie-consent.is-visible {
    bottom: 0;
    transform: translateY(0);
    transition: transform 280ms cubic-bezier(.2,.9,.3,1);
}
.cookie-consent-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
}
.cookie-consent-text {
    margin: 0;
    color: #e9e9e9;
}
.cookie-consent a {
    color: #9ad1ff;
    text-decoration: none;
}
.cookie-consent a:hover {
    text-decoration: underline;
}
.cookie-consent-actions .btn {
    border-radius: 999px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    border: none;
    background: #e6e6e6;
    color: #000;
    transition: transform .08s ease, background .18s ease;
}
.cookie-consent-actions .btn:hover {
    background: #ffffff;
    transform: translateY(-1px);
}
@media (max-width: 640px) {
    .cookie-consent-content {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .cookie-consent-actions {
        display: flex;
        justify-content: flex-end;
    }
}