/* Background Gradient */
body {
    background: linear-gradient(135deg, #4e1e14 0%, #1f0c02 100%);
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Desktop: Maximum width 500px and centered */
@media (min-width: 768px) {
    .container-fluid {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Glass Panel Effect */
.glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgb(135 80 31 / 25%);
}

/* User Name */
.user-name {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Admin Icon Link */
.admin-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.admin-icon-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    color: white;
}

.admin-icon-link i {
    font-size: 1.1rem;
}

/* Glass Buttons */
.glass-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 4px 16px 0 rgb(135 80 31 / 25%),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.7rem !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-btn * {
    font-size: 0.7rem !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
}

.glass-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.glass-btn:hover::before {
    left: 100%;
}

.glass-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 12px 40px 0 rgba(31, 38, 135, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.15);
    color: white;
    transform: translateY(-2px);
}

/* Square Glass Buttons */
.glass-btn-square {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 4px 16px 0 rgb(135 80 31 / 25%),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.1);
    color: white;
    padding: 0.35rem 0.5rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-btn-square::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.glass-btn-square:hover::before {
    left: 100%;
}

.glass-btn-square i {
    font-size: 1.2rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.glass-btn-square span {
    font-size: 0.7rem !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    position: relative;
    z-index: 1;
}

.glass-btn-square {
    font-size: 0.7rem !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
}

.glass-btn-square:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 
        0 6px 20px 0 rgba(31, 38, 135, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.12);
    color: white;
    transform: translateY(-1px);
}

/* Balance Panel */
.balance-panel {
    background: linear-gradient(135deg, #ffa207 0%, #ab4e0a 100%);
    box-shadow: 0 8px 32px 0 rgb(212 181 0 / 40%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    padding: 1rem 1.5rem;
}

.balance-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.balance-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.balance-amount {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ============================================
   GLASS MODAL / POPUP
   ============================================ */

/* Modal Backdrop con blur */
.glass-modal .modal-backdrop {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.glass-modal.show .modal-backdrop {
    opacity: 1;
}

/* Modal Dialog */
.glass-modal .modal-dialog {
    max-width: 90%;
    margin: 1rem auto;
}

@media (min-width: 576px) {
    .glass-modal .modal-dialog {
        max-width: 450px;
    }
}

/* Modal Content - Glassmorphism */
.glass-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.37),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: white;
    overflow: hidden;
}

/* Modal Header */
.glass-modal-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.25rem 1.5rem;
    border-radius: 1rem 1rem 0 0;
}

.glass-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Botón de cerrar */
.glass-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 0;
}

.glass-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: rotate(90deg);
}

.glass-modal-close::before {
    content: 'x';
    color: white;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 300;
}

.glass-modal-close {
    background-image: none;
}

/* Modal Body */
.glass-modal-body {
    padding: 1.5rem;
    background: white;
    color: #333;
    border-radius: 0 0 1rem 1rem;
}

.glass-modal-body p {
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.glass-modal-body * {
    color: #333;
}

/* Inputs dentro del modal body (fondo blanco) */
.glass-modal-body .glass-input {
    background: rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    color: #333 !important;
}

.glass-modal-body .glass-input::placeholder {
    color: rgba(0, 0, 0, 0.4) !important;
}

.glass-modal-body .glass-input:focus {
    background: rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(0, 0, 0, 0.3) !important;
    color: #333 !important;
}

.glass-modal-body .glass-input-icon {
    background: rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    border-right: none !important;
    color: #333 !important;
}

.glass-modal-body .input-group .glass-input-icon:last-child {
    border-left: 1px solid rgba(0, 0, 0, 0.15) !important;
    border-right: 1px solid rgba(0, 0, 0, 0.15) !important;
}

.glass-modal-body .glass-input[readonly] {
    background-color: #e9ecef !important;
    cursor: not-allowed;
    opacity: 0.7;
}

/* ============================================
   BOTONES DENTRO DE MODALES (VERDES Y MÁS GRANDES)
   ============================================ */

.glass-modal .btn,
.glass-modal-body .btn,
.glass-modal-btn {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.8) 0%, rgba(0, 180, 150, 0.7) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 212, 170, 0.4);
    border-top: 1px solid rgba(0, 212, 170, 0.5);
    box-shadow: 
        0 6px 20px 0 rgba(0, 212, 170, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.85rem !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.glass-modal .btn *,
.glass-modal-body .btn *,
.glass-modal-btn * {
    font-size: 0.85rem !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    color: white !important;
}

.glass-modal .btn::before,
.glass-modal-body .btn::before,
.glass-modal-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.glass-modal .btn:hover::before,
.glass-modal-body .btn:hover::before,
.glass-modal-btn:hover::before {
    left: 100%;
}

.glass-modal .btn:hover,
.glass-modal-body .btn:hover,
.glass-modal-btn:hover {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.95) 0%, rgba(0, 180, 150, 0.85) 100%);
    border-color: rgba(0, 212, 170, 0.6);
    box-shadow: 
        0 8px 30px 0 rgba(0, 212, 170, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15);
    color: white;
    transform: translateY(-2px);
}

