/* ---------- RESET & BACKGROUND ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  height: 100vh;
  overflow-x: hidden;
}

.bg-stars {
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at top, rgba(223, 2, 1, 0.4) 0%, transparent 70%),
    linear-gradient(to bottom, #1a0000 0%, #000000 100%);
  z-index: -1;
}

/* ---------- HEADER ---------- */
.header { text-align: center; padding: 30px 0; }
.brand { font-size: 36px; letter-spacing: 5px; font-weight: 700; }
.brand span { color: #df0201; }
.subtitle { font-size: 14px; margin-top: 5px; color: #fff; }
.star { color: #ffcc00; }

/* ---------- TYPOGRAPHY ---------- */
.content { text-align: center; padding: 20px; }

.welcome-text {
  font-family: 'Playfair Display', serif; /* The Seasons Substitute */
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 25px;
}

.right-place {
  font-family: 'Yeseva One', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
}

/* ---------- BUTTONS ---------- */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.menu-item {
  width: 90%;
  max-width: 340px;
  padding: 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: white;
  text-align: center;
  /* Dark to Red horizontal gradient */
  background: linear-gradient(90deg, #120000 0%, #df0201 100%);
  box-shadow: 0 8px 25px rgba(223, 2, 1, 0.3);
  transition: transform 0.2s;
}

.menu-item:active { transform: scale(0.96); }

/* ---------- BOTTOM NAVIGATION ---------- */
.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.nav-link {
  text-decoration: none;
  color: #888;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
}

.nav-link.active { color: #fff; }

.material-icons-outlined { font-size: 28px; margin-bottom: 4px; }