* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: white;
    overflow-x: hidden;
}

/* ============================================
   WALLET LOGIN MODAL - REDESIGNED
   ============================================ */

.wallet-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #0a4d0a 0%, #000 50%, #4d0a0a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.wallet-container {
    max-width: 500px;
    width: 90%;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from { 
        opacity: 0; 
        transform: translateY(50px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-text {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(90deg, #90EE90, #ffffff, #FF6347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    letter-spacing: 3px;
}

.logo-text .separator {
    color: white;
    -webkit-text-fill-color: white;
    margin: 0 0.5rem;
}

.logo-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.wallet-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.wallet-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.wallet-title h2 {
    font-size: 1.8rem;
    font-weight: 700;
}

.wallet-desc {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.wallet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.wallet-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    color: white;
}

.wallet-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #90EE90;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(144, 238, 144, 0.3);
}

.wallet-btn iconify-icon {
    flex-shrink: 0;
    color: white;
}

.wallet-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: white;
}

.wallet-sub {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.wallet-benefits {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.demo-notice {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(144, 238, 144, 0.1);
    border: 1px solid rgba(144, 238, 144, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #90EE90;
}

/* ============================================
   TOP NAVIGATION
   ============================================ */

.top-nav {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-left, .nav-center, .nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-small {
    font-size: 1.5rem;
    font-weight: 900;
    white-space: nowrap;
}

.bulls-text {
    color: #90EE90;
}

.separator {
    color: white;
    margin: 0 0.3rem;
}

.bears-text {
    color: #FF6347;
}

.balance-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    border: 2px solid rgba(144, 238, 144, 0.3);
}

.balance-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #90EE90;
}

.balance-currency {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-btn:hover {
    background: rgba(144, 238, 144, 0.2);
    border-color: #90EE90;
    transform: translateY(-2px);
}

.wallet-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-family: monospace;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   BETTING AREA - REDESIGNED
   ============================================ */

.betting-area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem;
    min-height: 70vh;
    align-items: center;
}

/* Center Controls Panel */
.bet-controls-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.price-display {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.price-value {
    font-size: 2rem;
    font-weight: 900;
    color: white;
}

.price-change {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
}

.price-change.positive {
    color: #90EE90;
    background: rgba(144, 238, 144, 0.2);
}

.price-change.negative {
    color: #FF6347;
    background: rgba(255, 99, 71, 0.2);
}

.control-section {
    margin-bottom: 2rem;
}

.control-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.amount-selector,
.time-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.amount-option,
.time-option {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.amount-option:hover,
.time-option:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.amount-option.active,
.time-option.active {
    background: rgba(144, 238, 144, 0.2);
    border-color: #90EE90;
    color: #90EE90;
}

.time-option {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.time-value {
    font-size: 0.95rem;
}

.time-payout {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.time-option.active .time-payout {
    color: #90EE90;
}

.amount-custom {
    grid-column: span 4;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.potential-display {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(144, 238, 144, 0.2), rgba(144, 238, 144, 0.1));
    border: 2px solid rgba(144, 238, 144, 0.3);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.potential-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.potential-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #90EE90;
}

.potential-currency {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Bet Sides */
.bet-side {
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.bet-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-size: cover;
    background-position: center;
}

.bulls-side {
    background: linear-gradient(135deg, #0a4d0a, #165016);
    border: 2px solid rgba(144, 238, 144, 0.3);
}

.bears-side {
    background: linear-gradient(135deg, #4d0a0a, #7a0d0d);
    border: 2px solid rgba(255, 99, 71, 0.3);
}

.side-content {
    text-align: center;
    z-index: 1;
}

.side-icon {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.side-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.side-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.side-stats {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.stat-value {
    font-weight: 700;
    font-size: 1.2rem;
}

.bet-action-btn {
    width: 100%;
    padding: 1.5rem;
    border-radius: 15px;
    border: 3px solid;
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-transform: uppercase;
}

.bulls-btn {
    background: rgba(144, 238, 144, 0.2);
    border-color: #90EE90;
    color: #90EE90;
}

.bulls-btn:hover {
    background: rgba(144, 238, 144, 0.4);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(144, 238, 144, 0.5);
}

.bears-btn {
    background: rgba(255, 99, 71, 0.2);
    border-color: #FF6347;
    color: #FF6347;
}

.bears-btn:hover {
    background: rgba(255, 99, 71, 0.4);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 99, 71, 0.5);
}

/* ============================================
   BOTTOM SECTION
   ============================================ */

.bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 0 2rem 2rem;
}

.section-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
}

.section-card h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.bets-list,
.results-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.empty-state {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    padding: 2rem;
    font-style: italic;
}

.bet-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 3px solid;
}

.bet-item.bulls {
    border-left-color: #90EE90;
}

.bet-item.bears {
    border-left-color: #FF6347;
}

.result-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid;
}

.result-item.win {
    border-left-color: #90EE90;
    background: rgba(144, 238, 144, 0.1);
}

.result-item.loss {
    border-left-color: #FF6347;
    background: rgba(255, 99, 71, 0.1);
}

/* ============================================
   MODALS
   ============================================ */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: rgba(10, 10, 10, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideUp 0.3s ease-out;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.modal-close:hover {
    background: rgba(255, 99, 71, 0.3);
    transform: rotate(90deg);
}

.modal-close iconify-icon {
    color: white;
    font-size: 24px;
}

.modal-content h2 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

/* Rules Modal */
.rules-content {
    max-width: 700px;
}

.rules-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rule-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #90EE90;
}

.rule-section h3 {
    margin-bottom: 1rem;
    color: #90EE90;
}

.rule-section ul {
    list-style: none;
    padding-left: 0;
}

.rule-section ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.rule-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #90EE90;
}

.rule-section.warning {
    border-left-color: #FF6347;
    background: rgba(255, 99, 71, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

/* ============================================
   LOADING OVERLAY
   ============================================ */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
}

.loading-overlay.active {
    display: flex;
}

.loading-content {
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #90EE90;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.loading-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .betting-area {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bet-side {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .top-nav {
        padding: 1rem;
    }
    
    .nav-left, .nav-center, .nav-right {
        width: 100%;
        justify-content: center;
    }
    
    .nav-btn span {
        display: none;
    }
    
    .betting-area {
        padding: 1rem;
    }
    
    .amount-selector,
    .time-selector {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bottom-section {
        grid-template-columns: 1fr;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .wallet-benefits {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .wallet-card {
        padding: 1.5rem;
    }
    
    .betting-area {
        padding: 0.5rem;
    }
    
    .bet-controls-panel {
        padding: 1rem;
    }
    
    .side-title {
        font-size: 2rem;
    }
}

/* Deposit Modal Specific Styles */
.deposit-modal-content {
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.deposit-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.deposit-tab {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.deposit-tab:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.deposit-tab.active {
    color: #90EE90;
    border-bottom-color: #90EE90;
}

.deposit-tab-content {
    display: none;
}

.deposit-tab-content.active {
    display: block;
}

.crypto-selector {
    margin-bottom: 1.5rem;
}

.crypto-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.crypto-btn {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.crypto-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(144, 238, 144, 0.5);
}

.crypto-btn.active {
    background: rgba(144, 238, 144, 0.2);
    border-color: #90EE90;
}

.crypto-btn span {
    font-weight: 600;
    font-size: 0.95rem;
}

.crypto-btn small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Deposit Info Cards - Redesigned */
.deposit-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(144, 238, 144, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover {
    border-color: rgba(144, 238, 144, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    transform: translateY(-2px);
}

.info-card:hover::before {
    opacity: 1;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(144, 238, 144, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #90EE90;
    flex-shrink: 0;
}

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

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.info-value {
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
    line-height: 1.3;
}

.info-value.rate {
    color: #90EE90;
    font-size: 1rem;
}

/* Limits Card Special Layout */
.limits-card .info-content {
    width: 100%;
}

.limits-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.limit-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.limit-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.limit-value {
    font-size: 0.9rem;
    font-weight: 700;
}

.limit-value.min {
    color: #90EE90;
}

.limit-value.max {
    color: #FF6347;
}

.limit-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .deposit-info-cards {
        grid-template-columns: 1fr;
    }
}

/* Old CSS removed - keep these for compatibility */
.deposit-info {
    display: none; /* Hidden - using new cards */
}

.info-row {
    display: none; /* Hidden - using new cards */
}

.generate-address-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #90EE90, #66BB66);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.generate-address-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(144, 238, 144, 0.4);
}

.deposit-address-display {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(144, 238, 144, 0.3);
    border-radius: 12px;
}

.address-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.address-box code {
    flex: 1;
    font-family: monospace;
    font-size: 0.9rem;
    color: #90EE90;
    word-break: break-all;
}

.copy-btn {
    padding: 0.5rem 1rem;
    background: rgba(144, 238, 144, 0.2);
    border: 1px solid #90EE90;
    border-radius: 6px;
    color: #90EE90;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.copy-btn:hover {
    background: rgba(144, 238, 144, 0.3);
}

.warning-box {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #FFD700;
    font-size: 0.9rem;
}

.warning-box iconify-icon {
    flex-shrink: 0;
}

.transactions-list {
    max-height: 400px;
    overflow-y: auto;
}

.transaction-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transaction-info {
    flex: 1;
}

.transaction-crypto {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.transaction-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.transaction-amount {
    text-align: right;
    font-weight: 700;
    color: #90EE90;
}

@media (max-width: 768px) {
    .crypto-buttons {
        grid-template-columns: 1fr;
    }
    
    .deposit-modal-content {
        max-width: 95%;
    }
}

/* Deposit Tracker UI */
.deposit-tracker {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.98), rgba(20, 20, 20, 0.98));
    border: 2px solid rgba(144, 238, 144, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    min-width: 320px;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    animation: slideInUp 0.3s ease;
}

.deposit-tracker.minimized {
    bottom: -200px;
}

@keyframes slideInUp {
    from {
        bottom: -200px;
        opacity: 0;
    }
    to {
        bottom: 20px;
        opacity: 1;
    }
}

.tracker-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #90EE90;
    font-weight: 600;
    font-size: 1.1rem;
}

.tracker-body {
    color: rgba(255, 255, 255, 0.9);
}

.tracker-body p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.tracker-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin: 1rem 0;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #90EE90;
    animation: pulse 2s infinite;
}

.status-dot.pending {
    background: #FFD700;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.tracker-close {
    width: 100%;
    padding: 0.5rem;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tracker-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .deposit-tracker {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}
