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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background-color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 384px;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

/* Timer Bar */
.timer-bar {
  background-color: #f3f4f6;
  padding: 6px 0;
}

.timer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
}

.timer-label {
  color: #6b7280;
}

.timer-value {
  font-weight: 600;
  color: #dc2626;
}

/* Content */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  overflow: hidden;
}

/* Header */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.logo {
  height: 48px;
  width: auto;
}

.title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.subtitle {
  font-size: 12px;
  color: #6b7280;
}

/* Claim Section */
.claim-section {
  margin-top: 12px;
}

.section-title {
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.steps-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background-color: #ffffff;
  padding: 10px;
}

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

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #111827;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #0071CE;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  flex-shrink: 0;
}

.step-text {
  line-height: 16px;
}

/* Button */
.button-container {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.start-button {
  display: inline-block;
  background-color: #0071CE;
  color: #ffffff;
  padding: 8px 48px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s;
}

.start-button:hover {
  background-color: #005a9e;
}

/* FAQ Section */
.faq-section {
  margin-top: 12px;
  flex: 1;
  overflow: hidden;
}

.faq-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background-color: #ffffff;
  padding: 0 10px;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  color: #111827;
  text-align: left;
}

.faq-icon {
  font-size: 14px;
  color: #6b7280;
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding-bottom: 8px;
}

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

.faq-answer p {
  font-size: 10px;
  line-height: 1.6;
  color: #6b7280;
}

/* Footer */
.footer {
  border-top: 1px solid #e5e7eb;
  background-color: #f3f4f6;
  padding: 8px 16px;
}

.footer-offer {
  text-align: center;
  font-size: 9px;
  line-height: 1.4;
  color: #6b7280;
}

.footer-copyright {
  text-align: center;
  font-size: 9px;
  color: #6b7280;
  margin-top: 4px;
}

.footer-disclaimer {
  text-align: center;
  font-size: 8px;
  line-height: 1.4;
  color: #9ca3af;
  margin-top: 4px;
}
