@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0f0f1e, #1a1a2e);
  color: #e0e0ff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container { width: 100%; max-width: 420px; padding: 20px; }

.card {
  background: rgba(30, 30, 60, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(100, 100, 255, 0.2);
}

.avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #6464ff;
  margin-bottom: 20px;
}

h1 {
  font-size: 28px;
  margin-bottom: 8px;
  color: #fff;
}

.username {
  color: #8888ff;
  margin-bottom: 30px;
  font-size: 18px;
}

.balance {
  font-size: 36px;
  font-weight: 700;
  margin: 30px 0;
  color: #64ff64;
}

.currency { font-size: 24px; color: #88ff88; }

.income { color: #888; margin-top: 10px; }

.status {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}

.status.online  { background: #1e4d2b; color: #64ff64; }
.status.offline { background: #4d1e1e; color: #ff6464; }