.porter-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background: #1a1a2e;
    color: #e0e0e0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}
.porter-consent-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px 30px;
}
.porter-consent-text {
    margin: 0 0 16px;
    font-size: 15px;
}
.porter-consent-categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.porter-consent-category {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    cursor: pointer;
}
.porter-consent-required {
    opacity: 0.7;
    cursor: default;
}
.porter-consent-checkbox {
    margin-top: 3px;
    flex-shrink: 0;
}
.porter-consent-label {
    display: block;
    font-size: 14px;
}
.porter-consent-label em {
    color: #999;
    font-size: 12px;
}
.porter-consent-desc {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}
.porter-consent-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.porter-consent-btn {
    padding: 10px 24px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}
.porter-consent-btn-primary {
    background: #780800;
    color: #fff;
}
.porter-consent-btn-primary:hover { background: #960a00; }
.porter-consent-btn-secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}
.porter-consent-btn-secondary:hover { background: rgba(255,255,255,0.25); }
.porter-consent-btn-link {
    background: transparent;
    color: #999;
    text-decoration: underline;
    padding: 10px 12px;
}
.porter-consent-btn-link:hover { color: #fff; }
@media (max-width: 600px) {
    .porter-consent-inner { padding: 16px; }
    .porter-consent-actions { flex-direction: column; }
    .porter-consent-btn { width: 100%; text-align: center; }
}
