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

:root {
  --primary: #FF3008;
  --primary-hover: #E62B07;
  --primary-foreground: #FFFFFF;
  --background: #FFFFFF;
  --foreground: #1A1A1A;
  --card: #F5F5F5;
  --border: #E5E5E5;
  --muted-foreground: #737373;
}

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

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 448px;
  margin: 0 auto;
  padding: 12px 16px;
}

/* Timer */
.timer {
  text-align: center;
  margin-bottom: 8px;
}

.timer-text {
  font-size: 12px;
  color: var(--muted-foreground);
}

.timer-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}

/* Logo */
.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.logo {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}

/* Title */
.title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--foreground);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 12px;
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: 12px;
}

/* How to Join Section */
.section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 8px;
}

.steps-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
}

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

.step {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.step-number {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
}

.step-text {
  font-size: 12px;
  color: var(--foreground);
  line-height: 1.4;
}

/* Join Now Button */
.join-button {
  display: block;
  width: 100%;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  margin-bottom: 12px;
  transition: background-color 0.2s;
}

.join-button:hover {
  background-color: var(--primary-hover);
}

/* FAQ Section */
.faq-container {
  margin-bottom: 12px;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background-color: var(--card);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.faq-button:hover {
  background-color: #EBEBEB;
}

.faq-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--foreground);
  text-align: left;
  padding-right: 8px;
}

.faq-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-content {
  display: none;
  padding: 0 10px 10px;
  background-color: var(--card);
}

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

.faq-description {
  font-size: 12px;
  color: var(--muted-foreground);
}

/* Footer */
.footer {
  margin-top: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-offer {
  font-size: 10px;
  color: var(--primary);
  font-weight: 500;
}

.footer-copyright {
  font-size: 10px;
  color: var(--muted-foreground);
}

.footer-disclaimer {
  font-size: 10px;
  color: var(--muted-foreground);
  line-height: 1.4;
}