.glass-modal .btn:active,
.glass-modal-body .btn:active,
.glass-modal-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 4px 15px 0 rgba(0, 212, 170, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.1);
}

.glass-modal .btn:disabled,
.glass-modal-body .btn:disabled,
.glass-modal-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.glass-modal .btn i,
.glass-modal-body .btn i,
.glass-modal-btn i {
    position: relative;
    z-index: 2;
    margin-right: 0.5rem;
}

/* Animación de entrada */
.glass-modal.fade .modal-dialog {
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    transform: translateY(-50px);
    opacity: 0;
}

.glass-modal.show .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .balance-amount {
        font-size: 2.2rem;
    }
    
    .glass-btn-square {
        padding: 0.75rem 0.25rem;
    }
    
    .glass-btn-square i {
        font-size: 1.2rem;
    }
    
    .glass-btn-square span {
        font-size: 1rem;
    }
    
    .glass-modal .modal-dialog {
        max-width: 95%;
        margin: 0.5rem auto;
    }
    
    .glass-modal-header {
        padding: 1rem 1.25rem;
    }
    
    .glass-modal-body {
        padding: 1.25rem;
    }
}

/* ============================================
   BADGE EN BOTONES
   ============================================ */

/* Ajuste del badge en botones - sobrescribe estilos de Bootstrap */
.btn .badge,
.glass-btn-square .badge,
.btn.position-relative .badge,
.glass-btn-square.position-relative .badge,
#btnSoporte .badge,
.btn .position-absolute.badge,
.glass-btn-square .position-absolute.badge {
    top: 15px !important;
    left: 60px !important;
}

/* ============================================
   REGISTRATION FORM STYLES
   ============================================ */

.registration-section {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.registration-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Glass Inputs */
.glass-input {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0.5rem !important;
    color: white !important;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1);
    color: white !important;
    outline: none;
}

.glass-input-icon {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-right: none !important;
    border-radius: 0.5rem 0 0 0.5rem !important;
    color: white;
    padding: 0.75rem 1rem;
}

.input-group .glass-input {
    border-radius: 0 0.5rem 0.5rem 0 !important;
}

.input-group .glass-input:focus {
    border-left: none !important;
}

/* Text colors */
.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Form validation styles */
.form-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Glass Checkbox */
.form-check {
    padding-left: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

/* Alinear checkbox con los campos del formulario (mismo padding que los inputs con icono) */
.registration-form .form-check {
    padding: 0;
    margin: 0;
}

.registration-form .glass-checkbox {
    margin-left: 0;
    margin-right: 0.75rem;
}

.glass-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-right: 0.75rem;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    transition: all 0.3s ease;
    vertical-align: middle;
    flex-shrink: 0;
}

.glass-checkbox:checked {
    background: rgba(0, 212, 170, 0.5);
    border-color: rgba(0, 212, 170, 0.8);
}

.glass-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.glass-checkbox:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.form-check-label {
    cursor: pointer;
    user-select: none;
    line-height: 1.5;
}

/* ============================================
   GLASS MESSAGES (Success & Error)
   ============================================ */

.glass-message {
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 4px 16px 0 rgba(31, 38, 135, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: slideInDown 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

.glass-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

.glass-message-success {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.25) 0%, rgba(0, 212, 170, 0.15) 100%);
    border-color: rgba(0, 212, 170, 0.4);
    color: #ffffff;
}

.glass-message-error {
    background: linear-gradient(135deg, rgba(255, 77, 77, 0.25) 0%, rgba(255, 77, 77, 0.15) 100%);
    border-color: rgba(255, 77, 77, 0.4);
    color: #ffffff;
}

.glass-message-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.glass-message-success .glass-message-icon {
    color: #00d4aa;
}

.glass-message-error .glass-message-icon {
    color: #ff4d4d;
}

.glass-message-content {
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.5;
}

.glass-message-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.375rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
    color: white;
    opacity: 0.8;
}

.glass-message-close:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: rotate(90deg);
}

