/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== BODY (GREY BACKGROUND) ===== */
body {
    min-height: 50vh;
    font-family: 'Segoe UI', sans-serif;
    display: grid;
    place-items: center;

    background: #f2f4f8;   /* Soft professional grey */
}

/* ===== WALLET CARD ===== */
.wallet {
    width: 100%;
    margin-top: 0%;
    max-width: 500px;
    padding: 45px 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(177, 176, 176, 0.08);
    text-align: center;
}

/* ===== TITLE ===== */
.wallet h2 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #838080;
}

/* ===== TELEGRAM BUTTON (CENTERED) ===== */
.telegram-btn {
    display: block;                /* Center ke liye block + auto margin */
    margin: 15px auto 20px auto;   /* Top 15px, Bottom 20px, center horizontally */
    padding: 12px 26px;
    font-size: 25px;               /* Font thoda bada */
    font-weight: 600;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #4e73df, #6f42c1);
    color: white;
    text-align: center;
    transition: 0.3s ease;
}

.telegram-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ===== BALANCE BOX ===== */
.balance-box {
    background: linear-gradient(135deg, #4e73df, #6f42c1);
    color: white;
    padding: 30px 20px;
    border-radius: 18px;
    margin-bottom: 30px;
}

.balance-box p {
    font-size: 26px;
    opacity: 0.9;
}

.balance-box h1 {
    font-size: 46px;
    margin-top: 10px;
    font-weight: 700;
    color: #ffffff;
}

/* ===== WITHDRAW BUTTON ===== */
.buttons button {
    padding: 14px 32px;
    font-size: 26px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #4e73df, #6f42c1);
    color: white;
    transition: 0.3s ease;
}

.buttons button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ===== BACK BUTTON ===== */
.back-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 30px;
    border-radius: 30px;
    background: white;
    color: #4e73df;
    font-weight: 600;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.telegram-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0088cc;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s ease;
}

.telegram-float i {
    font-size: 18px;
}

.telegram-float:hover {
    background: #006699;
    transform: scale(1.05);
}