.withdraw-page {
    min-height: 100vh;
    background: var(--bg-grey, #f5f6fa);
    padding-bottom: 30px;
}

.balance-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary, #6C8FF2));
    color: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    margin: 15px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(75, 123, 236, 0.3);
    position: relative;
    overflow: hidden;
}

.balance-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.balance-card::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.balance-label {
    font-size: 14px;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

.balance-amount {
    font-size: 36px;
    font-weight: 700;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.balance-amount .unit {
    font-size: 16px;
    font-weight: 400;
    margin-left: 2px;
}

.withdraw-form {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    margin: 0 15px 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    height: 48px;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
    background: #fafbfc;
}

.form-group input:focus {
    border-color: var(--primary);
    background: #fff;
}

.form-hint {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.form-hint .fee-amount {
    color: #FF6B35;
    font-weight: 600;
}

.form-hint .actual-amount {
    color: #2EC4B6;
    font-weight: 600;
}

.method-options {
    display: flex;
    gap: 12px;
}

.method-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: all 0.2s;
    background: #fafbfc;
}

.method-option:hover {
    border-color: #c0c5cc;
}

.method-option.active {
    border-color: var(--primary);
    color: var(--primary);
    background: #f0f4ff;
    font-weight: 600;
}

.method-option svg {
    width: 22px;
    height: 22px;
}

.method-option input {
    display: none;
}

.withdraw-form .btn-primary {
    width: 100%;
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary), var(--secondary, #6C8FF2));
    color: #fff;
    box-shadow: 0 4px 12px rgba(75, 123, 236, 0.3);
    transition: all 0.2s;
    margin-top: 5px;
}

.withdraw-form .btn-primary:active {
    transform: scale(0.97);
}

.withdraw-form .btn-primary:disabled {
    background: #d0d5dd;
    box-shadow: none;
    cursor: not-allowed;
}

.withdraw-tips {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    margin: 0 15px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.withdraw-tips h3 {
    font-size: 15px;
    margin: 0 0 12px;
    color: #333;
    font-weight: 600;
}

.withdraw-tips ul {
    margin: 0;
    padding-left: 18px;
}

.withdraw-tips li {
    font-size: 13px;
    color: #999;
    line-height: 2.2;
}

.quick-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.quick-amount {
    height: 38px;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    text-align: center;
    line-height: 38px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
    background: #fafbfc;
}

.quick-amount:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.quick-amount.active {
    border-color: var(--primary);
    color: var(--primary);
    background: #f0f4ff;
    font-weight: 600;
}

.withdraw-all {
    text-align: right;
    margin-top: 8px;
}

.withdraw-all a {
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}
