/* Age Verification Gate Styles */
#msm-age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
  overflow: hidden;
}
.msm-age-gate-card {
  background: rgba(40, 40, 40, 0.85);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.45);
  border-radius: 18px;
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 350px;
  width: 90vw;
  text-align: center;
  backdrop-filter: blur(8px) saturate(1.2);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.msm-age-gate-logo {
  width: 220px;
  max-width: 98vw;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}
.msm-age-gate-title {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
}
.msm-age-gate-text {
  color: #e0e0e0;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.msm-age-gate-buttons {
  display: flex;
  gap: 1rem;
  width: 100%;
  justify-content: center;
}
.msm-age-gate-btn {
  flex: 1 1 0;
  padding: 0.7rem 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.18s,
    color 0.18s,
    transform 0.18s;
  margin: 0 0.1rem;
}
.msm-age-gate-btn-yes {
  background: linear-gradient(90deg, #2ecc40 0%, #27ae60 100%);
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(46, 204, 64, 0.13);
}
.msm-age-gate-btn-yes:hover {
  background: linear-gradient(90deg, #27ae60 0%, #2ecc40 100%);
  color: #eaffea;
  transform: translateY(-2px) scale(1.04);
}
.msm-age-gate-btn-no {
  background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(231, 76, 60, 0.13);
}
.msm-age-gate-btn-no:hover {
  background: linear-gradient(90deg, #c0392b 0%, #e74c3c 100%);
  color: #fff0f0;
  transform: translateY(-2px) scale(1.04);
}
/* Slide-up animation for gate */
.msm-age-gate-slideup {
  animation: msm-age-gate-slideup 0.6s cubic-bezier(0.6, 0, 0.4, 1) forwards;
}
@keyframes msm-age-gate-slideup {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 0.7;
    transform: translateY(-40px);
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh);
    pointer-events: none;
  }
}
.nav-left {
  position: relative;
  z-index: 4000;
}
.logo-link,
.logo {
  width: 160px !important;
  height: 160px !important;
}

.dropdown-menu {
  z-index: 3000;
}

.menu-pill:hover,
.menu-pill:focus-visible {
  background: var(--accent-hover);
  outline: none;
}

/* Remove/disable old hamburger/menu-label styles */
.hamburger,
.hamburger span,
.menu-label {
  display: none !important;
}
/* --- MENU PILL BUTTON STYLES --- */
.menu-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent); /* match Buy Issue button */
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #23262e; /* match Buy Issue button text */
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-icon span {
  width: 22px;
  height: 3px;
  background: #23262e; /* match Buy Issue button text */
  border-radius: 3px;
  display: block;
}

/* --- DISABLE OLD HAMBURGER STYLES --- */
.hamburger,
.hamburger span {
  display: none !important;
}
/* Unified navbar logo styles (CLEANED + BIGGER) */
.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px !important;
  height: 220px !important;
  margin: 0 auto;
}

.logo {
  width: 220px !important;
  height: 220px !important;
  max-width: 100% !important;
  object-fit: contain !important;
  border-radius: 50% !important;
  background: transparent;
  box-shadow: none;
  display: block;
  transition: transform 0.2s;
  image-rendering: auto;
  transform: translateZ(0);
}

.logo:hover {
  transform: scale(1.03);
}

.logo-circle {
  border-radius: 50%;
  border: none;
  background: none;
  box-shadow: none;
}

:root {
  --bg-dark: #181a20;
  --bg-glass: rgba(32, 34, 40, 0.85);
  --accent: #e0b86b;
  --accent-hover: #f5d58a;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.18);
  --text-main: #f5f5f7;
  --text-muted: #b3b3b7;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  --radius: 18px;
  --radius-sm: 10px;
  --transition: 0.18s cubic-bezier(0.4, 0.2, 0.2, 1);
  --max-width: 1100px;
  --nav-height: 160px;
  --glass-blur: 12px;
}

