* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Arial, sans-serif;
  background: #0a1628;
  color: #ffd700;
  padding: 15px;
  max-width: 560px;
  margin: 0 auto !important;
}

h1 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 15px;
  color: #ffd700;
  text-shadow: 0 0 10px #ffd70066;
}

.section {
  border: 1px solid #1e3a6e;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 12px;
  width: 100%;
  background: #0d1f3c;
}

.section h2 {
  font-size: 12px;
  color: #4a90d9;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  padding: 5px 0;
  border-bottom: 1px solid #1e3a6e;
}

.row:last-child { border-bottom: none; }

.label {
  color: #4a90d9;
  font-size: 14px;
}

.value {
  color: #ffd700;
  font-weight: bold;
  font-size: 16px;
}

.positive { color: #ffd700; }
.negative { color: #ff6b35; }

#lastUpdate {
  color: #1e3a6e;
  font-size: 11px;
  text-align: center;
  margin: 10px 0;
}

.btn-reset {
  display: block;
  width: 100%;
  padding: 14px;
  margin-top: 5px;
  background: #1e3a6e;
  border: 1px solid #4a90d9;
  border-radius: 8px;
  color: #ffd700;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.btn-reset:active { background: #0d2550; }

.btn-logout {
  display: block;
  max-width: 100px;
  max-height: 25px;
  padding: 12px;
  margin-top: 10px;
  background: transparent;
  border: 1px solid #1e3a6e;
  border-radius: 8px;
  color: #4a90d9;
  font-size: 14px;
  cursor: pointer;
  text-align: right;
  text-decoration: none;
}

.btn-logout:active { background: #0d1f3c; }

.reset-info {
  font-size: 11px;
  color: #1e3a6e;
  text-align: center;
  margin-top: 5px;
}