/* Modern Deposit/Withdraw/Transfer Modals - Cyberpunk Style */
.deposit-modal-content,
.withdraw-modal-content,
.transfer-modal-content {
    max-width: 520px !important;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98)) !important;
    border: 1px solid rgba(167, 139, 250, 0.3) !important;
    box-shadow: 
        0 0 60px rgba(167, 139, 250, 0.4),
        inset 0 0 40px rgba(167, 139, 250, 0.05) !important;
}

.deposit-modal-content .modal-header,
.withdraw-modal-content .modal-header,
.transfer-modal-content .modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(236, 72, 153, 0.15));
    border-bottom: 1px solid rgba(167, 139, 250, 0.3);
    position: relative;
    overflow: hidden;
}

.deposit-modal-content .modal-header::before,
.withdraw-modal-content .modal-header::before,
.transfer-modal-content .modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: modalHeaderSweep 3s ease-in-out infinite;
}

@keyframes modalHeaderSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.modal-header-icon {
    width: 32px;
    height: 32px;
    color: #a78bfa;
    filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.8));
}

.deposit-modal-content .modal-header h2,
.withdraw-modal-content .modal-header h2,
.transfer-modal-content .modal-header h2 {
    flex: 1;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 20px rgba(167, 139, 250, 0.5);
}

.deposit-modal-content .modal-close,
.withdraw-modal-content .modal-close,
.transfer-modal-content .modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.deposit-modal-content .modal-close:hover,
.withdraw-modal-content .modal-close:hover,
.transfer-modal-content .modal-close:hover {
    background: rgba(239, 68, 68, 0.4);
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.deposit-modal-content .modal-body,
.withdraw-modal-content .modal-body,
.transfer-modal-content .modal-body {
    padding: 28px;
}

/* Transfer Info Card */
.transfer-info-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.15));
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.transfer-info-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.transfer-info-value {
    font-size: 20px;
    font-weight: 700;
    color: #3b82f6;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

/* Balance Info Card */
.balance-info-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.15));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
    box-shadow: 
        0 0 30px rgba(16, 185, 129, 0.2),
        inset 0 0 20px rgba(16, 185, 129, 0.05);
}

.balance-info-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.balance-info-value {
    font-size: 32px;
    font-weight: 800;
    color: #10b981;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
}

/* Input with Currency */
.input-with-currency {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-currency input {
    flex: 1;
    padding: 14px 50px 14px 18px;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(167, 139, 250, 0.3);
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    transition: all 0.3s ease;
}

.input-with-currency input:focus {
    outline: none;
    border-color: #a78bfa;
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.4);
}

.currency-label {
    position: absolute;
    right: 18px;
    font-size: 18px;
    font-weight: 700;
    color: #a78bfa;
    pointer-events: none;
}

.input-hint {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* Quick Amounts */
.quick-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.quick-amount-btn {
    padding: 12px;
    background: rgba(167, 139, 250, 0.15);
    border: 2px solid rgba(167, 139, 250, 0.3);
    border-radius: 10px;
    color: #a78bfa;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-amount-btn:hover {
    background: rgba(167, 139, 250, 0.3);
    border-color: #a78bfa;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.5);
}

/* Modern Select */
.modern-select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(167, 139, 250, 0.3);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-select:focus {
    outline: none;
    border-color: #a78bfa;
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.4);
}

.modern-select option {
    background: #1e293b;
    color: #fff;
    padding: 10px;
}

/* Modal Footer */
.modal-footer {
    padding: 20px 28px;
    background: rgba(15, 23, 42, 0.6);
    border-top: 1px solid rgba(167, 139, 250, 0.2);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-modal-secondary {
    padding: 12px 28px;
    background: rgba(100, 116, 139, 0.2);
    border: 2px solid rgba(100, 116, 139, 0.4);
    border-radius: 50px;
    color: #94a3b8;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-modal-secondary:hover {
    background: rgba(100, 116, 139, 0.3);
    border-color: #64748b;
    color: #cbd5e1;
}

.btn-modal-primary {
    padding: 12px 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-modal-primary svg {
    width: 18px;
    height: 18px;
}

.btn-modal-primary::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;
}

.btn-modal-primary:hover::before {
    left: 100%;
}

.btn-modal-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.8);
}

