/* --- Paste the entire <style> block from your original HTML file here --- */
/* --- Then, add these new styles below for the new pages --- */

.auth-container, .wallet-page-container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    text-align: center;
    z-index: 10;
}
.wallet-page-container {
    max-width: 900px;
}
.auth-subtitle {
    color: #94a3b8;
    margin: 15px 0;
}
.auth-card {
    padding: 40px;
}
.auth-card .bet-input-group {
    margin-bottom: 20px;
}
.auth-card .game-btn {
    width: 100%;
}
#recaptcha-container {
    margin: 20px auto;
}
.error-message {
    color: #ff4466;
    margin-top: 15px;
    height: 20px;
}
.success-message {
    color: #00ff88;
    margin-top: 15px;
    height: 20px;
}

/* Wallet Page Styles */
.wallet-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}
@media (min-width: 768px) {
    .wallet-content {
        grid-template-columns: 1fr 1fr;
    }
}
.wallet-subtitle {
    color: #94a3b8;
    font-size: 0.9em;
    margin-bottom: 20px;
}
.deposit-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
#qr-code {
    background: white;
    padding: 15px;
    border-radius: 15px;
}
.address-box {
    display: flex;
    width: 100%;
}
.address-box input {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 10px;
    border-radius: 10px 0 0 10px;
    font-family: monospace;
}
.address-box button {
    padding: 10px 15px;
    border: none;
    background: #667eea;
    color: white;
    cursor: pointer;
    border-radius: 0 10px 10px 0;
}
.wallet-content .bet-input-group {
    margin-bottom: 15px;
}
.wallet-content .game-btn {
    width: 100%;
}
.wallet-link {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
}