/* Consent banner — deliberately standalone (own tokens, no dependency on
   style.css) so the same file works if copied into a game bundle that
   doesn't share the portal's stylesheet. */
#slopz-consent-banner {
    --sc-bg: #15172e;
    --sc-border: #2a2d54;
    --sc-text: #ffffff;
    --sc-muted: #9aa0c3;
    --sc-accent: #7c5cff;

    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20000;
    background: var(--sc-bg);
    border-top: 1px solid var(--sc-border);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    animation: slopz-consent-in 0.25s ease;
}

@keyframes slopz-consent-in {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.slopz-consent-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.slopz-consent-text {
    flex: 1 1 380px;
    margin: 0;
    color: var(--sc-text);
    font-size: 13px;
    line-height: 1.5;
}

.slopz-consent-text a {
    color: var(--sc-accent);
    text-decoration: underline;
}

.slopz-consent-actions {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
    margin-left: auto;
}

.slopz-consent-btn {
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.slopz-consent-reject {
    background: transparent;
    color: var(--sc-muted);
    border: 1px solid var(--sc-border);
}

.slopz-consent-reject:hover {
    color: var(--sc-text);
    border-color: var(--sc-muted);
}

.slopz-consent-accept {
    background: var(--sc-accent);
    color: #ffffff;
}

.slopz-consent-accept:hover {
    filter: brightness(1.1);
}

@media (max-width: 600px) {
    .slopz-consent-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .slopz-consent-actions {
        margin-left: 0;
    }

    .slopz-consent-btn {
        flex: 1;
    }
}
