#lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #f0f0f0;
    z-index: 9999;
    padding: 14px 16px;
    box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.35);
    font-size: 0.82rem;
    line-height: 1.5;
}

.lgpd-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.lgpd-text {
    flex: 1 1 300px;
}

.lgpd-text p {
    margin: 0;
}

.lgpd-text a {
    color: #7dd3fc;
    text-decoration: underline;
}

.lgpd-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.lgpd-btn {
    padding: 8px 18px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
}

.lgpd-btn-accept {
    background: #00B67A;
    color: #fff;
}

.lgpd-btn-accept:hover {
    background: #009e6a;
}

.lgpd-btn-reject {
    background: transparent;
    color: #d0d0d0;
    border: 1px solid #555;
}

.lgpd-btn-reject:hover {
    border-color: #aaa;
    color: #fff;
}

@media (max-width: 480px) {
    .lgpd-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .lgpd-actions {
        justify-content: center;
    }
}