.glass-message-close::before {
    content: '×';
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 300;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.glass-message.hide {
    animation: slideOutUp 0.3s ease-out forwards;
}

@keyframes slideOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* ============================================
   CARD DE MONTO EN BOLÍVARES (DEPOSITAR)
   ============================================ */

.depositar-monto-card {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.9) 0%, rgba(0, 180, 150, 0.85) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 212, 170, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 8px 32px 0 rgba(0, 212, 170, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: slideInDown 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

.depositar-monto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

.depositar-monto-card-content {
    position: relative;
    z-index: 1;
}

.depositar-monto-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.depositar-monto-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.depositar-monto-rate {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

/* ============================================
   CARD DE DATOS DEL PAGO MÓVIL (DEPOSITAR)
   ============================================ */

.depositar-pago-movil-card {
    background: #f8f9fa;
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    animation: slideInDown 0.3s ease-out;
}

.depositar-pago-movil-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 212, 170, 0.2);
}

.depositar-pago-movil-header i {
    font-size: 1.25rem;
    color: rgba(0, 212, 170, 1);
}

.depositar-pago-movil-header span {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(0, 212, 170, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.depositar-pago-movil-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.depositar-pago-movil-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.depositar-pago-movil-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.depositar-pago-movil-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #212529;
}

.depositar-pago-movil-value-with-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.depositar-pago-movil-value-with-copy span {
    font-size: 0.95rem;
    font-weight: 700;
    color: #212529;
    flex: 1;
}

.depositar-copy-btn {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 0.5rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    color: rgba(0, 212, 170, 1);
    flex-shrink: 0;
}

.depositar-copy-btn:hover {
    background: rgba(0, 212, 170, 0.2);
    border-color: rgba(0, 212, 170, 0.5);
    transform: scale(1.05);
}

.depositar-copy-btn:active {
    transform: scale(0.95);
}

.depositar-copy-btn i {
    font-size: 1rem;
}

.depositar-copy-btn.copied {
    background: rgba(0, 212, 170, 0.3);
    border-color: rgba(0, 212, 170, 0.6);
}

.depositar-copy-btn.copied i::before {
    content: "\f26d"; /* bi-check */
}

/* ============================================
   CAMPOS DE DEPÓSITO (REFERENCIA Y COMPROBANTE)
   ============================================ */

.depositar-upload-container {
    position: relative;
    width: 100%;
}

.depositar-file-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.depositar-upload-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: #1e3c72;
    border: none;
    border-radius: 0.75rem;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 60, 114, 0.3);
}

.depositar-upload-btn span {
    color: #ffffff !important;
}

.depositar-upload-btn i {
    color: #ffffff !important;
}

.depositar-upload-btn:hover {
    background: #2a5298;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 60, 114, 0.4);
}

.depositar-upload-btn:active {
    transform: translateY(0);
}

.depositar-upload-btn i {
    font-size: 1.25rem;
}

.depositar-file-name {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 212, 170, 0.15);
    border: 2px solid rgba(0, 212, 170, 0.4);
    border-radius: 0.5rem;
    color: #212529;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideInDown 0.3s ease-out;
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.2);
}

.depositar-file-name i {
    color: rgba(0, 212, 170, 1);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.depositar-file-name .text-success {
    color: #198754 !important;
    font-size: 1.2rem;
}

/* ============================================
   SPINNER DE CARGA (DEPOSITAR)
   ============================================ */

.depositar-loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    min-height: 300px;
}

.depositar-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 212, 170, 0.2);
    border-top-color: rgba(0, 212, 170, 1);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 2rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.depositar-loading-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.depositar-loading-subtitle {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 300px;
}

/* ============================================
   RESUMEN DE PAGO ENCONTRADO (DEPOSITAR)
   ============================================ */

.depositar-resumen-container {
    padding: 0;
}

.depositar-resumen-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 212, 170, 0.2);
}

.depositar-resumen-header i {
    font-size: 2.5rem;
    color: rgba(0, 212, 170, 1);
}

.depositar-resumen-header h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.depositar-resumen-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.depositar-resumen-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 212, 170, 0.05);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 0.75rem;
}

.depositar-resumen-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.depositar-resumen-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
}

.depositar-resumen-question {
    text-align: center;
    margin-bottom: 1.5rem;
}

