:root {
  --bg: #0f1419;
  --surface: #1a2332;
  --accent: #c9a962;
  --accent-dim: #8a7340;
  --text: #f0ebe3;
  --muted: #9aa3b2;
  --card: #222d3d;
  --radius: 12px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 1rem;
  color: var(--muted);
}

.loader__ring {
  width: 40px;
  height: 40px;
  border: 3px solid var(--surface);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.shell { min-height: 100vh; display: flex; flex-direction: column; }

.hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 3rem 1.5rem;
  background:
    linear-gradient(180deg, rgba(15,20,25,0.2) 0%, rgba(15,20,25,0.95) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='600'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%231a2332'/%3E%3Cstop offset='100%25' stop-color='%230f1419'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23g)' width='1200' height='600'/%3E%3C/svg%3E") center/cover;
}

.hero__inner { max-width: 960px; margin: 0 auto; width: 100%; }

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.hero p { color: var(--muted); max-width: 36rem; font-size: 1.05rem; }

.badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

nav.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

nav.top .logo { font-weight: 600; letter-spacing: 0.08em; color: var(--accent); }

nav.top a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-left: 1.25rem;
}

main { flex: 1; padding: 2rem 1.5rem 3rem; max-width: 960px; margin: 0 auto; width: 100%; }

.section-title {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.rooms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.room-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.05);
}

.room-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }

.room-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.75rem; }

.room-card .price { color: var(--accent); font-weight: 600; }

.btn {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn:hover { opacity: 0.88; }

.btn--primary {
  background: var(--accent);
  color: #1a1208;
  font-weight: 600;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.offer-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(201,169,98,0.2);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.offer-card .bonus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.offer-card .title { color: var(--muted); font-size: 0.9rem; }

.offer-card .name { font-size: 1.1rem; font-weight: 600; }

footer {
  text-align: center;
  padding: 1.5rem;
  color: var(--muted);
  font-size: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.market-tag {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
