* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

:root {
  --bg: #071522;
  --card: rgba(14, 28, 45, 0.92);
  --gold: #f7d774;
  --gold-soft: #d6a73b;
  --blue: #12c2ff;
  --blue2: #0b84ff;
  --text: #ffffff;
  --muted: #b9c5d3;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  --radius: 22px;
}

body {
  background:
    radial-gradient(circle at top, rgba(247, 215, 116, 0.09), transparent 20%),
    linear-gradient(180deg, #071522 0%, #081827 35%, #04101a 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 460px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  padding-bottom: 30px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 15, 26, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
}

.menu-btn, .ticket-badge {
  min-width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: 0.25s;
  padding: 0 12px;
}

.menu-btn:hover,
.ticket-badge:hover {
  background: rgba(255,255,255,0.11);
}

.brand {
  text-align: center;
  flex: 1;
  padding: 0 10px;
}

.brand-mark {
  width: 62px;
  height: 62px;
  margin: 0 auto 10px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.brand h1 {
  font-size: 19px;
  line-height: 1.1;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.brand span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  margin-top: 4px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background: linear-gradient(180deg, #081522 0%, #10253a 100%);
  box-shadow: var(--shadow);
  z-index: 100;
  padding: 24px 20px;
  transition: left 0.35s ease;
}

.side-menu.open {
  left: 0;
}

.side-menu .close-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.side-menu h2 {
  font-size: 22px;
  color: var(--gold);
}

.close-btn {
  background: rgba(255,255,255,0.08);
  border: none;
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
}

.menu-links a {
  display: block;
  padding: 14px 14px;
  margin-bottom: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  color: white;
  transition: 0.25s;
}

.menu-links a:hover {
  background: rgba(247, 215, 116, 0.13);
  color: var(--gold);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 90;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.page-section {
  padding: 20px 18px;
}

.card {
  background: linear-gradient(180deg, rgba(14, 28, 45, 0.95), rgba(9, 21, 34, 0.98));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 20px;
}

.section-heading {
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}

.section-subtext {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.gold-btn {
  display: inline-block;
  width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 15px 20px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 800;
  color: #08131f;
  background: linear-gradient(90deg, #ffe58f, #f7d774, #dba731);
  box-shadow: 0 10px 25px rgba(217, 170, 48, 0.25);
}

.blue-btn {
  display: inline-block;
  width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 15px 20px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, #0aa9ff, #0b84ff);
}

footer {
  margin: 12px 18px 0;
  padding: 22px 16px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  text-align: center;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

footer p {
  color: #c2cfdd;
  font-size: 14px;
  line-height: 1.6;
}