.btn-withdraw-action {
    background: linear-gradient(135deg, #a78bfa, #7c3aed) !important;
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.5) !important;
}

.btn-withdraw-action:hover {
    box-shadow: 0 0 40px rgba(167, 139, 250, 0.8) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .quick-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .deposit-modal-content,
    .withdraw-modal-content,
    .deposit-modal,
    .history-modal-content,
    .details-modal-content {
        max-width: 95% !important;
        margin: 10px;
        border-radius: 20px;
        min-width: auto !important;
    }
    
    .deposit-modal-content .modal-header,
    .withdraw-modal-content .modal-header,
    .history-modal-content .modal-header,
    .details-modal-content .modal-header {
        padding: 18px 20px;
        flex-wrap: wrap;
    }
    
    .deposit-modal-content .modal-header h2,
    .withdraw-modal-content .modal-header h2,
    .history-modal-content .modal-header h2,
    .details-modal-content .modal-header h2 {
        font-size: 20px;
    }
    
    .deposit-modal-content .modal-body,
    .withdraw-modal-content .modal-body,
    .history-modal-body,
    .details-modal-body {
        padding: 18px;
        max-height: calc(95vh - 140px);
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 12px;
        padding: 18px;
    }
    
    .btn-modal-secondary,
    .btn-modal-primary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .balance-info-card {
        padding: 16px;
        margin-bottom: 20px;
    }
    
    .balance-info-value {
        font-size: 28px;
    }
    
    .quick-amounts {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .quick-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .history-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 14px;
    }
    
    .history-details {
        text-align: left;
        width: 100%;
    }
    
    .details-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 14px;
    }
    
    .details-info {
        width: 100%;
    }
    
    .details-icon {
        width: 36px;
        height: 36px;
    }
}

/* ════════════════════════════════════════════════════════════
   GAME HISTORY & BALANCE DETAILS MODALS
   ════════════════════════════════════════════════════════════ */

/* Общие стили для всех модальных окон */
.modal-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-header-icon {
    width: 24px;
    height: 24px;
    color: #a78bfa;
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

/* Empty Message */
.empty-message {
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* History Modal Styles */
.history-modal-content {
    min-width: 500px;
    max-width: 700px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98)) !important;
    border: 1px solid rgba(167, 139, 250, 0.3) !important;
    box-shadow: 
        0 0 60px rgba(167, 139, 250, 0.4),
        inset 0 0 40px rgba(167, 139, 250, 0.05) !important;
    border-radius: 20px;
}

.history-modal-content .modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(236, 72, 153, 0.15));
    border-bottom: 1px solid rgba(167, 139, 250, 0.3);
    position: relative;
}

.history-modal-body {
    max-height: 500px;
    overflow-y: auto;
    padding: 20px;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.history-item.win {
    border-left-color: #10b981;
}

.history-item.loss {
    border-left-color: #ef4444;
}

.history-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.history-status {
    font-weight: 700;
    font-size: 16px;
}

.history-item.win .history-status {
    color: #10b981;
}

.history-item.loss .history-status {
    color: #ef4444;
}

.history-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.history-details {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.history-bet {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.history-prize {
    font-size: 16px;
    font-weight: 700;
    color: #10b981;
}

/* Balance Details Modal Styles */
.details-modal-content {
    min-width: 500px;
    max-width: 700px;
    background: linear-gradient(135deg, rgba(10, 10, 26, 0.98), rgba(26, 26, 46, 0.98)) !important;
    border: 1px solid rgba(0, 255, 209, 0.3) !important;
    box-shadow: 
        0 0 60px rgba(0, 255, 209, 0.3),
        inset 0 0 40px rgba(0, 255, 209, 0.05) !important;
    border-radius: 20px;
}

.details-modal-content .modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(0, 255, 209, 0.15), rgba(255, 0, 229, 0.15));
    border-bottom: 1px solid rgba(0, 255, 209, 0.3);
    position: relative;
}

.details-modal-body {
    max-height: 600px;
    overflow-y: auto;
    padding: 20px;
}

.details-modal-body::-webkit-scrollbar {
    width: 8px;
}

.details-modal-body::-webkit-scrollbar-track {
    background: rgba(0, 255, 209, 0.05);
    border-radius: 10px;
}

.details-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(0, 255, 209, 0.5), rgba(255, 0, 229, 0.5));
    border-radius: 10px;
}

