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

:root {
  --primary: #cc0000;
  --primary-foreground: #ffffff;
  --background: #fafafa;
  --foreground: #171717;
  --card: #ffffff;
  --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 {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.header {
  background-color: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.header-content {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 32px;
  height: 32px;
}

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

/* Hero Section */
.hero {
  padding: 40px 0;
  text-align: center;
}

.hero-container {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(204, 0, 0, 0.1);
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.badge-icon {
  width: 14px;
  height: 14px;
  fill: var(--primary);
}

.badge-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
}

.hero-title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.hero-title .highlight {
  color: var(--primary);
}

.hero-description {
  font-size: 16px;
  color: var(--muted-foreground);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.claim-btn {
  display: inline-block;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(204, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.claim-btn:hover {
  box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4);
  transform: translateY(-1px);
}

.secure-text {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted-foreground);
}

/* Tasks Section */
.tasks {
  padding: 40px 0;
  background-color: var(--card);
  border-top: 1px solid var(--border);
}

.tasks-container {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 16px;
}

.tasks-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

.task-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.task-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 8px;
}

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

.task-content {
  text-align: left;
}

.task-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

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

/* Footer */
.footer {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

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

/* Responsive */
@media (min-width: 768px) {
  .hero {
    padding: 56px 0;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .hero-description {
    font-size: 18px;
  }
  
  .tasks-title {
    font-size: 24px;
  }
}
