.cookie-consent-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    z-index: 5000;
    max-width: 560px;
    margin: 0 auto;
    background: #2a2840;
    color: #f4f1ff;
    border-radius: 16px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
    padding: 18px 18px 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.cookie-consent-inner h2 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}
.cookie-consent-inner p {
    margin: 0 0 10px;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #d9d4ef;
}
.cookie-consent-links a {
    color: #c4b8f0;
    font-weight: 600;
    font-size: 0.88rem;
}
.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.cookie-consent-actions button {
    flex: 1 1 140px;
    border: none;
    border-radius: 10px;
    padding: 12px 14px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    width: auto;
    min-width: 0;
    color: inherit;
}
.cookie-consent-reject {
    background: transparent;
    color: #f4f1ff;
    border: 2px solid #8b7dd4 !important;
}
.cookie-consent-accept {
    background: linear-gradient(135deg, #6b4bcc, #e0559b);
    color: #fff;
}
