@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-page: #cdd5df;
  --bg-card: #f8f5ee;
  --bg-inner-card: #ffffff;
  --color-orange: #f35a00;
  --color-orange-bright: #ff6600;
  --color-orange-dark: #d84e00;
  --color-text-main: #0c0c0d;
  --color-text-muted: #555c65;
  --color-divider: #e4e7ed;
  --font-heading: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-inner: 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-btn: 0 8px 25px rgba(243, 90, 0, 0.35);
  --shadow-btn-hover: 0 12px 30px rgba(243, 90, 0, 0.45);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--color-text-main);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 12px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* App Wrapper Container */
.page-wrapper {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

/* Outer Card Framing */
.card-container {
  background-color: var(--bg-card);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
  border-top: 5px solid var(--color-orange);
  padding: 24px 20px 28px;
}

/* Subtle Web / Grid Corner Pattern Overlay */
.card-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(circle at 100% 0%, transparent 20%, rgba(0, 0, 0, 0.05) 21%, transparent 22%),
                    radial-gradient(circle at 100% 0%, transparent 40%, rgba(0, 0, 0, 0.05) 41%, transparent 42%),
                    radial-gradient(circle at 100% 0%, transparent 60%, rgba(0, 0, 0, 0.05) 61%, transparent 62%),
                    radial-gradient(circle at 100% 0%, transparent 80%, rgba(0, 0, 0, 0.05) 81%, transparent 82%);
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Mascot Image Header Box */
.mascot-box {
  width: 220px;
  max-width: 100%;
  height: 215px;
  margin-top: 4px;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mascot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Header Text Styles */
.amount-title {
  font-family: var(--font-heading);
  font-size: 4.6rem;
  line-height: 0.9;
  letter-spacing: -0.5px;
  color: #050505;
  margin-bottom: 8px;
  font-weight: 900;
}

.brand-subtitle {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Inner White Cards */
.content-card {
  background-color: var(--bg-inner-card);
  border-radius: 16px;
  box-shadow: var(--shadow-inner);
  padding: 22px 20px;
  margin-bottom: 20px;
  width: 100%;
}

/* Steps List */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-number {
  background-color: var(--color-orange);
  color: #050505;
  font-size: 15px;
  font-weight: 900;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.step-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.35;
}

/* Main CTA Button */
.cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(180deg, var(--color-orange-bright) 0%, var(--color-orange) 100%);
  color: #050505;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 18px 24px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: var(--shadow-btn);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 12px;
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
  filter: brightness(1.05);
}

.cta-button:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 4px 15px rgba(243, 90, 0, 0.3);
}

.cta-arrow {
  font-size: 18px;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.cta-button:hover .cta-arrow {
  transform: translateX(4px);
}

/* Affiliate Disclosure */
.disclosure-text {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0 auto 24px;
  padding: 0 8px;
  max-width: 380px;
}

/* FAQ Section */
.faq-section {
  padding: 24px 20px;
  margin-bottom: 0;
}

.faq-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-question {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--color-text-main);
  line-height: 1.3;
}

.faq-answer {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--color-text-muted);
  font-weight: 400;
}

.faq-divider {
  height: 1px;
  background-color: var(--color-divider);
  margin: 18px 0;
  border: none;
}

/* Responsive adjustments */
@media (max-width: 380px) {
  .card-container {
    padding: 20px 14px 24px;
  }
  .amount-title {
    font-size: 4rem;
  }
  .cta-button {
    font-size: 16px;
    padding: 16px 20px;
  }
}
