* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #080810;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.home {
  width: 100%;
}

.hero {
  min-height: calc(100vh - 75px);
  padding: 70px 7%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(255, 59, 59, 0.2), transparent 35%),
    radial-gradient(circle at bottom right, rgba(88, 101, 242, 0.15), transparent 30%),
    #080810;
}

.tagline {
  color: #ff3b3b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  margin-bottom: 24px;
}

.crash-red {
  color: #ff3b3b;
}

.hero-description {
  max-width: 650px;
  color: #c9c9d4;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.2s ease;
}

.primary-btn {
  background: #5865f2;
  color: #ffffff;
}

.primary-btn:hover {
  background: #6d78f5;
  transform: translateY(-2px);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.hero-card h2 {
  color: #cfcfd8;
  font-size: 1rem;
  margin-bottom: 10px;
}

.cash {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 30px;
}

.coin-preview {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}

.coin-preview:last-child {
  margin-bottom: 0;
}

.coin-name {
  font-weight: 800;
}

.coin-preview p {
  color: #aaaabb;
  font-size: 0.9rem;
  margin-top: 5px;
}

.coin-status {
  background: rgba(0, 255, 140, 0.12);
  color: #4dff9d;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.coin-status.danger {
  background: rgba(255, 59, 59, 0.16);
  color: #ff6b6b;
}

.how-it-works,
.market-preview {
  padding: 80px 7%;
}

.how-it-works h2,
.market-preview h2 {
  font-size: 2.3rem;
  margin-bottom: 35px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: #11111d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 25px;
}

.step-card span {
  color: #ff3b3b;
  font-size: 1.8rem;
  font-weight: 900;
}

.step-card h3 {
  margin: 18px 0 10px;
}

.step-card p {
  color: #b8b8c8;
  line-height: 1.6;
}

.market-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 35px;
}

.market-preview-header h2 {
  margin-bottom: 0;
}

.market-preview-header a {
  color: #ffffff;
  background: #5865f2;
  text-decoration: none;
  padding: 11px 16px;
  border-radius: 12px;
  font-weight: 800;
  transition: 0.2s ease;
}

.market-preview-header a:hover {
  background: #6d78f5;
}

.market-table {
  background: #11111d;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.market-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 12px;
}

.market-row:last-child {
  border-bottom: none;
}

.market-header,
.market-heading {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-weight: 800;
}

.risk-low {
  color: #4dff9d;
  font-weight: 800;
}

.risk-medium {
  color: #ffd166;
  font-weight: 800;
}

.risk-high {
  color: #ff6b6b;
  font-weight: 800;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .hero {
    padding: 45px 5%;
  }

  .how-it-works,
  .market-preview {
    padding: 60px 5%;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .market-preview-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .market-preview-header a {
    width: 100%;
    text-align: center;
  }

  .market-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cash {
    font-size: 2.4rem;
  }

  .coin-preview {
    flex-direction: column;
    align-items: flex-start;
  }
}