.details-modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(0, 255, 209, 0.8), rgba(255, 0, 229, 0.8));
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.details-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(0, 255, 209, 0.03);
    border-radius: 12px;
    border-left: 4px solid;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.details-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 209, 0.05), transparent);
    transition: left 0.5s ease;
}

.details-item:hover::before {
    left: 100%;
}

.details-item:hover {
    background: rgba(0, 255, 209, 0.06);
    transform: translateX(6px);
    border-left-width: 5px;
}

.details-item.credit {
    border-left-color: #00ff80;
}

.details-item.debit {
    border-left-color: #ff0080;
}

.details-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 209, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.details-item.credit .details-icon {
    color: #00ff80;
    filter: drop-shadow(0 0 8px rgba(0, 255, 128, 0.5));
}

.details-item.debit .details-icon {
    color: #ff0080;
    filter: drop-shadow(0 0 8px rgba(255, 0, 128, 0.5));
}

.details-item:hover .details-icon {
    transform: scale(1.1) rotate(5deg);
}

.details-icon svg {
    width: 24px;
    height: 24px;
}

.details-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.details-type {
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
}

.details-room {
    font-size: 12px;
    color: rgba(0, 255, 209, 0.8);
    font-weight: 500;
}

.details-game-id {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.details-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.details-amount {
    font-size: 20px;
    font-weight: 800;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 10px currentColor;
}

.details-item.credit .details-amount {
    color: #00ff80;
}

.details-item.debit .details-amount {
    color: #ff0080;
}

/* ════════════════════════════════════════════════════════════
   STATUS CONFIRMATION & INFO MODALS
   ════════════════════════════════════════════════════════════ */

/* Status Confirmation Modal */
.status-confirm-content {
    min-width: 450px;
    max-width: 550px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98)) !important;
    border: 1px solid rgba(167, 139, 250, 0.3) !important;
    box-shadow: 
        0 0 60px rgba(167, 139, 250, 0.4),
        inset 0 0 40px rgba(167, 139, 250, 0.05) !important;
    border-radius: 20px;
}

.status-confirm-content .modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(236, 72, 153, 0.15));
    border-bottom: 1px solid rgba(167, 139, 250, 0.3);
    position: relative;
}

.status-confirm-content .modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid rgba(167, 139, 250, 0.2);
}

.status-confirm-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.status-confirm-preview {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none !important;
}

.status-preview-badge {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    box-shadow: none !important;
}

/* Применяем градиентные эффекты к badge в модальном окне */
.status-preview-badge.status-bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #e8a15e 50%, #cd7f32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: none !important;
    -webkit-filter: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

