/* ===== LEGAL PAGE STYLES ===== */
.bbr-legal-wrap {
    background: var(--black);
    min-height: 100vh;
    padding: 60px 20px;
}

.bbr-legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.bbr-legal-title {
    font-family: 'Bebas Neue', cursive !important;
    font-size: 48px !important;
    color: var(--white) !important;
    text-align: center;
    margin: 0 0 40px !important;
    letter-spacing: 2px !important;
}

.bbr-legal-content h2 {
    font-family: 'Bebas Neue', cursive !important;
    font-size: 24px !important;
    color: var(--gold) !important;
    margin: 32px 0 12px !important;
    letter-spacing: 1px !important;
}

.bbr-legal-content p,
.bbr-legal-content li {
    color: var(--white-muted);
    font-size: 14px;
    line-height: 1.8;
}

.bbr-legal-content ul {
    padding-left: 20px;
    margin: 10px 0 20px;
}

.bbr-legal-content a {
    color: var(--gold) !important;
    text-decoration: underline;
}

/* ===== CONTACT FORM ===== */
.bbr-contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.bbr-form-group {
    margin-bottom: 20px;
}

.bbr-form-group label {
    display: block;
    font-family: 'Bebas Neue', cursive;
    font-size: 16px;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.bbr-form-group input,
.bbr-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--black-elevated) !important;
    border: 1px solid var(--black-border) !important;
    border-radius: 8px;
    color: var(--white) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.bbr-form-group input:focus,
.bbr-form-group textarea:focus {
    outline: none;
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

.bbr-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Honeypot field */
.bbr-hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.bbr-contact-submit {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--black) !important;
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    letter-spacing: 3px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.25);
    margin-top: 10px;
}

.bbr-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.4);
}

.bbr-contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.bbr-contact-result {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    min-height: 24px;
}

.bbr-contact-result.success {
    color: #4CAF50;
}

.bbr-contact-result.error {
    color: #FF4444;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .bbr-legal-wrap {
        padding: 40px 16px;
    }

    .bbr-legal-title {
        font-size: 36px !important;
    }
}
