/* =========================
   GLOBAL RESET & VARIABLES
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* =========================
   BODY & BACKGROUND EFFECTS
   ========================= */
body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-family-main);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Arena Atmosphere Background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: 
    radial-gradient(circle at 50% 0%, #1a202c 0%, var(--bg-main) 70%),
    radial-gradient(circle at 85% 30%, rgba(198, 156, 109, 0.08), transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(198, 156, 109, 0.05), transparent 50%);
  background-blend-mode: screen;
}

/* Subtle Noise Texture for Realism */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* =========================
   LANDING SECTION
   ========================= */
.landing {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  text-align: left;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
}

/* =========================
   CONTENT WRAPPER
   ========================= */
.content-wrapper {
  display: flex;
  max-width: 1400px;
  width: 100%;
  gap: 40px;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
}

/* =========================
   TEXT COLUMN
   ========================= */
.text-column {
  flex: 1 1 auto;
  z-index: 10;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.title {
  font-family: var(--font-family-display);
  font-size: 64px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: inline-block;
  line-height: 1.1;
}

.subtitle {
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   CTA BUTTONS
   ========================= */
.cta-section {
  position: relative;
  display: inline-block;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 56px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--gold-gradient);
  color: #000;
  border-radius: 2px; /* NHL Sharp Style */
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(198, 156, 109, 0.2);
}

.btn-primary:active {
  transform: translateY(0);
}

/* =========================
   LOGO COLUMN
   ========================= */
.logo-column {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.logo-img {
  width: 250px;
  max-width: 60%;
  height: auto;
  z-index: 1;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 20px rgba(227, 157, 5, 0.1));
}

.logo-img:hover {
  transform: scale(1.05);
}

/* =========================
   LOGIN DROPDOWN
   ========================= */
.login-dropdown {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 280px;
  padding: 22px;
  background-color: rgba(26, 28, 32, 0.5);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.01) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.01) 75%, rgba(255,255,255,0.01)),
    linear-gradient(45deg, rgba(255,255,255,0.01) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.01) 75%, rgba(255,255,255,0.01));
  background-size: 12px 12px, 12px 12px;
  background-position: 0 0, 6px 6px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  z-index: 100;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.login-dropdown.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* =========================
   FORM ELEMENTS
   ========================= */
.login-dropdown label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.login-dropdown input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.login-dropdown input[type="email"]:focus {
  border-color: var(--accent);
  background-color: rgba(227,157,5,0.1);
}

.login-dropdown input[type="email"]::placeholder {
  color: var(--text-muted);
}

.login-dropdown .btn-submit {
  width: 100%;
  padding: 10px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), rgba(255,255,255,0.05)), var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 4px 10px rgba(0,0,0,0.25);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.login-dropdown .btn-submit:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.3), rgba(255,255,255,0.08)), var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 6px 14px rgba(0,0,0,0.35);
}

.login-dropdown .btn-submit:active {
  transform: translateY(0);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.25), 0 3px 8px rgba(0,0,0,0.3);
}

.login-dropdown .btn-submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(227, 157, 5, 0.35), 0 4px 10px rgba(0,0,0,0.25);
}

.login-message {
  font-size: 13px;
  margin-top: 6px;
  min-height: 18px;
  color: #ff5555;
}

/* RESPONSIVE DESIGN REMOVED FOR ARCHIVE */


/* Go to site button */
.go-to-site-btn {
    display: none;
}
