#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 16px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 9999;
    font-size: 14px;
    font-family: system-ui, -apple-system, sans-serif;
}

#cookie-consent-banner p {
    margin: 0;
    flex: 1 1 300px;
}

#cookie-consent-banner a {
    color: #4fd1c5;
    text-decoration: underline;
}

#cookie-consent-banner .cc-buttons {
    display: flex;
    gap: 8px;
}

#cookie-consent-banner button {
    padding: 8px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

#cc-accept {
    background: #10b981;
    color: #fff;
}

#cc-decline {
    background: transparent;
    color: #fff;
    border: 1px solid #666 !important;
}