:root {
  --background: #f5f5f5;
  --foreground: #1a1a1a;
  --card: #ffffff;
  --muted: #f0f0f0;
  --muted-foreground: #666666;
  --border: #e0e0e0;
  --brand-red: #d0232a;
  --brand-blue: #1e5a96;
  --notification-bg: #0d5f8f;
}

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

html, body {
  width: 100%;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===== NOTIFICATION BAR ===== */
.notification-bar {
  width: 100%;
  background-color: var(--notification-bg);
  color: #ffffff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
}

.notification-bar .icon-clock {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.notification-bar .notif-content {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  line-height: 1;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .notification-bar .notif-content {
    font-size: 0.875rem;
  }
}

.notification-bar .name {
  font-weight: 700;
  transition: opacity 0.4s ease;
}

.notification-bar .notif-text {
  font-weight: 400;
}

.notification-bar .notif-amount {
  font-weight: 700;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
  min-height: 600px;
}

/* ===== REWARD CARD ===== */
.reward-card {
  width: 100%;
  max-width: 400px;
  background-color: var(--card);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.card-header {
  padding-top: 12px;
  padding-bottom: 8px;
  display: flex;
  justify-content: center;
}

.logo {
  max-width: 220px;
  height: auto;
  object-fit: contain;
}

.card-headline {
  text-align: center;
  padding: 12px 0;
}

.headline-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 4px;
}

.headline-amount {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--brand-red);
  line-height: 1;
  margin-bottom: 4px;
}

.headline-subtitle {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 4px 0;
}

.divider {
  border-top: 1px solid var(--border);
  margin: 8px 0;
}

/* ===== STEPS ===== */
.steps-container {
  padding: 12px 0;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.step-number {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background-color: var(--brand-red);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.step-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--foreground);
  white-space: nowrap;
}

/* ===== CTA BUTTON ===== */
.cta-area {
  padding: 12px 0;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background-color: var(--brand-red);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 16px 24px;
  border-radius: 9999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(208, 35, 42, 0.35);
  transition: background-color 0.15s ease, transform 0.1s ease;
  font-family: inherit;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.cta-btn:hover {
  background-color: #b91c23;
}

.cta-btn:active {
  transform: scale(0.98);
}

.arrow-icon {
  width: 20px;
  height: 20px;
}

/* ===== URGENCY TEXT ===== */
.urgency-text {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ===== TRUSTPILOT BADGE ===== */
.trustpilot-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 12px;
  text-align: center;
}

.trustpilot-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trustpilot-star {
  width: 20px;
  height: 20px;
  color: var(--brand-red);
}

.trustpilot-text {
  font-weight: 700;
  font-size: 1rem;
  color: var(--foreground);
}

.trustpilot-stars {
  display: flex;
  gap: 4px;
}

.star-box {
  width: 28px;
  height: 28px;
  background-color: var(--brand-red);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.star-box.full {
  background-color: var(--brand-red);
}

.star-box.half {
  background-color: var(--brand-red);
}

.star-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.trustpilot-score {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.trustpilot-score span {
  font-weight: 700;
  color: var(--foreground);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  width: 100%;
  background-color: var(--background);
  padding: 48px 16px;
}

.faq-container {
  max-width: 768px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 8px;
}

.faq-header p {
  font-size: 1rem;
  color: var(--muted-foreground);
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: inherit;
}

.faq-button:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.faq-button h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  text-align: left;
  margin: 0;
  line-height: 1.4;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--muted-foreground);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-button[aria-expanded="true"] .faq-icon {
  transform: rotate(0deg);
}

.faq-button[aria-expanded="false"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background-color: var(--background);
}

.faq-answer.active {
  display: block;
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* ===== FOOTER ===== */
.footer {
  width: 100%;
  background-color: var(--muted);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
  }
}

.footer-left p {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

@media (min-width: 768px) {
  .footer-left p {
    text-align: left;
  }
}

.footer-left a {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-left a:hover {
  color: var(--brand-red);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-right {
    justify-content: flex-end;
  }
}

.footer-right a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-right a:hover {
  color: var(--foreground);
}

@media (max-width: 480px) {
  .reward-card {
    padding: 16px;
  }

  .headline-amount {
    font-size: 2.25rem;
  }

  .cta-btn {
    font-size: 1rem;
    padding: 14px 20px;
  }
}
