/* Cookie Consent Banner */
#cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(20, 20, 20, 0.96);
    color: #fff;
    transform: translateY(100%);
    transition: transform 280ms ease-in-out, opacity 200ms ease-in-out;
    opacity: 0.98;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
}

#cookie-consent.is-visible {
    transform: translateY(0);
}

#cookie-consent.is-hiding {
    opacity: 0.0;
}

.cookie-consent__content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.cookie-consent__text {
    margin: 0;
    line-height: 1.4;
    font-size: 14px;
    flex: 1;
}

.cookie-consent__actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cookie-btn {
    border: none;
    cursor: pointer;
    border-radius: 6px;
    padding: 10px 14px;
    font-weight: 600;
    font-family: inherit;
}

/* Accept is intentionally much larger and primary */
.cookie-btn--accept {
    background: #ffd83d; /* Helios-like highlight */
    color: #141414;
    padding: 14px 26px; /* Larger */
    font-size: 16px;
    box-shadow: 0 2px 0 rgba(0,0,0,0.2);
}

.cookie-btn--accept:hover { filter: brightness(0.98); }

/* Reject is smaller and subtle */
.cookie-btn--reject {
    background: transparent;
    color: #ddd;
    border: 1px solid #555;
    padding: 8px 10px; /* Smaller */
    font-size: 13px;
}

@media (max-width: 720px) {
    .cookie-consent__content {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-consent__actions {
        justify-content: flex-end;
    }
}

