:root {
  --green: #009E81;
  --green-dark: #007A66;
  --yellow: #FFC244;
  --ink: #16332e;
  --muted: #5c6b67;
  --line: #d5e0dc;
  --sheet: #fff;
  --bg: #eef3f0;
  --shadow: 0 12px 32px rgba(22, 51, 46, 0.12);
  --radius: 16px;
}

* { box-sizing: border-box; }

html {
  background: #1f2e2a;
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0 auto;
  max-width: 480px;
  width: 100%;
  min-height: 100vh;
  color: var(--ink);
  font-family: Nunito, sans-serif;
  background: var(--bg);
  box-shadow: 0 0 48px rgba(0, 0, 0, 0.18);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  touch-action: manipulation;
  overscroll-behavior-x: none;
}

img { max-width: 100%; display: block; }

input,
select,
textarea {
  font-size: 16px !important;
}

button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  font-family: inherit;
}

.glovo-logo {
  display: block;
  object-fit: contain;
}

.glovo-logo--login {
  width: 152px;
  height: auto;
  margin: 0 auto 12px;
}

.glovo-logo--header {
  width: auto;
  height: 28px;
  margin: 0;
}

/* ——— Login ——— */
#login {
  min-height: 100vh;
  background: var(--yellow);
  display: flex;
  flex-direction: column;
}

/* Nav only while in-app pages are open */
body:has(#login[style*="flex"]) .menuemb,
body:has(#login[style*="block"]) .menuemb {
  display: none !important;
}

#inicio[style*="none"] .menuemb,
#saque[style*="none"] .menuemb,
#bonus[style*="none"] .menuemb {
  display: none !important;
}

.login__brand {
  padding: 40px 24px 20px;
  text-align: center;
  flex-shrink: 0;
}

.login__kicker {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.login__sheet {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--sheet);
  border-radius: 28px 28px 0 0;
  padding: 28px 22px 40px;
  box-shadow: 0 -8px 28px rgba(22, 51, 46, 0.06);
}

.login__sheet h1 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.login__sheet > p {
  margin: 0 0 24px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--muted);
}

.login__sheet .prosseguir-button {
  margin-top: 18px;
}

.white-box-login { background: transparent; width: 100%; }

/* ——— Top bar ——— */
.menu {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: 60px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: var(--yellow);
}

.menu a {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}

.buttons-container {
  display: flex;
  align-items: center;
}

.valor-box {
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  min-width: 100px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.12s ease;
}

.valor-box:active {
  transform: scale(0.97);
}

.valor-box span,
#valor {
  display: block;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.02em;
}

/* ——— Bottom nav (floating dock) ——— */
.menuemb {
  position: fixed;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 420px;
  z-index: 40;
  display: flex;
  gap: 2px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(213, 224, 220, 0.85);
  border-radius: 28px;
  box-shadow:
    0 10px 36px rgba(22, 51, 46, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.menuemb__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 58px;
  padding: 6px 4px 7px;
  text-decoration: none;
  color: #8a9894;
  border-radius: 22px;
  transition: color 0.18s ease, background 0.18s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.menuemb__item:active {
  transform: scale(0.96);
}

.menuemb__icon {
  width: 44px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  transition: background 0.18s ease;
}

.menuemb__item .material-symbols-outlined {
  font-size: 23px;
  line-height: 1;
  color: inherit;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.menuemb__item small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: inherit;
  line-height: 1;
}

.menuemb__item.is-active {
  color: var(--green-dark);
}

.menuemb__item.is-active .menuemb__icon {
  background: rgba(0, 158, 129, 0.14);
}

.menuemb__item.is-active .material-symbols-outlined {
  color: var(--green);
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
}

/* ——— Pages ——— */
#inicio {
  min-height: 100vh;
  padding: 60px 0 110px;
  background: #fff;
}

#saque,
#bonus {
  min-height: 100vh;
  padding: 76px 16px 118px;
  background: var(--bg);
}

.outer-box {
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ——— Survey ——— */
.survey {
  background: #fff;
}

.survey__hero {
  position: relative;
  background: #dfe8e4;
}

.survey__hero img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.survey__body {
  padding: 16px 18px 28px;
}

.survey__progress {
  margin: 0 0 14px;
}

.survey__progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.survey__progress-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.survey__progress-count {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}

.survey__progress-track {
  height: 6px;
  border-radius: 999px;
  background: #e4ebe8;
  overflow: hidden;
}

.survey__progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), #00c49a);
  transition: width 0.35s ease;
}

