#cookie-consent-banner {
    all: unset;
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    background: #1a1a1a;
    color: #fff;
    padding: 16px 20px;
    z-index: 99999;
}
#cookie-consent-banner.is-visible {
    display: block;
}
#cookie-consent-banner * {
    box-sizing: border-box;
}
#cookie-consent-banner .cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
}
#cookie-consent-banner .cookie-consent-text {
    margin: 0 0 12px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    font-family: Arial, sans-serif;
}
#cookie-consent-banner .cookie-consent-text a {
    color: #f5a623;
    text-decoration: underline;
}
#cookie-consent-banner .cookie-consent-buttons {
    display: flex;
    gap: 10px;
}
#cookie-consent-banner .cookie-consent-buttons button {
    flex: 1;
    padding: 12px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: Arial, sans-serif;
}
#cookie-consent-banner #cookie-accept-btn {
    background: #f5a623;
    color: #1a1a1a;
}
#cookie-consent-banner #cookie-decline-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
}