.depositar-resumen-question p {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.depositar-confirmar-btn {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.9) 0%, rgba(0, 180, 150, 0.85) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 212, 170, 0.5);
    border-top: 1px solid rgba(0, 212, 170, 0.6);
    box-shadow: 
        0 6px 20px 0 rgba(0, 212, 170, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.9rem !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.depositar-confirmar-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.depositar-confirmar-btn:hover::before {
    left: 100%;
}

.depositar-confirmar-btn:hover {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.95) 0%, rgba(0, 180, 150, 0.9) 100%);
    border-color: rgba(0, 212, 170, 0.6);
    box-shadow: 
        0 8px 30px 0 rgba(0, 212, 170, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.depositar-confirmar-btn:active {
    transform: translateY(0);
}

/* ============================================
   ESTILOS PARA MODAL DE RETIRO
   ============================================ */

/* Banner de Retiros Disponibles */
.retirar-banner-disponibles {
    background: linear-gradient(135deg, rgba(144, 238, 144, 0.9) 0%, rgba(152, 251, 152, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 139, 34, 0.3);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #155724;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(34, 139, 34, 0.2);
}

.retirar-banner-disponibles i {
    font-size: 1.1rem;
    color: #155724;
}

.retirar-banner-disponibles span {
    color: #155724;
}

/* ============================================
   GAME SECTION STYLES
   ============================================ */

/* Game Section */
.game-section {
    width: 100%;
    margin-top: 1rem;
}

/* Glass Select (para mantener consistencia con glass-input) */
.form-select.glass-input {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0.75rem !important;
    color: white !important;
    padding: 1rem 1.25rem !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    min-height: 50px !important;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 1rem !important;
    padding-right: 3rem !important;
}

.form-select.glass-input:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.form-select.glass-input:focus {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.15), 0 4px 16px rgba(0, 0, 0, 0.2);
    color: white !important;
    outline: none;
    transform: translateY(-1px);
}

.form-select.glass-input option {
    background: rgba(31, 12, 2, 0.95) !important;
    color: white !important;
    padding: 1rem 1.25rem !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    min-height: 50px !important;
    line-height: 1.6 !important;
    border: none !important;
    transition: all 0.2s ease !important;
}

.form-select.glass-input option:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
}

.form-select.glass-input option:checked,
.form-select.glass-input option:focus {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    font-weight: 600 !important;
}

/* Ocultar la flecha nativa de IE/Edge */
.form-select.glass-input::-ms-expand {
    display: none;
}

/* Mejorar la apariencia del select cuando está activo/abierto */
.form-select.glass-input:active {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.2), 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Mejorar el contraste y legibilidad de las opciones */
.form-select.glass-input optgroup {
    background: rgba(31, 12, 2, 0.95) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600 !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem !important;
}

/* Next Hit Panel */
.next-hit-panel {
    background: rgba(128, 128, 128, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid #865602;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 16px 0 rgba(255, 164, 7, 0.237);
}

.next-hit-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.next-hit-content i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.next-hit-content span {
    color: white;
}

#nextHitAmount {
    font-weight: 700;
    color: #ffa207;
}

/* Game Grid */
.game-grid {
    width: 100%;
}

.game-grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    width: 100%;
    aspect-ratio: 1;
    max-width: 100%;
}

.game-cell {
    background-color: #eda673;
    border: 2px solid rgba(139, 69, 19, 0.8);
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.game-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/roca.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: 1;
}

.game-cell:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.game-cell:active {
    transform: scale(0.95);
}

/* Game Cell Success (Oro) */
.game-cell.exito {
    background-color: #f69908;
    border: 2px solid rgba(255, 215, 0, 0.9);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.game-cell.exito::before {
    background-image: url('../img/oro.png');
    opacity: 1;
}

.game-cell.exito:hover {
    border-color: rgba(255, 215, 0, 1);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.6);
}

