body {
  font-family: Arial, sans-serif;
  background: #121212;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  color: #ffffff;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.topbar {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
}

.user-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.box {
  background: #1e1e1e;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  text-align: center;
  min-width: 320px;
}

h2 {
  margin-top: 0;
  margin-bottom: 24px;
}

.section {
  margin-bottom: 25px;
}

.label {
  font-size: 13px;
  color: #9e9e9e;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.value {
  font-size: 24px;
  font-weight: bold;
  margin-top: 5px;
}

.current {
  color: #4fc3f7;
}

.next {
  color: #81c784;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background: #2e2e2e;
  color: #ffffff;
  border: none;
  border-radius: 8px;
}

button:hover {
  background: #3a3a3a;
}

.user-pic {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .box {
    min-width: 0;
    width: 88vw;
    padding: 32px 24px;
    border-radius: 16px;
  }

  h2 {
    font-size: 32px;
    margin-bottom: 28px;
  }

  .label {
    font-size: 16px;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
  }

  .value {
    font-size: 32px;
  }

  button {
    font-size: 20px;
    padding: 14px 22px;
    border-radius: 10px;
  }

  .user-bar {
    font-size: 18px;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .topbar {
    min-height: 56px;
  }
}