/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: "Avenir Next", "Avenir", Helvetica, Arial, sans-serif;
  background: #0e0c00;
  color: #fff;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { text-decoration: none; color: inherit; }

/* =============================================
   NAVBAR  — mobile-first, matches screenshot
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  height: 60px;
  gap: 0;
}

/* Left icons */
.nav-left {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-icon-btn {
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: #fff;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.nav-icon-btn:hover { background: rgba(255,255,255,0.18); }
.nav-icon-btn svg { width: 20px; height: 20px; }

/* Center CTA pill */
.nav-open-snap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fffc00;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.nav-open-snap:hover { background: #fffc00; transform: scale(1.03); }

.snap-ghost-sm {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
  /* The PNG is black on white — mix-blend-mode makes white transparent on yellow */
  mix-blend-mode: multiply;
}

/* Right spacer mirrors left flex:1 so pill stays centered */
.nav-right-spacer { flex: 1; }

/* =============================================
   HERO — dark warm background
   ============================================= */
.hero {
  background: #1a1300;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px 44px;
  text-align: center;
}

.hero-logo {
  width: 160px;
  height: auto;
  margin-bottom: 24px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 16px;
  color: #D4D5D6;
  font-weight: 400;
  line-height: 1.55;
  max-width: 340px;
}

/* =============================================
   MAIN — gift card
   ============================================= */
.main {
  flex: 1;
  background: #1a1300;
  display: flex;
  justify-content: center;
  padding: 0 16px 60px;
}

.gift-card {
  width: 100%;
  max-width: 480px;
  background: #221b00;
  border: 1px solid rgba(255, 228, 0, 0.2);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

/* Gift tag pill */
.gift-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 228, 0, 0.12);
  border: 1px solid rgba(255, 228, 0, 0.3);
  color: #fffc00;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}
.gift-tag svg { width: 14px; height: 14px; }

/* Message */
.gift-msg {
  font-size: 15px;
  color: #bbb;
  line-height: 1.6;
}
.gift-msg strong { color: #fff; font-weight: 700; }

/* Features row — max 3, horizontal */
.gift-features {
  display: flex;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.gift-feat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,228,0,0.05);
  border: 1px solid rgba(255,228,0,0.1);
  border-radius: 14px;
  padding: 14px 10px;
  font-size: 12px;
  color: #ccc;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

.feat-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

/* CTA button */
.claim-btn {
  display: block;
  width: 100%;
  background: #fffc00;
  color: #000;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  padding: 16px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.1px;
}
.claim-btn:hover {
  background: #fffc00;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 228, 0, 0.3);
}
.claim-btn:active { transform: scale(0.98); }

/* Countdown */
.gift-note {
  font-size: 13px;
  color: #777;
}
.yellow { color: #fffc00; font-weight: 700; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: #2a2a2a; padding: 36px 24px 0; }

.footer-columns {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: 1100px;
  margin: 0 auto;
}
.footer-col { flex: 1; min-width: 130px; }
.footer-col-title { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a { font-size: 12px; color: #aaa; transition: color 0.2s; line-height: 1.4; }
.footer-col ul li a:hover { color: #fff; }

.footer-lang-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: 1100px;
  margin: 0 auto;
}
.footer-lang-label { font-size: 12px; color: #888; font-weight: 500; }
.footer-lang-select {
  appearance: none;
  background: #333;
  border: 1px solid #444;
  color: #ccc;
  font-size: 13px;
  font-family: inherit;
  padding: 7px 30px 7px 12px;
  border-radius: 6px;
  cursor: pointer;
  outline: none;
  width: 140px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.footer-bottom {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.footer-bottom-link { font-size: 12px; color: #888; transition: color 0.2s; }
.footer-bottom-link:hover { color: #ccc; }

/* =============================================
   RESPONSIVE — desktop keeps nav wider
   ============================================= */
@media (min-width: 768px) {
  .hero-logo { width: 200px; }
  .hero-title { font-size: 46px; }
  .hero-sub { font-size: 18px; }

  .gift-card { padding: 36px 36px; }
  .gift-feat-item { padding: 18px 14px; font-size: 13px; }
  .feat-img { width: 44px; height: 44px; }

  .nav-icon-btn { width: 38px; height: 38px; }
}

@media (max-width: 380px) {
  .nav-open-snap { font-size: 13px; padding: 9px 16px; }
  .hero-logo { width: 130px; }
  .hero-title { font-size: 30px; }
  .gift-features { gap: 8px; }
  .gift-feat-item { padding: 10px 6px; font-size: 11px; }
}

/* =============================================
   HAMBURGER MENU OVERLAY
   ============================================= */

/* Backdrop */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.menu-backdrop.visible {
  opacity: 1;
  pointer-events: all;
}

/* Overlay panel */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Avenir Next", "Avenir", Helvetica, Arial, sans-serif;
}
.menu-overlay.open {
  transform: translateX(0);
}

/* TOP dark section */
.menu-top {
  background: #111;
  flex: 0 0 auto;
  padding-bottom: 10px;
}

/* Topbar: X + ghost */
.menu-topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 14px 16px;
  min-height: 60px;
}

.menu-close-btn {
  position: absolute;
  left: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
}
.menu-close-btn:hover { background: rgba(255,255,255,0.1); }
.menu-close-btn svg { width: 22px; height: 22px; }

.menu-ghost {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: invert(1); /* black → white on dark background */
}

/* Nav items */
.menu-nav {
  padding: 8px 0;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 24px;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
  line-height: 1.3;
  font-family: inherit;
}
.menu-item:hover { background: rgba(255,255,255,0.06); }

.menu-item-underline {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 15px;
  color: #ddd;
}

/* Accordion */
.menu-accordion-btn {
  font-weight: 400;
}
.acc-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: #aaa;
}
.acc-chevron.open { transform: rotate(0deg); }
.acc-chevron:not(.open) { transform: rotate(180deg); }

.menu-sub-list {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.menu-sub-list.open { max-height: 200px; }

.menu-sub-item {
  display: block;
  padding: 10px 24px 10px 40px;
  font-size: 15px;
  color: #ccc;
  transition: color 0.15s;
}
.menu-sub-item:hover { color: #fff; }

/* Divider */
.menu-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 8px 24px;
}

/* Language block */
.menu-lang-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 8px;
}
.menu-lang-label {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
}
.menu-lang-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: #1e1e1e;
  border: 1px solid #444;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  padding: 12px 36px 12px 14px;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* BOTTOM light section */
.menu-bottom {
  background: #f5f5f5;
  flex: 1;
  padding: 24px 0 40px;
}

.menu-explorer-title {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  padding: 0 24px 8px;
  letter-spacing: 0.2px;
}

.menu-explorer-list {
  display: flex;
  flex-direction: column;
}

.menu-explorer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 400;
  color: #111;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.15s;
}
.menu-explorer-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.menu-explorer-item:hover { background: rgba(0,0,0,0.04); }
.menu-explorer-item svg {
  width: 18px;
  height: 18px;
  color: #555;
  flex-shrink: 0;
}
