:root {
  --bg: #020202;
  --bg-soft: #111111;
  --white: #ffffff;
  --muted: #aaaaaa;
  --gold: #ffd700;
  --gold-soft: #e0c35c;
  --radius: 16px;
  --border-subtle: rgba(255,255,255,0.08);
  --transition-fast: 0.18s ease-out;
  --font-sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "DM Serif Display", "Georgia", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

/* Layout */

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 20px 40px;
}

/* Header */

/* === HEADER: full-width translucent glass background (no shadow or line) === */
/* === HEADER: full-width gradient glass background (darker top, lighter bottom) === */
.site-header {
  position: relative;
  width: 100%;
  padding: 32px 0 28px;
  text-align: center;
  z-index: 10;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,   /* darker at top */
    rgba(0, 0, 0, 0.45) 60%, /* fades to lighter mid */
    rgba(0, 0, 0, 0.25) 100% /* nearly transparent bottom */
  );
  backdrop-filter: blur(6px);
  /* no border, no shadow */
}

/* Inner container keeps content aligned */
.site-header .header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 22px;
  text-align: left;
}

/* Text styling */
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.logo {
  margin: 6px 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.05em;
  font-weight: 400;
  color: var(--white);
  text-shadow:
    0 0 10px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(0, 0, 0, 0.4);
}

.tagline {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  max-width: 600px;
  margin: 6px 0 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}





/* === SITE BACKGROUND: Animated Gold Shards === */
body {
  font-family: var(--font-sans);
  color: var(--white);
  background-color: #000;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}

/* Gold shards image as main background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background: url("gold_shards_background.png") center center / cover no-repeat fixed;
  opacity: 0.95;
  animation: goldDrift 40s ease-in-out infinite alternate;
}

/* Slow background drift animation */
@keyframes goldDrift {
  0% {
    background-position: 50% 50%;
  }
  25% {
    background-position: 52% 48%;
  }
  50% {
    background-position: 48% 52%;
  }
  75% {
    background-position: 51% 49%;
  }
  100% {
    background-position: 50% 50%;
  }
}

/* === SECTION PANELS (CARDS) === */
.card {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3) 70%, transparent);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 215, 0, 0.25);
  padding: 20px;
  margin-top: 20px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.9);
}

/* ensure text contrast */
.card h2 {
  color: var(--gold);
}
.card p,
.card li {
  color: var(--white);
}

.card strong {
  color: var(--gold-soft);
}

.hero .note {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,215,0,0.45);
  font-size: 11px;
  color: var(--gold);
  margin-top: 6px;
}

/* === Overview section with side image === */
.overview-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

/* Text block */
.overview-text {
  flex: 1 1 340px;
  min-width: 260px;
}

/* Image block */
.overview-image {
  flex: 0 0 300px;
  text-align: right;
}

.overview-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* subtle hover lift */
.overview-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.9);
}

/* Responsive layout for mobile */
@media (max-width: 700px) {
  .overview-content {
    flex-direction: column;
    text-align: center;
  }

  .overview-image {
    text-align: center;
  }

  .overview-text {
    text-align: left;
  }
}


/* Schedule */

.schedule {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}

.slot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  margin: 8px 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), transparent);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.slot:hover {
  background: linear-gradient(90deg, rgba(255,215,0,0.10), transparent);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.7);
}

.time-label {
  min-width: 180px;
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
}

.status {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--muted);
}

.status.live {
  color: var(--bg);
  background: var(--gold);
  border-color: var(--gold);
}

.clue-link {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--gold);
  color: #000;
  font-weight: 600;
  border: none;
  box-shadow: 0 3px 10px rgba(0,0,0,0.7);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.clue-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(0,0,0,0.9);
  background: #ffe47a;
}

.countdown {
  font-size: 11px;
  color: var(--muted);
}

.hidden {
  display: none;
}

.help-text {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}

/* Footer */

.site-footer {
  max-width: 960px;
  margin: 0 auto;
  padding: 14px 20px 26px;
  text-align: left;
  font-size: 11px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Clue pages */

.clue-page {
  background-color: var(--bg);
  color: var(--white);
}

.clue-page .site-header {
  padding-bottom: 4px;
}

.clue-page .logo {
  font-size: 26px;
}

.clue-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--gold);
}

.clue-label {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
}
