/* Core Variables & Reset */
:root {
    /* Color Palette based on Panthrix Aesthetic */
    --bg-main: #020617;
    --bg-sidebar: #010613;
    --bg-card: #050d26;
    --bg-stat-card: #0c1538;
    --bg-active: rgba(0, 229, 255, 0.15);
    --bg-hover: rgba(15, 98, 254, 0.2);

    /* Accents & Buttons */
    --accent-gold: #00e5ff;
    /* Cyan substitution */
    --accent-orange: #0f62fe;
    /* IBM Blue substitution */
    --btn-primary: #0f62fe;
    --btn-primary-hover: #0050d0;
    --btn-success: #1ab394;
    --btn-success-hover: #159379;

    /* Typography Colors */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Gradients */
    --gradient-balance: linear-gradient(135deg, #020617 0%, rgba(15, 98, 254, 0.8) 100%);
    --gradient-card-overlay: linear-gradient(135deg, rgba(0, 229, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);

    /* Layout & Spacing */
    --sidebar-width: 250px;
    --header-height: 70px;
    --card-radius: 12px;
    --btn-radius: 8px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Breakpoints */
    --breakpoint-lg: 1024px;
    --breakpoint-md: 768px;
    --breakpoint-sm: 480px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', sans-serif;
}

html {
    height: 100%;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    height: 100vh;
}

/* Global Elements */
a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    transition: var(--transition-fast);
}

/* Base Buttons */
.btn-primary,
.btn-success {
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--btn-radius);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--btn-primary);
}