.survey__title {
  margin: 0 0 4px;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.18;
  color: var(--ink);
}

.survey__title span {
  color: var(--green);
}

.survey__hint {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.white-box {
  background: var(--sheet);
  border-radius: 20px;
  padding: 18px 16px 20px;
}

.pergunta-whats {
  margin: 20px 0 10px;
  padding: 0;
  font-size: 15px;
  font-weight: 800;
  text-align: left;
  color: var(--ink);
  line-height: 1.35;
}

.pergunta-whats strong {
  color: var(--green);
  font-weight: 800;
}

/* Estrelas 1–5 */
.rating-container {
  display: flex;
  gap: 8px;
  width: 100%;
  padding: 0;
  background: transparent;
}

.rating-container--stars {
  justify-content: space-between;
  gap: 6px;
  margin: 4px 0 6px;
}

.rating-container.is-invalid .rating-button {
  border-color: #e08a84;
}

.rating-container.is-invalid .rating-button--star {
  animation: star-shake 0.35s ease;
}

.rating-container.is-invalid .rating-button--star .star {
  color: #e08a84;
}

@keyframes star-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

.rating-button {
  flex: 1;
  border: 2px solid #b8c7c2;
  background: #f3f7f5;
  color: var(--ink);
  border-radius: 14px;
  height: 52px;
  font: 800 17px Nunito, sans-serif;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.rating-button:active {
  transform: scale(0.96);
}

.rating-button.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 158, 129, 0.28);
}

.rating-container:has(.rating-button--choice) {
  gap: 10px;
}

.rating-button--choice {
  height: 54px;
  font-size: 15px;
  letter-spacing: 0.06em;
  background: #fff;
  border: 2px solid #b8c7c2;
}

.rating-button--choice.active {
  box-shadow: none;
}

.rating-button--choice[data-rating="1"].active {
  background: #243330;
  border-color: #243330;
  color: #fff;
}

.rating-button--choice[data-rating="2"].active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.rating-button--star {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 12px;
  padding: 0;
}

.rating-button--star .star {
  font-size: 42px;
  line-height: 1;
  color: #d5ddd9;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: color 0.15s ease, transform 0.15s ease, filter 0.15s ease;
}

.rating-button--star:hover .star,
.rating-button--star.is-hover .star {
  color: #ffd56a;
  transform: scale(1.08);
}

.rating-button--star.active {
  background: transparent;
  border: none;
  box-shadow: none;
  color: inherit;
}

.rating-button--star.active .star {
  color: #ffc244;
  filter: drop-shadow(0 4px 8px rgba(255, 194, 68, 0.45));
  transform: scale(1.06);
}

.rating-container--stars.is-rated .rating-button--star.active .star {
  color: #ffb400;
}

.survey__stars-hint {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  min-height: 1.2em;
}

.survey__comment-label {
  display: block;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}

.survey__comment-label span {
  font-weight: 700;
  color: var(--muted);
}

.survey__comment {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 2px solid #b8c7c2;
  border-radius: 14px;
  background: #f8fbfa;
  color: var(--ink);
  font: 600 14px/1.45 Nunito, sans-serif;
  resize: vertical;
  min-height: 84px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.survey__comment::placeholder {
  color: #8a9a95;
  font-weight: 600;
}

.survey__comment:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 158, 129, 0.15);
  background: #fff;
}

.enviarCodigo,
.prosseguir-button,
.desbloquear-button,
.unlock-popup__cta,
.notice-popup__cta {
  width: 100%;
  border: 0;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  font: 800 16px Nunito, sans-serif;
  padding: 16px 16px;
  cursor: pointer;
  display: block;
  margin: 24px 0 0;
  text-transform: none;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 158, 129, 0.25);
  transition: transform 0.12s ease, background 0.15s ease;
}

.enviarCodigo:active,
.prosseguir-button:active,
.desbloquear-button:active,
.unlock-popup__cta:active,
.notice-popup__cta:active {
  transform: scale(0.985);
  background: var(--green-dark);
}

.enviarCodigo:disabled,
.prosseguir-button:disabled {
  opacity: 0.65;
  box-shadow: none;
}

.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  vertical-align: -3px;
  margin-right: 8px;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ——— Fields ——— */
