/* ═══════════════════════════════════════════
   Global Styles — The Greatest Gameshow
   Shared across all pages (except preparing.html)
   ═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════
  Dropdown — "Event Info" nav
   ═══════════════════════════════════════════ */

.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-toggle {
  cursor: pointer;
  user-select: none;
}

.nav-dropdown .dropdown-toggle::after {
  content: '▾';
  display: inline-block;
  margin-left: 0.4em;
  font-size: 0.7em;
  transition: transform 0.2s;
}

.nav-dropdown .dropdown-toggle.open::after {
  transform: rotate(180deg);
}

.navbar-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: rgba(20, 20, 40, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  list-style: none;
  padding: 0.25rem 0;
  z-index: 1100;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.navbar-links .dropdown-menu.open {
  display: block;
}

.navbar-links .dropdown-menu li a {
  display: block;
  padding: 0.7rem 1.6rem;
  font-family: 'Sugo Display Bold', 'Arial Black', sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  border: none;
  opacity: 0.75;
  transition: opacity 0.2s, background 0.2s;
}

.navbar-links .dropdown-menu li a:hover,
.navbar-links .dropdown-menu li a:focus-visible {
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
}

.navbar-links .dropdown-menu li a.active {
  opacity: 1;
  color: #efd161;
}

/* ─── Fonts ─── */
@font-face {
  font-family: 'Sugo Display Bold';
  src: url('../fonts/Sugo-Pro-Classic-Bold-trial.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Sugo Display Regular';
  src: url('../fonts/Sugo-Pro-Display-Regular-trial.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Lexend';
  src: url('../fonts/Lexend-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

/* ─── Reset ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── Base ───
 * Gradient is fixed to viewport so scrolling never shows a blank background. */
html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at center, #8c52ff 0%, #5ce1e6 100%) fixed;
  background-size: cover;
  color: #ffffff;
  font-family: 'Lexend', 'Arial', sans-serif;
}
