:root {
  --bg-page:#e5e7eb;
  --bg-card:#0f4f63;
  --bg-card-light:#ffffff;
  --txt-main:#111827;
  --txt-muted:#6b7280;
  --accent-green:#16a34a;
  --accent-red:#dc2626;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: var(--bg-page);
  color: var(--txt-main);
  line-height: 1.6;
}

.page {
  max-width: 480px;
  margin: 0 auto;
  padding: 16px 12px 32px;
}

/* Basic cards */

.card {
  background: var(--bg-card);
  color: #f9fafb;
  border-radius: 18px;
  padding: 16px 14px;
  margin-bottom: 16px;
  font-size: 13px;
}

.card p + p {
  margin-top: 8px;
}

.card-light {
  background: var(--bg-card-light);
  border-radius: 18px;
  padding: 16px 14px;
  margin-bottom: 16px;
  font-size: 13px;
  box-shadow: 0 8px 18px rgba(15,23,42,0.08);
}

.card-light-lead {
  font-size: 13px;
  margin-bottom: 10px;
}

/* Mentor main photo */

.hero-photo-card {
  background: var(--bg-card-light);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: 0 10px 24px rgba(15,23,42,0.12);
}

.hero-photo {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  display: block;
}

.hero-photo-split {
  display: block;
}

.hero-photo-split img {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
}

.hero-photo-caption {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
}

.hero-photo-caption-ttl {
  font-weight: 700;
  font-size: 15px;
}

.hero-photo-caption-sub {
  margin-top: 4px;
  color: var(--txt-muted);
  font-size: 12px;
}

/* Signup ticker */

.signup-ticker-wrap {
  background: #022c3a;
  color: #e5f9ff;
  border-radius: 999px;
  padding: 6px 0;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(15,23,42,0.3);
  border: 1px solid rgba(148,163,184,.6);
}

.signup-ticker {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}

.signup-ticker-label {
  font-size: 11px;
  padding: 0 10px;
  font-weight: 600;
  opacity: .9;
}

.signup-ticker-item {
  display: inline-flex;
  align-items: center;
  margin-right: 28px;
  font-size: 11px;
}

.signup-ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  margin-right: 6px;
}

/* LINE info */

.line-card {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.line-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: #e5f9ee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.line-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
}

/* Stock gallery */

.stock-gallery-wrap {
  margin-top: 12px;
  overflow: hidden;
  border-radius: 18px;
}

.stock-gallery-track {
  display: inline-flex;
  align-items: center;
  will-change: transform;
}

.stock-gallery-item {
  min-width: 80%;
  max-width: 80%;
  margin-right: 12px;
  border-radius: 18px;
  overflow: hidden;
  background: #f3f4f6;
}

.stock-gallery-item img {
  width: 100%;
  display: block;
}

/* CTA block */

.cta-box {
  background: #ecfccb;
  border-radius: 18px;
  border: 1px solid #bbf7d0;
  padding: 16px 14px;
  margin-bottom: 24px;
  text-align: center;
  font-size: 14px;
}

.cta-btn {
  display: inline-block;
  margin-bottom: 8px;
  padding: 10px 22px;
  background: var(--accent-green);
  color: #f9fafb;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.cta-highlight {
  color: var(--accent-red);
  font-weight: 700;
}

.cta-note {
  font-size: 12px;
  margin-top: 4px;
  color: #374151;
}

/* Apply confirm block */

.apply-confirm {
  margin-top: 10px;
  padding: 10px 10px 12px;
  border-radius: 14px;
  background: #fefce8;
  border: 1px solid #fde68a;
  font-size: 12px;
  color: #713f12;
  display: none;
}

.apply-confirm-title {
  font-weight: 700;
  margin-bottom: 4px;
}

.apply-confirm-text {
  margin-bottom: 8px;
}

.apply-confirm-btn {
  margin-top: 4px;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: #16a34a;
  color: #f9fafb;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

/* Footer */

.footer-note {
  font-size: 11px;
  color: var(--txt-muted);
  line-height: 1.5;
}

/* Floating support button */

.floating-support-btn {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 40;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  background: #16a34a;
  color: #f9fafb;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15,23,42,0.35);
}

/* Support modal */

.support-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
}

.support-modal.show {
  display: flex;
}

.support-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.45);
}

.support-modal-dialog {
  position: relative;
  z-index: 51;
  max-width: 360px;
  width: calc(100% - 32px);
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 16px 16px;
  box-shadow: 0 16px 40px rgba(15,23,42,0.45);
  font-size: 13px;
}

.support-modal-tag {
  display: inline-block;
  padding: 3px 10px;
  margin-bottom: 6px;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 11px;
  font-weight: 600;
}

.support-modal-image-wrap {
  margin: 10px 0 12px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.support-modal-image-wrap img {
  width: 100%;
  display: block;
}


.support-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

.support-modal-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}

.support-modal-text {
  font-size: 13px;
  margin-bottom: 12px;
}

.support-modal-line-btn {
  display: block;        
  margin: 0 auto;        
  padding: 9px 20px;
  border-radius: 999px;
  background: #16a34a;
  color: #f9fafb;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}


/* Responsive padding */

@media (min-width: 520px) {
  .page {
    padding-top: 24px;
  }
}

/* List in dark card */

.card .card-list {
  margin-top: 6px;
  margin-bottom: 6px;
  margin-left: 18px;  
  padding-left: 0;
  list-style-type: disc;
  list-style-position: outside;
}

.card .card-list li {
  margin-bottom: 4px;
  line-height: 1.6;
}
