/* Extra Modal-specific Styles */

/* Base Modal Layouts */
.modal-overlay.pix-overlay-custom {
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.modal-content.mw-400 {
    max-width: 400px;
}

.modal-content.mw-360 {
    max-width: 360px;
}

/* MFA Setup & QR */
.mfa-qr-card {
    background: white;
    padding: 16px;
    border-radius: 12px;
    margin: 24px auto;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mfa-qr-img {
    width: 200px;
    height: 200px;
    display: block;
}

.mfa-manual-code-box {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 8px;
}

.mfa-secret-text {
    flex: 1;
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.mfa-verify-input {
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: 4px;
    padding: 12px;
    border-radius: var(--radius-sm);
}

/* MFA Login / Action Challenges */
.mfa-challenge-overlay {
    background: rgba(0, 0, 0, 0.98);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.mfa-action-overlay {
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    backdrop-filter: blur(8px);
}

.mfa-input-boxed {
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 6px;
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-sm);
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-weight: 700;
    margin-bottom: 35px;
    /* Added spacing */
}

/* Bet Success Animation & Card */
.success-icon-container {
    width: 64px;
    height: 64px;
    background: rgba(255, 193, 7, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 1px solid var(--color-primary);
}

.success-details-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: left;
    border: 1px solid var(--border-color);
}

/* Legal Content Scrollers */
.legal-scroll-area {
    max-height: 60vh;
    overflow-y: auto;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    padding-right: 10px;
}

/* Component Helpers */
.price-display-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.availability-info {
    font-size: 0.8rem;
    color: #ffc107;
    margin-bottom: 6px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Delete Account Specifics */
.delete-warning-icon {
    width: 60px;
    height: 60px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.bg-card-custom {
    background: var(--bg-card) !important;
}

.border-custom {
    border: 1px solid var(--border-color) !important;
}

.shadow-neon-custom {
    box-shadow: var(--shadow-neon) !important;
}

.font-main-custom {
    font-family: var(--font-main) !important;
}

.border-top-custom {
    border-top: 1px solid var(--border-color) !important;
}

.prize-glow-custom {
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3) !important;
}

.btn-success-close {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 600;
}

.btn-success-view {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    background: var(--gold-gradient);
    border: none;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-neon);
}

.text-underline {
    text-decoration: underline !important;
}

.mt-2 {
    margin-top: 2px !important;
}

.w-20 {
    width: 20px !important;
}

.h-20 {
    height: 20px !important;
}

.w-40 {
    width: 40px !important;
}

.h-40 {
    height: 40px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.hidden-input-pix {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.btn-mfa-logout {
    background: transparent;
    border: none;
    color: #666;
    font-size: 0.85rem;
    margin-top: 20px;
    cursor: pointer;
    text-decoration: underline;
}

.btn-mfa-logout:hover {
    color: #999;
}

.btn-danger-outline {
    border-color: #ef4444 !important;
    color: #ef4444 !important;
}

.btn-danger-outline:hover {
    background: rgba(239, 68, 68, 0.1);
}

/* Modals Overlay Helpers */
.z-extra {
    z-index: 20000 !important;
}

.z-max {
    z-index: 20100 !important;
}

.modal-content.delete-modal-border {
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
}

.text-error-red {
    color: #ef4444 !important;
}