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

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.gate {
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url("assets/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 340px;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #eee;
  margin-bottom: 14px;
}

.name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.name {
  font-size: 17px;
  font-weight: 700;
  color: #111;
}

.badge {
  display: flex;
  align-items: center;
}

.tagline {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
  margin-bottom: 24px;
}

.enter-btn {
  display: inline-block;
  width: 100%;
  padding: 14px 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #cc9933 0%, #9d0a33 100%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