html,
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(120deg, #181a20 0%, #23262e 100%);
  color: var(--text-main);
  font-family: system-ui, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

.header {
  width: 100%;
  background: var(--bg-glass);
  backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 10;
}

.sticky {
  position: sticky;
  top: 0;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: 1fr 220px 1fr !important;
  align-items: center !important;
  height: var(--nav-height) !important;
  padding: 0.5rem 1rem;
  position: relative;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  justify-content: flex-start;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.buy-issue-btn {
  font-size: 1.08rem;
  padding: 0.6em 1.5em;
  border-radius: 22px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(224, 184, 107, 0.08);
}

.nav {
  display: none !important;
}

/* Dropdown menu styles */
.dropdown-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  width: 260px;
  min-width: 200px;
  max-width: 94vw;
  height: auto;
  background: linear-gradient(120deg, #181a20 0%, #23262e 100%);
  border: none;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.18);
  z-index: 3000;
  padding: 1.2rem 0.5rem;
  margin: 0.5rem 0 0 0;
  align-items: stretch;
  justify-content: flex-start;
}

.dropdown-menu .nav-link {
  padding: 0.9em 1.2em;
  margin: 0.2em 0;
  font-size: 1.08rem;
  color: var(--text-main);
  text-align: left;
  border-radius: 12px;
  background: none;
  border: none;
  transition:
    background 0.18s,
    color 0.18s;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.dropdown-menu .nav-link:hover,
.dropdown-menu .nav-link:focus {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  outline: none;
}

.dropdown-menu.show,
.dropdown-menu.open {
  display: flex;
}

.nav-link:hover,
.nav-link:focus {
  background: var(--border-light);
  color: var(--accent);
  outline: none;
}

.nav-link.active {
  color: var(--accent);
  background: var(--border-light);
}

.glass {
  background: linear-gradient(120deg, #181a20 0%, #23262e 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(var(--glass-blur));
  margin: 2.5rem auto;
  max-width: var(--max-width);
  padding: 2.5rem 2rem;
}

.hero {
  text-align: center;
  margin-top: 3.5rem;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: -1px;
}

.hero-subtext {
  color: var(--text-muted);
  font-size: 1.18rem;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 0.7em 2em;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #23262e;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition:
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition);
  text-decoration: none;
  outline: none;
}

.btn-primary {
  background: var(--accent);
  color: #23262e;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent-hover);
  color: #181a20;
  box-shadow: 0 4px 16px rgba(224, 184, 107, 0.18);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--accent);
  color: #23262e;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--accent);
}

.carousel-section {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  position: relative;
  margin: 0 auto;
  max-width: 600px;
  outline: none;
}

.carousel-image-wrapper {
  width: 340px;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
  background: #23262e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: opacity var(--transition);
}

.carousel-btn {
  background: var(--border-light);
  color: var(--accent);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition);
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover,
.carousel-btn:focus {
  background: var(--accent);
  color: #23262e;
}

.carousel-dots {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.7rem;
  justify-content: center;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    box-shadow var(--transition);
  outline: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.dot.active,
.dot:focus {
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(224, 184, 107, 0.18);
}

.features {
  margin-top: 2.5rem;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.feature-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem 1.2rem;
  text-align: center;
  color: var(--text-main);
  transition:
    box-shadow var(--transition),
    border var(--transition);
}

.feature-card:hover,
.feature-card:focus {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(224, 184, 107, 0.1);
}

.premium-hero .feature-cards {
  margin-top: 2.5rem;
}

.premium-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
}

.pricing-card {
  background: var(--bg-glass);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem 1.2rem;
  text-align: center;
  color: var(--text-main);
  transition:
    box-shadow var(--transition),
    border var(--transition);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(224, 184, 107, 0.1);
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}

.subscribe-form label {
  font-weight: 500;
  color: var(--text-main);
}

.subscribe-form input,
.subscribe-form select {
  padding: 0.7em 1em;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: #23262e;
  color: var(--text-main);
  font-size: 1rem;
  transition:
    border var(--transition),
    box-shadow var(--transition);
  outline: none;
}

.subscribe-form input:focus,
.subscribe-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(224, 184, 107, 0.1);
}

.contact-hero {
  max-width: 600px;
  margin: 3rem auto;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.contact-form label {
  font-weight: 500;
  color: var(--text-main);
  text-align: left;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.7em 1em;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: #23262e;
  color: var(--text-main);
  font-size: 1rem;
  transition:
    border var(--transition),
    box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(224, 184, 107, 0.1);
}

.required {
  color: var(--accent);
  font-weight: bold;
}

.footer {
  width: 100%;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 1rem;
  color: var(--text-muted);
  background: var(--bg-glass);
  border-top: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: var(--shadow);
  margin-top: 3rem;
}

/* Hamburger icon with three bars */
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-main);
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.2s;
}

