/* Modern Player Dashboard V2 - Clean & Simple */

:root {
    --primary: #667eea;
    --primary-light: #764ba2;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --dark: #1a202c;
    --darker: #0f1419;
    --light: rgba(255, 255, 255, 0.1);
    --lighter: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --text: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --radius: 16px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--text);
    overflow-x: hidden;
}

.player-dashboard {
    min-height: 100vh;
    padding-top: 80px;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* ============================================
   AUTH PAGE
============================================ */

.auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
    padding: 2rem;
}

.auth-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 3rem;
    max-width: 450px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-icon i {
    font-size: 5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-box h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.auth-subtitle code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
    color: #ffd700;
    font-weight: 600;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.1rem;
}

.input-group input {
    width: 100%;
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 12px;
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.btn-login {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-login:active {
    transform: translateY(0);
}

.auth-help {
    margin-top: 2rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.help-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-help ol {
    margin-left: 1.5rem;
    line-height: 2;
    color: var(--text-secondary);
}

.auth-help code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
    color: #ffd700;
    font-weight: 600;
}

.help-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
   DASHBOARD HEADER
============================================ */

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.player-info-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-avatar-sm {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.player-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.player-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.player-status.online i {
    color: var(--success);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.btn-logout {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-logout:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: var(--danger);
    transform: translateY(-2px);
}

/* ============================================
   DASHBOARD GRID LAYOUT
============================================ */

.dashboard-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    align-items: start;
}

/* ============================================
   SIDEBAR - Balance & Quick Actions
============================================ */

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.balance-card-main {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.balance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.balance-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.balance-refresh {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.balance-refresh:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(180deg);
}

.balance-amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
    word-break: break-word;
}

.balance-currency {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.8;
}

.balance-usd {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.quick-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.quick-stat i {
    font-size: 1.5rem;
    opacity: 0.9;
    flex-shrink: 0;
    width: 24px;
}

.quick-stat > div {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.quick-stat .stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.3;
}

.quick-stat .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    word-break: break-word;
}

/* Active Boosters Compact */

.active-boosters-compact {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.boosters-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--warning);
}

#boostersListCompact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.booster-item-compact {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 0;
    overflow: hidden;
}

.booster-mult {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--warning);
    margin-bottom: 0.25rem;
    word-break: break-word;
}

.booster-time {
    font-size: 0.85rem;
    color: var(--text-secondary);
    word-break: break-word;
}

.btn-get-booster-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 10px;
    color: var(--warning);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-get-booster-sm:hover {
    background: rgba(245, 158, 11, 0.3);
    transform: translateY(-2px);
}

/* Quick Actions */

.quick-actions {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.quick-actions h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.action-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text);
    cursor: pointer;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.action-btn:last-child {
    margin-bottom: 0;
}

.action-btn i:first-child {
    font-size: 1.3rem;
    width: 24px;
}

.action-btn i:last-child {
    margin-left: auto;
    font-size: 0.9rem;
    opacity: 0.5;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.action-withdraw:hover {
    border-color: var(--info);
    background: rgba(59, 130, 246, 0.1);
}

.action-donate:hover {
    border-color: var(--warning);
    background: rgba(245, 158, 11, 0.1);
}

.action-history:hover {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.1);
}

/* ============================================
   MAIN CONTENT AREA
============================================ */

