body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background: linear-gradient(45deg, #ff6600, #ffcc00);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 165, 0, 0.5);
}

.game-logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.redeem-btn {
    background-color: yellow;
    color: black;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

.withdraw-section {
    background-color: #1e1e1e;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}

.withdraw-proof {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    border: 1px solid #555;
    padding: 8px;
}

.telegram-btn {
    display: block;
    background-color: yellow;
    color: black;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
}

footer {
    margin-top: 20px;
    font-size: 12px;
    color: #888;
}

/* Pop-up Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 80%;
    max-width: 300px;
}

#closePopup {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}