.cookie-notification {
    background: rgba(0, 0, 0, 0.96);
    border-top: 2px solid #3b82f6;
    bottom: 0;
    color: #fff;
    left: 0;
    padding: 1.25rem;
    position: fixed;
    right: 0;
    transform: translateY(100%);
    transition: transform 0.25s ease;
    z-index: 9999;
}

.cookie-notification.show {
    transform: translateY(0);
}

.cookie-content {
    align-items: center;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-text p + p {
    margin-top: 0.35rem;
}

.cookie-text a {
    color: #a7c7ff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.cookie-accept,
.cookie-decline {
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    padding: 0.75rem 1.2rem;
    white-space: nowrap;
}

.cookie-accept {
    background: linear-gradient(135deg, #3b82f6, #a855f7);
    border: 0;
    color: #fff;
}

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

.cookie-accept:hover,
.cookie-accept:focus-visible {
    background: linear-gradient(135deg, #2563eb, #9333ea);
}

.cookie-decline:hover,
.cookie-decline:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

@media (max-width: 768px) {
    .cookie-content,
    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-content {
        text-align: center;
    }

    .cookie-buttons,
    .cookie-accept,
    .cookie-decline {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cookie-notification {
        transition: none;
    }
}