.dashboard-main {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-height: 600px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Info Cards Grid */

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    min-width: 0;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.card-primary .card-icon {
    background: rgba(102, 126, 234, 0.2);
    color: var(--primary);
}

.card-success .card-icon {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.card-warning .card-icon {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.card-info .card-icon {
    background: rgba(59, 130, 246, 0.2);
    color: var(--info);
}

.card-content {
    flex: 1;
    min-width: 0;
}

.card-value {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.25rem;
    white-space: nowrap;
}

.card-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    word-break: break-word;
}

/* Tabs Modern */

.tabs-modern {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 12px;
}

.tab-btn-modern {
    flex: 1;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.tab-btn-modern:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn-modern.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Tab Content */

.tab-content-modern {
    position: relative;
}

.tab-pane-modern {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-pane-modern.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.content-section {
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.section-header h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
}

.link-view-all {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.link-view-all:hover {
    gap: 0.75rem;
}

.transaction-info-badge {
    background: rgba(102, 126, 234, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

/* Filters */

.filters-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.filter-select {
    padding: 0.5rem 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--text);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    outline: none;
}

.filter-select:hover {
    background: rgba(255, 255, 255, 0.1);
}

.filter-select:focus-visible {
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.18);
}

.filter-chip {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.filter-chip:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.filter-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Lists */

.transactions-list-modern,
.withdrawals-list-modern,
.donations-list-modern {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.transaction-item-modern,
.withdrawal-item-modern,
.donation-item-modern {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.transaction-item-modern:hover,
.withdrawal-item-modern:hover,
.donation-item-modern:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.item-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.icon-reward {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.icon-transfer {
    background: rgba(59, 130, 246, 0.2);
    color: var(--info);
}

.icon-withdraw {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.icon-admin {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.icon-booster {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.item-content {
    flex: 1;
}

.item-title {
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.item-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.item-meta {
    text-align: right;
}

.item-amount {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.amount-positive {
    color: var(--success);
}

.amount-negative {
    color: var(--danger);
}

.item-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Pagination */

.pagination-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-pagination {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-pagination:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-pagination:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.page-info {
    color: var(--text-secondary);
    font-weight: 600;
}

/* Stats Grid Modern */

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-box i {
    font-size: 1.8rem;
    color: var(--primary);
}

.stat-value-sm {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label-sm {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Loading */

.loading-modern {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.loading-modern i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Empty State */

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

/* Alerts */

.alert-info-modern {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.alert-info-modern i {
    font-size: 1.5rem;
    color: var(--info);
    flex-shrink: 0;
}

.alert-info-modern strong {
    display: block;
    margin-bottom: 0.5rem;
}

.alert-info-modern p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
}

.alert-info-modern code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
    color: #ffd700;
}

.small-text {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Buttons */

.btn-primary-sm {
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Status Badges */

.status-badge {
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.status-processing {
    background: rgba(59, 130, 246, 0.2);
    color: var(--info);
}

.status-completed {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.status-rejected {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger);
}

.status-delivered,
.status-paid {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.status-cancelled {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger);
}

/* Utility Classes */

.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.text-info { color: var(--info); }
.text-muted { color: var(--text-muted); }

/* ============================================
   DETAILED WITHDRAWAL CARDS
============================================ */

.withdrawal-item-detailed {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.withdrawal-item-detailed:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.withdrawal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.withdrawal-id {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.withdrawal-body {
    padding: 1.5rem;
}

.withdrawal-amounts {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.25rem;
}

.amount-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.amount-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.amount-value {
    font-weight: 700;
    font-size: 1rem;
}

.fee-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

.total-row {
    padding-top: 1rem;
}

.amount-value-big {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--success);
}

.withdrawal-wallet {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.25rem;
}

.wallet-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.wallet-address {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.wallet-address:hover {
    background: rgba(0, 0, 0, 0.4);
}

.wallet-address code {
    color: #ffd700;
    font-size: 0.9rem;
    word-break: break-all;
}

.wallet-address i {
    color: var(--primary);
    margin-left: 1rem;
}

.wallet-network {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--info);
    font-size: 0.9rem;
    font-weight: 600;
}

.withdrawal-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.timeline-item i {
    font-size: 1.25rem;
    color: var(--primary);
    width: 24px;
}

.timeline-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.timeline-value {
    font-weight: 600;
    color: var(--text);
}

.withdrawal-status-desc {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.withdrawal-status-desc i {
    color: var(--info);
    font-size: 1.1rem;
    margin-top: 2px;
}

.withdrawal-comment {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.withdrawal-comment i {
    color: var(--warning);
    font-size: 1.1rem;
    margin-top: 2px;
}

/* ============================================
   DETAILED DONATION CARDS
============================================ */

.donation-item-detailed {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.donation-item-detailed:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.donation-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: nowrap;
    overflow: hidden;
}

.donation-icon-large {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    flex-shrink: 0;
}

.donation-title-block {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.donation-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.donation-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.donation-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--success);
    white-space: nowrap;
    flex-shrink: 0;
}

.donation-body {
    padding: 1.5rem;
}

.donation-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warning);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.info-value {
    font-weight: 700;
    font-size: 1rem;
}

.donation-timeline {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: rgba(245, 158, 11, 0.3);
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.timeline-content {
    width: 100%;
}

.timeline-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.timeline-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.donation-payment-id {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.donation-payment-id i {
    color: var(--info);
}

.donation-payment-id code {
    color: #ffd700;
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container-fluid {
        padding: 1rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .player-info-compact {
        flex-direction: column;
    }
    
    .dashboard-sidebar {
        grid-template-columns: 1fr;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .tabs-modern {
        flex-wrap: wrap;
    }
    
    .tab-btn-modern span {
        display: none;
    }
    
    .balance-amount {
        font-size: 2.5rem;
    }
    
    /* Detailed cards responsive */
    .withdrawal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .donation-header {
        align-items: flex-start;
        flex-wrap: wrap;
    }
    
    .donation-title-block {
        flex: 1 1 100%;
        min-width: 0;
    }
    
    .donation-title,
    .donation-subtitle {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
    
    .donation-price {
        flex: 1 1 100%;
        text-align: left;
        font-size: 1.3rem;
    }
    
    .donation-info-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .donation-timeline {
        flex-direction: column;
        align-items: stretch;
    }
    
    .timeline-step {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 0.75rem;
    }
    
    .timeline-step:not(:last-child)::after {
        display: none;
    }
    
    .timeline-content {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .auth-box {
        padding: 2rem 1.5rem;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
    }
    
    /* Detailed cards mobile */
    .donation-info-grid {
        grid-template-columns: 1fr;
    }
    
    .withdrawal-body,
    .donation-body {
        padding: 1rem;
    }
    
    .wallet-address code {
        font-size: 0.75rem;
    }
    
    .amount-value-big {
        font-size: 1.25rem;
    }
    
    .donation-icon-large {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.5rem;
    }
    
    .donation-title-block {
        min-width: 0;
        flex: 1 1 100%;
    }
    
    .donation-title {
        font-size: 1.05rem;
        white-space: normal;
    }
    
    .donation-subtitle {
        white-space: normal;
    }
    
    .donation-price {
        font-size: 1.15rem;
        flex: 1 1 100%;
        text-align: left;
    }
    
    .donation-header {
        padding: 1rem;
    }
}

/* ============================================
   REPORTS SECTION
============================================ */

/* Report Form */
.report-form {
    background: var(--lighter);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.char-counter {
    margin-left: auto;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.form-actions {
    margin-top: 1.5rem;
}

.form-actions .btn-primary {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.form-actions .btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Reports Stats */
.reports-stats {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--lighter);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.stat-badge.stat-pending {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
}

.stat-badge.stat-resolved {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

/* Reports Filters */
.reports-filters {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

/* Reports Filters Container */
.reports-filters-container {
    margin-bottom: 1.5rem;
}

.filter-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.reports-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.report-filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--lighter);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.report-filter-btn:hover {
    background: var(--light);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.report-filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.report-filter-btn i {
    font-size: 1rem;
}

/* Reports Pagination */
.reports-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--lighter);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.pagination-info {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.reports-pagination button {
    padding: 0.625rem 1.25rem;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reports-pagination button:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.reports-pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Reports List */
.reports-list-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.report-item-modern {
    background: var(--lighter);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.report-item-modern:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.report-id {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.125rem;
}

.report-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.report-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.report-badge.status-pending {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.report-badge.status-in_progress {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.report-badge.status-resolved {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.report-badge.status-rejected {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.report-badge.priority-urgent {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    animation: pulse 2s infinite;
}

.report-badge.priority-high {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.report-message {
    padding: 1rem;
    background: var(--light);
    border-radius: 10px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1rem;
    word-break: break-word;
}

.report-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.report-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-comment {
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid var(--success);
    border-radius: 8px;
    margin-top: 1rem;
}

.admin-comment-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--success);
    margin-bottom: 0.5rem;
}

.admin-comment-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Empty State */
.empty-state-reports {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state-reports i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.empty-state-reports h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.empty-state-reports p {
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .report-form {
        padding: 1.5rem;
    }
    
    .reports-stats {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .reports-filters {
        gap: 0.5rem;
    }
    
    .report-filter-btn {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
        flex: 1;
        justify-content: center;
    }
    
    .reports-filters {
        gap: 0.5rem;
    }
    
    .reports-pagination {
        flex-direction: column;
        gap: 1rem;
    }
    
    .reports-pagination button {
        width: 100%;
        justify-content: center;
    }
    
    .report-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .report-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ============================================
   WITHDRAWAL FORM STYLES
============================================ */

/* Withdraw Info Grid */
.withdraw-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.withdraw-info-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.withdraw-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.info-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.info-card-icon.balance-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.info-card-icon.rate-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.info-card-content {
    flex: 1;
}

.info-card-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.info-card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.info-card-subvalue {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Withdrawal Form */
.withdrawal-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.withdrawal-form .form-group {
    margin-bottom: 2rem;
}

.withdrawal-form label {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.withdrawal-form label i {
    color: var(--primary);
    font-size: 1.125rem;
}

/* Amount Input */
.amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.amount-input-wrapper .form-input-modern {
    flex: 1;
    padding-right: 80px;
}

.input-suffix {
    position: absolute;
    right: 1.25rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary);
    pointer-events: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

/* Quick Amount Buttons */
.amount-quick-btns {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.quick-amount-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-amount-btn:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.quick-amount-max {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border-color: var(--primary);
    color: var(--primary);
}

.quick-amount-max:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Form Input & Select */
.form-input-modern,
.form-select-modern {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input-modern:focus,
.form-select-modern:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-select-modern option {
    background: var(--darker);
    color: var(--text);
}

.form-hint {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    background: rgba(59, 130, 246, 0.1);
    border-left: 3px solid var(--info);
    border-radius: 8px;
}

.form-hint i {
    color: var(--info);
    flex-shrink: 0;
    font-size: 1rem;
}

.form-hint strong {
    color: var(--text);
    font-weight: 700;
}

/* Withdrawal Calculation */
.withdrawal-calculation {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    gap: 1rem;
    flex-wrap: nowrap;
}

.calc-row:last-child {
    border-bottom: none;
}

.calc-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
    font-weight: 500;
}

.calc-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.calc-fee {
    color: var(--warning);
}

.calc-total {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
    margin: 1rem -1.75rem -1.75rem;
    padding: 1.25rem 1.75rem;
    border-radius: 0 0 16px 16px;
    border-top: 2px solid rgba(34, 197, 94, 0.3);
}

.calc-total .calc-row {
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 0.75rem 0;
    border-bottom: none;
}

.calc-total .calc-row:first-child {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-total .calc-row:last-child {
    padding-top: 0.75rem;
    padding-bottom: 0;
}

.calc-total .calc-label {
    font-weight: 700;
    color: var(--text);
    font-size: 1.0625rem;
}

.calc-total .calc-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--success);
    text-align: right;
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.calc-total .calc-row:last-child .calc-label {
    font-size: 0.9375rem;
    font-weight: 600;
}

.calc-total .calc-row:last-child .calc-value {
    font-size: 1.125rem;
    font-weight: 700;
}

.calc-usd {
    color: rgba(34, 197, 94, 0.8);
    white-space: nowrap;
}

/* Submit Button */
.btn-submit-withdrawal {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-submit-withdrawal:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-submit-withdrawal:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Address Validation States */
.form-input-modern.valid {
    border-color: var(--success);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-input-modern.invalid {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .withdraw-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .withdraw-info-card {
        padding: 1.25rem;
    }
    
    .info-card-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
    
    .info-card-value {
        font-size: 1.25rem;
    }
    
    .withdrawal-form {
        padding: 1.5rem;
    }
    
    .amount-quick-btns {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .calc-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}