/* Game Cell Bomb (Bomba) */
.game-cell.bomba {
    background-color: #eda673;
    border: 2px solid rgba(139, 69, 19, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.game-cell.bomba::before {
    background-image: url('../img/bomba.png');
    opacity: 0.9;
}

.game-cell.bomba:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Game Cell Explosion */
.game-cell.explosion {
    background-color: #ff614b;
    border: 2px solid rgb(196 13 13);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.game-cell.explosion::before {
    background-image: url('../img/explosion.png');
    opacity: 0.9;
}

.game-cell.explosion:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Game Start Button */
.game-start-btn {
    background: linear-gradient(135deg, #ffa207 0%, #ffa207 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid #ffa207;
    border-top: 1px solid #ffa207;
    box-shadow: 
        0 6px 20px 0 #674204,
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1.5rem !important;
    font-weight: bolder !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

.game-start-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.game-start-btn:hover::before {
    left: 100%;
}

.game-start-btn:hover {
    background: linear-gradient(135deg, #ffa207 0%, #bc7906 100%);
    border-color: #ffa207;
    box-shadow: 
        0 8px 30px 0 #6d4704,
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.game-start-btn:active {
    transform: translateY(0);
}

.game-start-btn * {
    color: white !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
}

/* Game Start Button - Cobrar Mode (Verde) */
.game-start-btn.cobrar-mode {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: 1px solid #28a745;
    border-top: 1px solid #28a745;
    box-shadow: 
        0 6px 20px 0 rgba(40, 167, 69, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.game-start-btn.cobrar-mode:hover {
    background: linear-gradient(135deg, #218838 0%, #1ea080 100%);
    border-color: #218838;
    box-shadow: 
        0 8px 30px 0 rgba(40, 167, 69, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Game Tooltip */
.game-tooltip {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.95) 0%, rgba(200, 35, 51, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 53, 69, 0.8);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 
        0 4px 12px rgba(220, 53, 69, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.game-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.game-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(220, 53, 69, 0.95);
}

/* Game History Section */
.game-history-section {
    width: 100%;
}

.game-history-spoiler {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.game-history-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0.75rem 1rem;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-history-header:hover {
    background: rgba(255, 255, 255, 0.1);
}

.game-history-header i:first-child {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.game-history-header i:last-child {
    transition: transform 0.3s ease;
}

.game-history-header[aria-expanded="true"] i:last-child {
    transform: rotate(180deg);
}

.game-history-content {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
}

.game-history-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.game-history-table {
    width: 100%;
}

.game-history-table table {
    width: 100%;
    color: white;
    font-size: 0.85rem;
    background: transparent !important;
    border-collapse: collapse;
}

.game-history-table thead {
    background: rgba(255, 255, 255, 0.1) !important;
}

.game-history-table thead th {
    padding: 0.5rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    background: transparent !important;
}

.game-history-table tbody {
    background: transparent !important;
}

.game-history-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
    background: transparent !important;
}

.game-history-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

.game-history-table tbody td {
    padding: 0.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    background: transparent !important;
    border: none !important;
}

.game-history-table tbody td:last-child {
    font-weight: 600;
    color: #ffa207;
}

.game-history-table tbody td:last-child.ganado {
    color: #28a745;
}

.game-history-table tbody td:last-child.perdido {
    color: #dc3545;
}

.game-history-empty {
    text-align: center;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Game Win Animation */
.game-win-animation {
    pointer-events: none;
    user-select: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: center;
}

.game-win-animation.active {
    animation: gameWinAnimation 3s ease-out forwards;
}

.game-win-text {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

.game-win-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 1),
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 30px rgba(255, 215, 0, 0.6),
        0 4px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1rem;
}

@keyframes gameWinAnimation {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5) translateY(0);
    }
    15% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1) translateY(-20px);
    }
    30% {
        transform: translate(-50%, -50%) scale(1) translateY(-40px);
    }
    70% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) translateY(-100px);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9) translateY(-150px);
    }
}

/* Game Maintenance Message */
.game-maintenance-message {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.25);
}

.maintenance-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.maintenance-content i {
    font-size: 3rem;
    color: rgba(255, 193, 7, 0.9);
}

.maintenance-content p {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* Modal Maintenance Message */
.modal-maintenance-message {
    padding: 2rem 1rem;
    text-align: center;
}

.modal-maintenance-message .maintenance-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.modal-maintenance-message .maintenance-content i {
    font-size: 2.5rem;
    color: rgba(255, 193, 7, 0.9);
}

.modal-maintenance-message .maintenance-content p {
    color: #212529;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* Responsive adjustments for game */
@media (max-width: 768px) {
    .game-grid-container {
        gap: 0.4rem;
    }
    
    .next-hit-content {
        font-size: 0.85rem;
    }
    
    .game-start-btn {
        padding: 0.875rem 1.25rem;
        font-size: 1.5rem !important;
    }
    
    .game-maintenance-message {
        padding: 1.5rem 1rem;
    }
    
    .maintenance-content i {
        font-size: 2.5rem;
    }
    
    .maintenance-content p {
        font-size: 0.9rem;
    }
    
    .modal-maintenance-message {
        padding: 1.5rem 0.75rem;
    }
    
    .modal-maintenance-message .maintenance-content i {
        font-size: 2rem;
    }
    
    .modal-maintenance-message .maintenance-content p {
        font-size: 0.9rem;
    }
    
    .form-select.glass-input {
        padding: 0.875rem 1rem !important;
        font-size: 0.95rem !important;
        min-height: 45px !important;
        padding-right: 2.5rem !important;
    }
}