.status-preview-badge.status-silver {
    background: linear-gradient(135deg, #8b8b8b 0%, #c5c5c5 50%, #8b8b8b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: none !important;
    -webkit-filter: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

.status-preview-badge.status-gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: none !important;
    -webkit-filter: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

.status-preview-badge.status-platinum {
    background: linear-gradient(90deg, #b8b6b4 0%, #e5e4e2 25%, #ffffff 50%, #e5e4e2 75%, #b8b6b4 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: platinumFlow 3s ease-in-out infinite;
    filter: none !important;
    -webkit-filter: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

.status-preview-badge.status-diamond {
    background: linear-gradient(90deg, #00bcd4 0%, #4dd0e1 25%, #b9f2ff 50%, #4dd0e1 75%, #00bcd4 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: diamondFlow 2.5s ease-in-out infinite;
    filter: none !important;
    -webkit-filter: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

.status-preview-badge.status-legend {
    background: linear-gradient(90deg, #ff0080 0%, #ff8c00 25%, #ffd700 50%, #40e0d0 75%, #ff0080 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: legendFlow 3s linear infinite;
    filter: none !important;
    -webkit-filter: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

@keyframes platinumFlow {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

@keyframes diamondFlow {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

@keyframes legendFlow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.status-preview-name {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.status-confirm-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-confirm-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid #10b981;
    border-radius: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
}

.status-confirm-benefits .benefit-item:hover {
    background: rgba(16, 185, 129, 0.15);
    transform: translateX(4px);
}

.status-confirm-benefits .benefit-item svg {
    flex-shrink: 0;
    color: #10b981;
    filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.4));
}

.status-confirm-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(167, 139, 250, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(167, 139, 250, 0.3);
    font-size: 18px;
    font-weight: 600;
}

.status-confirm-price .price-value {
    color: #a78bfa;
    font-size: 24px;
    font-weight: 700;
}

/* Status Info Modal */
.status-info-content {
    min-width: 800px;
    max-width: 1000px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98)) !important;
    border: 1px solid rgba(167, 139, 250, 0.3) !important;
    box-shadow: 
        0 0 60px rgba(167, 139, 250, 0.4),
        inset 0 0 40px rgba(167, 139, 250, 0.05) !important;
    border-radius: 20px;
}

.status-info-content .modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(236, 72, 153, 0.15));
    border-bottom: 1px solid rgba(167, 139, 250, 0.3);
    position: relative;
}

.status-info-body {
    padding: 24px;
    max-height: 70vh;
    overflow-y: auto;
}

.status-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.status-info-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.status-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.status-info-card.bronze-card {
    border-color: rgba(205, 127, 50, 0.4);
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), rgba(232, 161, 94, 0.05));
}

.status-info-card.silver-card {
    border-color: rgba(192, 192, 192, 0.4);
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(220, 220, 220, 0.05));
}

.status-info-card.gold-card {
    border-color: rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.05));
}

.status-info-card.platinum-card {
    border-color: rgba(229, 228, 226, 0.4);
    background: linear-gradient(135deg, rgba(229, 228, 226, 0.1), rgba(255, 255, 255, 0.05));
}

.status-info-card.diamond-card {
    border-color: rgba(77, 208, 225, 0.4);
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(77, 208, 225, 0.05));
}

.status-info-card.legend-card {
    border-color: rgba(255, 0, 128, 0.4);
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(255, 140, 0, 0.1));
}

.status-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-info-price {
    font-size: 20px;
    font-weight: 700;
    color: #10b981;
}

.status-info-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-info-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.status-info-benefits .benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
    border-left-color: rgba(255, 255, 255, 0.3);
}

.status-info-benefits .benefit-item svg {
    flex-shrink: 0;
    opacity: 0.8;
}

/* Цветные иконки для разных карточек статусов */
.bronze-card .benefit-item svg {
    color: #e8a15e;
}

.silver-card .benefit-item svg {
    color: #c5c5c5;
}

.gold-card .benefit-item svg {
    color: #ffd700;
}

.platinum-card .benefit-item svg {
    color: #e5e4e2;
}

.diamond-card .benefit-item svg {
    color: #4dd0e1;
}

.legend-card .benefit-item svg {
    color: #ff8c00;
}

/* Status Info Note */
.status-info-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    margin-top: 20px;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.status-info-note svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #a78bfa;
}

/* Info Button in Profile */
.btn-status-info {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(167, 139, 250, 0.15);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 8px;
    color: #a78bfa;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-status-info svg {
    width: 18px;
    height: 18px;
}

.btn-status-info:hover {
    background: rgba(167, 139, 250, 0.25);
    border-color: rgba(167, 139, 250, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(167, 139, 250, 0.3);
}

.profile-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 900px) {
    .status-info-grid {
        grid-template-columns: 1fr;
    }
    
    .status-info-content {
        min-width: 90%;
        max-width: 95%;
    }
}

@media (max-width: 600px) {
    .status-confirm-content {
        min-width: 90%;
        max-width: 95%;
    }
}

/* ════════════════════════════════════════════════════════════
   AUTH CODE MODAL - Модальное окно с кодом авторизации
   ════════════════════════════════════════════════════════════ */