.float-field {
  position: relative;
  width: 100%;
  margin: 14px 0 0;
}

.float-field .form-input,
.form-input {
  width: 100%;
  height: 54px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 18px 14px 6px;
  font: 700 16px Nunito, sans-serif;
  color: var(--ink);
  background: #fff;
  outline: none;
  text-align: left;
  transition: border-color 0.15s ease;
}

.float-field .form-input:focus {
  border-color: var(--green);
}

.float-field label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a9b97;
  font-size: 15px;
  font-weight: 700;
  pointer-events: none;
  background: #fff;
  padding: 0 4px;
  transition: 0.16s ease;
}

.float-field .form-input:focus + label,
.float-field .form-input:not(:placeholder-shown) + label {
  top: 0;
  font-size: 12px;
  color: var(--green);
}

.float-field.is-invalid .form-input {
  border-color: #e24b4b;
}

/* ——— Withdrawal ——— */
.valor-box-saque {
  background: var(--sheet);
  border-radius: 22px;
  padding: 26px 18px 28px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(22, 51, 46, 0.06);
}

.valor-box-saque p {
  margin: 0 0 8px !important;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted) !important;
}

#valor-money {
  display: block;
  font-size: 44px !important;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--green) !important;
  font-family: Nunito, sans-serif !important;
}

.saque-section-title {
  margin: 24px 0 12px !important;
  text-align: left !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: var(--ink) !important;
}

#saque > p {
  margin: 22px 0 12px !important;
  text-align: left;
  font-size: 15px !important;
  font-weight: 800;
  color: var(--ink) !important;
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}

.method-card {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 16px 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}

.method-card:active {
  transform: scale(0.98);
}

.method-card .material-symbols-outlined {
  font-size: 28px;
  color: var(--green);
  font-variation-settings: "FILL" 1;
}

.method-card strong {
  font-size: 13px;
  font-weight: 800;
}

.method-card small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}

.method-card.active {
  border-color: var(--green);
  background: #f0faf7;
  box-shadow: 0 0 0 1px var(--green);
}

.method-panel {
  display: none;
  margin-top: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 14px 18px;
  box-shadow: 0 6px 18px rgba(22, 51, 46, 0.05);
}

.method-panel.is-open { display: block; }

.method-hint {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--muted);
}

.spin-type {
  display: flex;
  gap: 8px;
  margin: 10px 0 4px;
}

.spin-type-btn {
  flex: 1;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 11px;
  font: 800 13px Nunito, sans-serif;
  color: var(--muted);
  cursor: pointer;
}

.spin-type-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

#levantamento-extra {
  margin-top: 12px;
}

.saque-trust {
  margin: 14px 0 0;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--muted);
}

.saque-reserve {
  margin: 10px 12px 0;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--muted);
}

.limit-expect {
  margin: 8px 8px 16px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  color: #5c6b67;
}

/* ——— Reward popup ——— */
.popup-container,
.popup-containerL {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(90%, 380px);
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 24px;
  padding: 28px 22px 26px;
  text-align: center;
  z-index: 10000;
  box-shadow: var(--shadow);
  animation: popup-in 0.28s ease;
}

@keyframes popup-in {
  from {
    opacity: 0;
    transform: translate(-50%, -46%) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.popup-text {
  display: block;
  font-weight: 800;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.popup-container .popup-text + .popup-text {
  font-size: 40px !important;
  font-family: Nunito, sans-serif !important;
  font-weight: 800 !important;
  color: var(--green) !important;
  margin-top: 2px !important;
  letter-spacing: -0.04em;
}

.popup-note {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.euro-coin {
  width: 112px;
  height: 112px;
  margin: 0 auto 12px;
  perspective: 700px;
}

.euro-coin__spin {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: euro-spin 2.2s linear infinite;
}

.euro-coin__face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 800 52px Nunito, sans-serif;
  color: var(--green-dark);
  background: radial-gradient(circle at 32% 28%, #ffe889, #ffc244 52%, #e8a51c);
  box-shadow:
    inset 0 0 0 7px rgba(201, 138, 18, 0.35),
    inset 0 0 0 10px rgba(255, 255, 255, 0.18);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.euro-coin__face--back { transform: rotateY(180deg); }

@keyframes euro-spin {
  to { transform: rotateY(360deg); }
}

.limit-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(15, 28, 25, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.limit-overlay.is-open { display: block; }

.popup-containerL.is-celebrating {
  animation: popup-in 0.34s ease, limit-pop 0.55s ease 0.05s;
}

@keyframes limit-pop {
  0% { transform: translate(-50%, -50%) scale(0.92); }
  60% { transform: translate(-50%, -50%) scale(1.03); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

.limit-kicker {
  margin: 4px 0 0 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted) !important;
}

#valor-saque {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--green);
}

.popup-containerL.is-celebrating #valor-saque {
  animation: saldo-glow 1.2s ease infinite alternate;
}

@keyframes saldo-glow {
  from { transform: scale(1); }
  to { transform: scale(1.045); }
}

#container-progresso {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.popup-containerL.is-celebrating #container-progresso::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 158, 129, 0.28);
  animation: ring-pulse 1.6s ease-out infinite;
  pointer-events: none;
}

@keyframes ring-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 158, 129, 0.3); }
  100% { box-shadow: 0 0 0 18px rgba(0, 158, 129, 0); }
}

#barra-progresso-svg {
  width: 200px;
  height: 200px;
  transform: rotate(-90deg);
}

