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

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Arial Hebrew", Arial, sans-serif;
  color: #f5f5f5;
}

body {
  min-height: 100vh;
  background-image: url("bet4u-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  background-attachment: fixed;
}

.stage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6vh 5vw 10vh;
  gap: 24px;
}

.status {
  font-size: 1rem;
  opacity: 0.8;
  text-align: center;
}

.status.error {
  color: #ff8a8a;
  opacity: 1;
}

.links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 420px;
}

.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  text-align: center;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f5f5f5;
  background: rgba(10, 40, 30, 0.55);
  border: 1px solid rgba(120, 220, 180, 0.35);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}

.links a:hover,
.links a:focus-visible {
  background: rgba(20, 80, 55, 0.75);
  border-color: rgba(160, 255, 210, 0.7);
  box-shadow: 0 0 24px rgba(80, 200, 150, 0.35);
  transform: translateY(-1px);
  outline: none;
}

.links a:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .links a {
    font-size: 1rem;
    padding: 14px 18px;
  }
}
