:root {
  --yellow: #f7d354;
  --white: #ffffff;
  --blue-dark: #0a2a43;
  --blue-light: #1a3f5f;
  --accent: #4fc3f7;
}

/* GLOBAL */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #000;
  color: var(--white);
  overflow-x: hidden;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-logo {
  height: 85px;
  border-radius: 10px;
  border: 2px solid var(--yellow);
}

.header-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.header-name {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--yellow);
}

.header-stat {
  font-size: 1rem;
  opacity: 0.9;
}

/* REP TOGGLE */
.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 22px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #555;
  border-radius: 22px;
  transition: .3s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: var(--white);
  border-radius: 50%;
  transition: .3s;
}

input:checked + .slider {
  background-color: var(--yellow);
}

input:checked + .slider:before {
  transform: translateX(23px);
}

/* MENU */
.cloud-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 310px;
  height: 100vh;
  background: rgba(10, 42, 67, 0.96);
  border-right: 3px solid var(--yellow);
  padding: 20px;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  z-index: 9999;
}

.cloud-menu.open {
  transform: translateX(0);
}

/* HERO */
.hero {
  text-align: center;
  margin-top: 40px;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  color: var(--yellow);
}

.hero p {
  opacity: 0.85;
}

/* LEADERBOARD */
.leaderboard-section {
  width: 90%;
  margin: 40px auto;
}

.leaderboard {
  background: rgba(10, 42, 67, 0.85);
  border: 2px solid var(--yellow);
  border-radius: 12px;
  padding: 20px;
}

/* MAP */
.map-section {
  width: 90%;
  margin: 40px auto;
  text-align: center;
}

.map-preview {
  height: 250px;
  background: rgba(10, 42, 67, 0.85);
  border: 2px solid var(--yellow);
  border-radius: 12px;
}

.full-map-btn {
  margin-top: 15px;
  padding: 10px 20px;
  background: var(--yellow);
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* ZONES */
.zones-section {
  width: 90%;
  margin: 40px auto;
}

.zones-list {
  background: rgba(10, 42, 67, 0.85);
  border: 2px solid var(--yellow);
  border-radius: 12px;
  padding: 20px;
}

/* VENDORS */
.vendors-section {
  width: 90%;
  margin: 40px auto;
}

.vendor-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
}

/* NEEDS */
.needs-section {
  width: 90%;
  margin: 40px auto;
}

.needs-list {
  background: rgba(10, 42, 67, 0.85);
  border: 2px solid var(--yellow);
  border-radius: 12px;
  padding: 20px;
}

.post-need-btn {
  margin-top: 15px;
  padding: 10px 20px;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