.auth-code-content {
    max-width: 500px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(20, 20, 35, 0.98) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.auth-code-header {
    text-align: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.auth-code-icon {
    width: 64px;
    height: 64px;
    color: var(--primary);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.auth-code-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.auth-code-body {
    padding: 30px;
}

.auth-code-instruction {
    text-align: center;
    color: var(--text-secondary);
    font-size: 15px;
    margin: 0 0 30px;
}

.auth-code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px 20px;
    background: rgba(102, 126, 234, 0.05);
    border: 2px dashed rgba(102, 126, 234, 0.3);
    border-radius: 16px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.auth-code-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.code-part {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 8px;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    font-family: 'Courier New', monospace;
    user-select: all;
}

.code-separator {
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
}

.auth-code-open-bot-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary), #5568d3);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.auth-code-open-bot-btn svg {
    width: 24px;
    height: 24px;
}

.auth-code-open-bot-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.auth-code-status {
    text-align: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.status-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(102, 126, 234, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#auth-status-text {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.auth-code-hint {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin: 0;
}

/* Responsive */
@media (max-width: 576px) {
    .auth-code-content {
        max-width: 95%;
        margin: 20px auto;
    }
    
    .code-part {
        font-size: 36px;
        letter-spacing: 4px;
    }
    
    .code-separator {
        font-size: 36px;
    }
}

/* Game Details Modal - Modern Style */
.game-details-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.game-details-modal-overlay.active {
    display: flex;
}

.game-details-modal-content {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    position: relative;
    box-shadow: 
        0 0 60px rgba(167, 139, 250, 0.4),
        inset 0 0 40px rgba(167, 139, 250, 0.05);
    animation: slideInModal 0.3s ease;
    overflow: hidden;
}

@keyframes slideInModal {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.game-details-modal-content .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.game-details-modal-content .modal-close:hover {
    background: rgba(239, 68, 68, 0.4);
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.game-details-modal-content .modal-close svg {
    width: 20px;
    height: 20px;
}

.game-details-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(236, 72, 153, 0.15));
    border-bottom: 1px solid rgba(167, 139, 250, 0.3);
    position: relative;
    overflow: hidden;
}

.game-details-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: modalHeaderSweep 3s ease-in-out infinite;
}

.game-details-icon {
    width: 48px;
    height: 48px;
    color: #a78bfa;
    margin: 0 auto 15px;
    filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.8));
}

.game-details-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    text-shadow: 0 0 20px rgba(167, 139, 250, 0.5);
}

.game-details-number {
    font-size: 18px;
    font-weight: 600;
    color: #a78bfa;
    opacity: 0.8;
}

.game-details-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 200px);
}

.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: #a78bfa;
}

.loading-spinner svg {
    width: 48px;
    height: 48px;
}

.game-details-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.game-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.game-info-item:hover {
    background: rgba(167, 139, 250, 0.15);
    border-color: rgba(167, 139, 250, 0.4);
    transform: translateY(-2px);
}

.game-info-item svg {
    width: 24px;
    height: 24px;
    color: #a78bfa;
    flex-shrink: 0;
}

.game-info-item span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.game-participants-section {
    margin-bottom: 30px;
}

.game-participants-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    text-shadow: 0 0 20px rgba(167, 139, 250, 0.5);
}

.game-participants-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.game-participant {
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-participant:hover {
    background: rgba(167, 139, 250, 0.15);
    border-color: rgba(167, 139, 250, 0.4);
    transform: translateX(5px);
}

.game-participant-winner {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(167, 139, 250, 0.15));
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
}

.participant-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.participant-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.participant-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #a78bfa;
    object-fit: cover;
}

.game-participant-winner .participant-avatar {
    border-color: #ec4899;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}

.winner-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ec4899, #a78bfa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.6);
}

.winner-badge svg {
    width: 16px;
    height: 16px;
}

.participant-info {
    flex: 1;
    min-width: 0;
}

.participant-name-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.participant-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
    word-break: break-word;
}

.participant-name:not(.status-bronze):not(.status-silver):not(.status-gold):not(.status-platinum):not(.status-diamond):not(.status-legend) {
    color: #fff !important;
    background: none !important;
    -webkit-text-fill-color: #fff !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
}

