#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1a1a2e;
    color: #fff;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.3);
    font-family: "Circe", sans-serif;
    font-size: 14px;
    line-height: 1.5;
}
#cookie-consent.hidden {
    display: none;
}
#cookie-consent p {
    margin: 0;
    flex: 1;
}
#cookie-consent a {
    color: #4fc3f7;
    text-decoration: underline;
}
.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
#cookie-consent-accept,
#cookie-consent-decline {
    border: none;
    padding: 10px 28px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-family: "Circe", sans-serif;
    white-space: nowrap;
    transition: background 0.2s;
}
#cookie-consent-accept {
    background: #0077b6;
    color: #fff;
}
#cookie-consent-accept:hover {
    background: #005f8e;
}
#cookie-consent-decline {
    background: #0077b6;
    color: #fff;
}
#cookie-consent-decline:hover {
    background: #005f8e;
}

@media (max-width: 600px) {
    #cookie-consent {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
    }
    .cookie-consent-buttons {
        width: 100%;
    }
    #cookie-consent-accept,
    #cookie-consent-decline {
        flex: 1;
        text-align: center;
    }
}
