:root {
  --background-color: #000000;
  --primary-color: #ffffff;
  --secondary-color: #131313;
  --button-color: #ffee02;
  --accent-color: #e45353;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI";
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--primary-color);
  background: #1a1a1a url('https://res.cloudinary.com/dnpmuuz3s/image/upload/v1759314588/1af48f96-b9c0-4faa-9dd5-cb6b5dd599ea_fblmlh.jpg') center/cover fixed no-repeat;
  overflow-x: hidden;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
}
.top-bar .title {
  font-weight: 700;
  font-size: 16px;
}

.menu-toggle {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.menu-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  background: #474747;
  border-radius: 10px;
  cursor: pointer;
}
.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.menu-icon .bar {
  height: 5px;
  width: 35px;
  background: var(--accent-color);
  border-radius: 25px;
}
#menu-toggle:checked ~ .sidebar {
  transform: translateX(0);
}
.sidebar {
  height: 100%;
  width: 250px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  background-color: #111;
  padding-top: 60px;
  transform: translateX(-250px);
  transition: transform 0.3s ease;
  border-right: 2px solid var(--accent-color);
}
.sidebar a,
.sidebar .close-btn {
  display: block;
  text-decoration: none;
  transition: 0.3s;
}
.sidebar a {
  padding: 14px 8px 14px 32px;
  font-size: 1rem;
  color: #818181;
}
.sidebar a:hover {
  color: #f1f1f1;
  background-color: #222;
}
.sidebar .close-btn {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 36px;
  color: var(--accent-color);
  cursor: pointer;
  line-height: 1;
}
.sidebar hr {
  border: 0;
  border-top: 1px solid #333;
  margin: 10px 0;
}

.main-container {
  max-width: 820px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 30px;
  opacity: 0.97;
  background: #191919bb;
  box-shadow: 0 8px 20px rgb(0, 0, 0);
}
.main-container h1 {
  margin: 0 0 15px 0;
  font-size: 2rem;
  color: var(--button-color);
}
.main-container p {
  margin: 0 0 20px 0;
  font-size: 1rem;
  opacity: 0.9;
}

.location-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 2rem;
  justify-content: center;
}
.location-btns .btn {
  background-color: var(--accent-color);
  color: #fff;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  cursor: pointer;
  user-select: none;
}
.location-btns .btn:hover:not(.disabled) {
  background-color: var(--button-color);
  color: #222;
}
.location-btns .btn.disabled,
.location-btns .btn.disabled:hover {
  background-color: #444;
  color: #767676;
  cursor: not-allowed;
  pointer-events: none;
}

/* Section Titles and lists */
section h2 {
  padding-bottom: 6px;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--accent-color);
  color: var(--button-color);
}
section ul {
  padding-left: 18px;
  line-height: 1.8;
  color: #eee;
}
section ul li {
  margin-bottom: 6px;
  font-size: 1rem;
}
section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

/* Responsive */
@media (max-width: 640px) {
  .location-btns {
    flex-direction: column;
    align-items: center;
  }
  .location-btns .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