.btn-primary:hover {
    background-color: var(--btn-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.btn-success {
    background-color: var(--btn-success);
}

.btn-success:hover {
    background-color: var(--btn-success-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.btn-icon {
    background: transparent;
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.btn-icon:hover {
    background-color: var(--bg-hover);
    color: var(--text-primary);
}

/* App Layout */
.app-container {
    display: flex;
    height: 100vh;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-sidebar);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    z-index: 100;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
}

.sidebar-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.sidebar-nav {
    padding: 1.5rem 1rem;
    flex: 1;
    overflow-y: auto;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    color: var(--text-secondary);
    border-radius: var(--btn-radius);
    transition: var(--transition-fast);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-link i {
    font-size: 1.25rem;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.nav-item.active .nav-link {
    background-color: rgba(59, 68, 130, 0.2);
    color: var(--btn-primary);
    border-left: 3px solid var(--btn-primary);
}


/* Main Content */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    height: 100vh;
    min-height: 0;
    overflow: hidden;
}

/* Top Navigation */
.top-nav {
    height: var(--header-height);
    background-color: var(--bg-main);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 90;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}



.user-profile-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    padding: 0.25rem;
    border-radius: 2rem;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #32a5d2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.badge-container {
    position: relative;
}

.notification-dot {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    border: 2px solid var(--bg-main);
}

/* Dashboard Scroll Area */
.dashboard-scroll-area {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2rem;
}

/* Cards & Panels */
.glass-panel {
    background-color: var(--bg-card);
    border-radius: var(--card-radius);
    border: 1px solid rgba(255, 255, 255, 0.02);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Balance Card */
.balance-card {
    background: var(--gradient-balance);
    padding: 2rem;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(241, 90, 36, 0.2);
}

.balance-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.balance-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.balance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.balance-header h2 {
    font-size: 1.25rem;
    font-weight: 500;
}

.badge-wallet {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.balance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.balance-item {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.balance-item:last-child {
    border-right: none;
}

.balance-item .label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    display: block;
}

.balance-item .value {
    font-size: 2rem;
    font-weight: 700;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quick-actions button {
    flex: 1;
    max-width: 200px;
}

/* Stat Cards Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background-color: var(--bg-card);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.stat-details {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .balance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .balance-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-right: 0;
        padding-bottom: 1.5rem;
    }

    .balance-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .dashboard-scroll-area {
        padding: 1rem;
    }
    .sidebar {
        transform: translateX(-100%);
        transition: transform var(--transition-smooth);
        z-index: 1000;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    /* Sidebar Overlay */
    .sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 999;
    }

    .sidebar.open + .sidebar-overlay {
        display: block;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    /* Table Responsiveness */
    .table-container {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 1rem;
        scrollbar-width: thin;
        scrollbar-color: var(--btn-primary) rgba(255, 255, 255, 0.05);
    }
    .table-container::-webkit-scrollbar {
        height: 6px;
    }
    .table-container::-webkit-scrollbar-thumb {
        background: var(--btn-primary);
        border-radius: 3px;
    }

    .data-table, .rewards-table {
        min-width: 600px; /* Force scroll on very small screens if table is wide */
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* Show sidebar toggle on mobile */
    #sidebar-toggle {
        display: flex !important;
    }

    /* Adjust header layout for mobile */
    .top-nav {
        padding: 0 1rem;
    }

    .nav-right {
        gap: 0.5rem;
    }

    #header-user-name {
        display: none !important;
    }

    .wallet-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }

    .page-title {
        font-size: 1rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 120px;
    }

    .quick-actions {
        flex-direction: column;
    }

    .quick-actions button {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 2rem 1.5rem;
    }
    
    .quick-actions {
        flex-direction: column;
    }
    
    .quick-actions button {
        width: 100%;
        max-width: 100%;
    }

    .strikes-grid, .features {
        grid-template-columns: 1fr !important;
    }
}

/* Auth Pages & Forms */
/* Auth Pages & Forms */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    padding: 2rem;
    position: relative;
    background-color: #0a0a0a;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Simulated AI Glowing Beam Background */
.auth-wrapper::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 100vh;
    background: linear-gradient(to top, rgba(245, 158, 11, 0) 0%, rgba(245, 158, 11, 0.1) 50%, rgba(245, 158, 11, 0) 100%);
    box-shadow: 0 0 100px rgba(245, 158, 11, 0.1);
    left: 20%;
    z-index: 0;
}

/* Dots effect */
.auth-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(245, 158, 11, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
    z-index: 1;
}

.auth-card {
    background-color: #121212;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 20px rgba(245, 158, 11, 0.05);
    padding: 3rem;
    width: 100%;
    max-width: 420px;
    text-align: left;
    position: relative;
    z-index: 10;
    margin: auto;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    color: white;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 2rem;
    gap: 0.5rem;
}

.auth-logo i {
    font-size: 36px;
}

.auth-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
    /* Bright Cyan */
    font-weight: 600;
}

.auth-subtitle {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.auth-lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #fdfdfd;
    /* White inputs like Panthrix */
    border: none;
    border-radius: 6px;
    color: #111;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--btn-primary);
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.auth-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    cursor: pointer;
}

.auth-options a {
    color: var(--accent-gold);
}

.auth-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: var(--btn-primary);
    color: #fff;
    border: none;
    border-radius: 20px;
    /* Pill shape */
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-btn:hover {
    background: var(--btn-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 83, 224, 0.4);
}

.auth-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.auth-link a {
    color: var(--btn-primary);
    font-weight: 500;
    transition: var(--transition-fast);
}

.auth-link a:hover {
    color: var(--btn-primary-hover);
    text-decoration: underline;
}

.error-message {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    padding: 0.75rem;
    border-radius: var(--btn-radius);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: none;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* User Dropdown */
.user-dropdown-container {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: var(--card-radius);
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    z-index: 200;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
    cursor: pointer;
    background: transparent;
    width: 100%;
    text-align: left;
    border: none;
}

.dropdown-item i {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.dropdown-item.text-danger {
    color: #ef4444;
}

.dropdown-item.text-danger i {
    color: #ef4444;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Crypto Wallet UI */
.wallet-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251, 176, 59, 0.15);
    border: 1px solid rgba(251, 176, 59, 0.3);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.wallet-btn:hover {
    background: rgba(251, 176, 59, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 176, 59, 0.2);
}

.wallet-btn i {
    font-size: 1.2rem;
}

/* Modal Base */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    width: 90%;
    max-width: 450px;
    border-radius: var(--card-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(20px) scale(0.95);
    transition: var(--transition-smooth);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.show .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-title i {
    color: var(--accent-gold);
}

.close-modal-btn {
    background: transparent;
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.close-modal-btn:hover {
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 1.5rem;
}

.wallet-balance-display {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--btn-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wallet-balance-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 0.5rem;
}

.wallet-balance-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.wallet-balance-item .label {
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wallet-balance-item .amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.wallet-balance-item.cash .amount {
    color: #10b981;
    /* Green for cash */
}

.wallet-balance-item .currency {
    font-size: 0.8rem;
    color: var(--text-primary);
    vertical-align: super;
}

.wallet-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.3rem;
    border-radius: var(--btn-radius);
}

.wallet-tab-btn {
    flex: 1;
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.wallet-tab-btn.active {
    background: var(--bg-card);
    color: var(--accent-gold);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.tab-content {
    display: none;
}

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

.address-group {
    margin-bottom: 1.5rem;
}

.address-group label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.edit-address-btn {
    color: var(--btn-primary);
    background: transparent;
    font-size: 0.85rem;
    font-weight: 600;
}

.edit-address-btn:hover {
    text-decoration: underline;
}

.wallet-address-input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--btn-radius);
    color: white;
    font-family: monospace;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.wallet-address-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(251, 176, 59, 0.2);
}

.wallet-address-input:disabled {
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.1);
    cursor: not-allowed;
}

.withdraw-amount-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.withdraw-amount-wrapper input {
    padding-right: 4rem;
}

.withdraw-amount-wrapper .max-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(251, 176, 59, 0.2);
    color: var(--accent-gold);
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

.withdraw-amount-wrapper .max-btn:hover {
    background: rgba(251, 176, 59, 0.3);
}

.modal-footer {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-withdraw {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-balance);
    color: white;
    border: none;
    border-radius: var(--btn-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-withdraw:hover {
    box-shadow: 0 4px 15px rgba(251, 176, 59, 0.4);
    transform: translateY(-2px);
}

.btn-withdraw:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}