/* Для элементов со статусами - используем градиент, но не перекрываем inline стили */
.participant-name.status-bronze,
.participant-name.status-silver,
.participant-name.status-gold,
.participant-name.status-platinum,
.participant-name.status-diamond,
.participant-name.status-legend {
    color: transparent !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.winner-label {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #ec4899, #a78bfa);
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.participant-bet {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a78bfa;
    font-weight: 600;
}

.bet-icon {
    width: 20px;
    height: 20px;
}

.participant-tickets {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(167, 139, 250, 0.1);
    border-radius: 10px;
    font-size: 14px;
    color: #a78bfa;
}

.ticket-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.ticket-range {
    font-weight: 600;
}

.ticket-count {
    opacity: 0.7;
    margin-left: auto;
}

.game-verification {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 25px;
    margin-top: 30px;
}

.verification-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.verification-icon {
    width: 32px;
    height: 32px;
    color: #10b981;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.8));
}

.verification-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.verification-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.verification-item {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 18px;
}

.verification-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #10b981;
    font-weight: 600;
    font-size: 14px;
}

.verification-label svg {
    width: 20px;
    height: 20px;
}

.verification-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.winning-ticket-number {
    font-size: 24px;
    font-weight: 700;
    color: #10b981;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.verification-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.verification-success {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.verification-error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.verification-status svg {
    width: 16px;
    height: 16px;
}

.verification-info {
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.verification-hash {
    background: rgba(167, 139, 250, 0.1);
    border-color: rgba(167, 139, 250, 0.3);
}

.verification-hash-value {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.verification-hash-value:hover {
    background: rgba(167, 139, 250, 0.15);
    border-color: rgba(167, 139, 250, 0.5);
}

.verification-hash-value.copied {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
}

.verification-hash-value code {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: #a78bfa;
    word-break: break-all;
    flex: 1;
    line-height: 1.4;
}

.copy-icon {
    width: 20px;
    height: 20px;
    color: #a78bfa;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.verification-hash-value:hover .copy-icon {
    opacity: 1;
}

.game-details-error {
    text-align: center;
    padding: 60px 20px;
    color: #ef4444;
}

.game-details-error svg {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: #ef4444;
}

.game-details-error p {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #fff;
}

.error-message {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.clickable-game-item {
    cursor: pointer;
    transition: all 0.2s ease;
}

.clickable-game-item:hover {
    background: rgba(167, 139, 250, 0.05);
    transform: translateX(3px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .game-details-modal-content {
        max-width: 100%;
        border-radius: 16px;
        max-height: 95vh;
        margin: 10px;
    }
    
    .game-details-header {
        padding: 20px;
    }
    
    .game-details-header h2 {
        font-size: 22px;
    }
    
    .game-details-body {
        padding: 20px;
        max-height: calc(95vh - 160px);
    }
    
    .game-details-info {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .game-info-item {
        padding: 12px;
    }
    
    .game-info-item svg {
        width: 20px;
        height: 20px;
    }
    
    .game-info-item span {
        font-size: 13px;
    }
    
    .participant-avatar {
        width: 50px;
        height: 50px;
    }
    
    .winner-badge {
        width: 24px;
        height: 24px;
        top: -3px;
        right: -3px;
    }
    
    .winner-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .participant-name {
        font-size: 16px;
    }
    
    .game-verification {
        padding: 20px;
    }
    
    .verification-value {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .winning-ticket-number {
        font-size: 20px;
    }
    
    .verification-hash-value code {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .game-details-modal-overlay {
        padding: 10px;
    }
    
    .game-details-header {
        padding: 15px;
    }
    
    .game-details-icon {
        width: 40px;
        height: 40px;
    }
    
    .game-details-header h2 {
        font-size: 20px;
    }
    
    .game-details-body {
        padding: 15px;
    }
    
    .game-participants-section h3,
    .verification-header h3 {
        font-size: 18px;
    }
    
    .participant-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .participant-tickets {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .ticket-count {
        margin-left: 0;
    }
    
    .history-modal-content,
    .details-modal-content {
        max-width: 100% !important;
        margin: 5px;
    }
    
    .history-modal-content .modal-header,
    .details-modal-content .modal-header {
        padding: 15px;
    }
    
    .history-modal-content .modal-header h2,
    .details-modal-content .modal-header h2 {
        font-size: 18px;
    }
    
    .history-modal-body,
    .details-modal-body {
        padding: 15px;
        max-height: calc(95vh - 120px);
    }
    
    .history-item,
    .details-item {
        padding: 12px;
        gap: 10px;
    }
    
    .details-icon {
        width: 32px;
        height: 32px;
    }
}