#texto-progresso {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

#valor-saque {
  font-size: 28px !important;
  font-weight: 800;
  font-family: Nunito, sans-serif !important;
  color: var(--green) !important;
}

.popup-overlay {
  display: none;
  pointer-events: none;
  position: fixed;
  inset: 0;
  background: rgba(16, 24, 22, 0.58);
  z-index: 9999;
  backdrop-filter: blur(2px);
}

.popup-overlay.is-open {
  display: block;
  pointer-events: auto;
}

.unlock-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(92%, 400px);
  transform: translate(-50%, -50%);
  z-index: 10001;
  background: #fff;
  border-radius: 24px;
  padding: 28px 22px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  animation: popup-in 0.28s ease;
}

.unlock-popup.is-open { display: block; }

.unlock-popup__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.unlock-popup__icon .material-symbols-outlined {
  font-size: 34px;
  color: var(--ink);
  font-variation-settings: "FILL" 1;
}

.unlock-popup__kicker {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.unlock-popup__title {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.unlock-popup__text {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--muted);
}

.unlock-fee {
  background: #f4fbf8;
  border: 1px solid #d7efe8;
  border-radius: 16px;
  padding: 14px 12px 12px;
  margin-bottom: 16px;
}

.unlock-fee__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.unlock-fee__value {
  display: block;
  margin: 2px 0 4px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--green);
}

.unlock-fee__note {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #2f9e6f;
}

.unlock-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  text-align: left;
}

.unlock-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #2c3d39;
  padding: 8px 2px;
}

.unlock-list .material-symbols-outlined {
  font-size: 22px;
  color: var(--green);
  font-variation-settings: "FILL" 1;
}

.notice-overlay {
  display: none;
  pointer-events: none;
  position: fixed;
  inset: 0;
  background: rgba(16, 24, 22, 0.58);
  z-index: 10002;
}

.notice-overlay.is-open {
  display: block;
  pointer-events: auto;
}

.notice-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(92%, 380px);
  transform: translate(-50%, -50%);
  z-index: 10003;
  background: #fff;
  border-radius: 24px;
  padding: 26px 22px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  animation: popup-in 0.28s ease;
}

.notice-popup.is-open { display: block; }

.notice-popup__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #fff3d1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice-popup__icon .material-symbols-outlined {
  color: var(--ink);
  font-variation-settings: "FILL" 1;
}

.notice-popup__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.notice-popup__text {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--muted);
}

/* ——— FAQ ——— */
.faq-title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.faq-container {
  width: 100%;
}

.faq-item {
  margin-bottom: 10px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(22, 51, 46, 0.04);
}

.question {
  padding: 16px 44px 16px 18px;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.35;
  color: var(--ink);
  position: relative;
}

.question::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
}

.answer {
  display: none;
  padding: 0 18px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--muted);
}

.answer.active { display: block; }

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.popup-containerL p {
  font-family: Nunito, sans-serif !important;
}

.popup-containerL > p:first-of-type {
  font-size: 28px !important;
  font-weight: 800;
  color: var(--green) !important;
  margin: 8px 0 6px !important;
  letter-spacing: -0.03em;
}

.popup-textL {
  font-size: 15px !important;
  font-weight: 700;
  color: var(--muted) !important;
  line-height: 1.4;
}

.popup-container2 { display: none; }