@media (max-width: 900px) {
  .nav-container {
    grid-template-columns: 1fr 120px 1fr !important;
    height: 80px !important;
    padding: 0 0.5rem !important;
  }
  .logo-link,
  .logo {
    width: 120px !important;
    height: 120px !important;
  }
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .carousel-btn.prev {
    left: 0.2rem;
    right: auto;
  }
  .carousel-btn.next {
    right: 0.2rem;
    left: auto;
  }
  .carousel {
    max-width: 98vw;
    overflow-x: visible;
  }
  .nav-left,
  .nav-right {
    gap: 0.4rem;
  }
  .logo-link,
  .logo {
    width: 140px !important;
    height: 140px !important;
  }
  .buy-issue-btn {
    font-size: 0.95rem;
    padding: 0.5em 1em;
  }
  .menu-pill {
    height: 40px;
    padding: 0 12px;
    font-size: 0.95rem;
  }
  .hero {
    margin-top: 1.2rem;
    margin-bottom: 0.7rem;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 0.7rem;
  }
  .glass {
    padding: 1rem 0.5rem;
  }
  .section-title {
    font-size: 1.1rem;
  }
  .footer {
    font-size: 0.95rem;
    padding: 1rem 0;
  }
  .buy-issue-btn {
    font-size: 0.95rem;
    padding: 0.5em 1em;
  }
  .glass {
    padding: 1.2rem 0.5rem;
  }
  .feature-cards,
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .carousel-image-wrapper {
    width: 98vw;
    max-width: 320px;
    height: 140px;
  }
  .hero {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 0.7rem;
  }
  .section-title {
    font-size: 1.2rem;
  }
  .footer {
    font-size: 0.95rem;
    padding: 1rem 0;
  }
}

@media (max-width: 600px) {
  .nav-container {
    grid-template-columns: 1fr 140px 1fr !important;
    height: 140px !important;
    padding: 0 0.1rem !important;
  }
  .logo-link,
  .logo {
    width: 140px !important;
    height: 140px !important;
  }
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  .carousel-btn.prev {
    left: 0.1rem;
    right: auto;
  }
  .carousel-btn.next {
    right: 0.1rem;
    left: auto;
  }
  .carousel {
    max-width: 100vw;
    overflow-x: visible;
  }
  .nav-left,
  .nav-right {
    gap: 0.2rem;
  }
  .menu-pill {
    height: 32px;
    padding: 0 8px;
    font-size: 0.85rem;
  }
  .buy-issue-btn {
    font-size: 0.85rem;
    padding: 0.4em 0.7em;
  }
  .hero {
    margin-top: 0.7rem;
    margin-bottom: 0.3rem;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 0.5rem;
  }
  .glass {
    padding: 0.5rem 0.2rem;
  }
  .section-title {
    font-size: 1rem;
  }
  .footer {
    font-size: 0.9rem;
    padding: 0.7rem 0;
  }
  .menu-pill {
    height: 36px;
    padding: 0 10px;
    font-size: 0.85rem;
    gap: 6px;
  }
  .buy-issue-btn {
    font-size: 0.85rem;
    padding: 0.4em 0.7em;
  }
  .glass {
    padding: 0.7rem 0.2rem;
  }
  .feature-cards,
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .carousel-image-wrapper {
    width: 98vw;
    max-width: 220px;
    height: 90px;
  }
  .hero {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 0.5rem;
  }
  .section-title {
    font-size: 1rem;
  }
  .footer {
    font-size: 0.9rem;
    padding: 0.7rem 0;
  }
}

body.msm-locked {
  visibility: hidden !important;
  overflow: hidden !important;
  height: 100vh !important;
}

.msm-age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-dark, #18191c);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.msm-age-gate-card {
  background: var(--bg-glass, rgba(36, 37, 41, 0.92));
  border-radius: 1.3rem;
  box-shadow:
    0 8px 32px 0 rgba(0, 0, 0, 0.22),
    0 2px 8px 0 rgba(0, 0, 0, 0.13);
  padding: 2.5rem 2rem 2.2rem 2rem;
  max-width: 350px;
  width: 90vw;
  text-align: center;
  color: var(--text-main, #f7f7f7);
  backdrop-filter: blur(8px);
}

.msm-age-gate-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent, #e0b86b);
  margin-bottom: 1.1rem;
}

.msm-age-gate-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-muted, #f7f7f7);
}

.msm-age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.msm-age-gate-btn {
  padding: 0.9rem 1.2rem;
  font-size: 1.08rem;
  font-weight: 600;
  border: none;
  border-radius: 0.8rem;
  cursor: pointer;
  background: var(--accent, #e0b86b);
  color: var(--bg-dark, #18191c);
  box-shadow: 0 1.5px 6px 0 rgba(0, 0, 0, 0.1);
  transition:
    background 0.13s,
    color 0.13s,
    box-shadow 0.13s;
  margin: 0 auto;
  width: 100%;
  max-width: 260px;
}
.msm-age-gate-btn:focus,
.msm-age-gate-btn:hover {
  background: var(--accent-hover, #cfa94e);
  color: var(--bg-dark, #18191c);
  box-shadow: 0 0 0 3px var(--accent, #e0b86b, 0.18);
}
.msm-age-gate-btn-exit {
  background: var(--bg-glass, #232325);
  color: var(--accent, #e0b86b);
  border: 1px solid var(--accent, #e0b86b);
}
.msm-age-gate-btn-exit:focus,
.msm-age-gate-btn-exit:hover {
  background: var(--bg-dark, #18191c);
  color: #fff;
}
