body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: linear-gradient(to bottom, #fff0f5, #ffe4e1);
  min-height: 100vh;
}

.domain-page {
  padding: 140px 20px 100px;
  max-width: 1100px;
  margin: 0 auto;
}

h1 {
  text-align: center;
  color: #444;
  margin-bottom: 60px;
  font-size: 2.5rem;
}

h2 {
  text-align: center;
  color: #333;
  font-size: 2rem;
  margin: 80px 0 40px;
}

.lead {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 60px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}


.domain-card,
.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;       
  transition: all 0.25s;
}

.domain-card:hover,
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.14);
}

.recommended {
  border: 2px solid #e91e63;
}


.ribbon {
  position: absolute;
  top: 12px;
  right: -38px;
  background: #e91e63;
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 6px 60px;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 10;
  white-space: nowrap;
}


.domain-type-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.domain-card {
  max-width: 400px;
}

.domain-card h3 {
  font-size: 1.9rem;
  margin: 0 0 12px;
  text-align: center;
}

.domain-card .price {
  font-size: 2.1rem;
  font-weight: bold;
  color: #e91e63;
  text-align: center;
  margin: 12px 0 20px;
}

.domain-card .desc {
  text-align: center;
  color: #555;
  margin-bottom: 24px;
}


.pricing-section {
  margin-top: 100px;
  padding-top: 60px;
  border-top: 1px solid #eee;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.pricing-card {
  max-width: 360px;
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin: 0 0 12px;
  text-align: center;
}

.pricing-card .price {
  font-size: 1.95rem;
  font-weight: bold;
  color: #e91e63;
  text-align: center;
  margin: 12px 0 20px;
}

.pricing-card .desc {
  text-align: center;
  color: #666;
  margin-bottom: 24px;
}


.features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features li {
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
  color: #333;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}


.scroll-area {
  text-align: center;
  margin: 60px 0 40px;
}

.btn-scroll {
  background: #e91e63;
  color: white;
  border: none;
  padding: 16px 48px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-scroll:hover {
  background: #c2185b;
  transform: translateY(-3px);
}


@media (max-width: 900px) {
  .domain-type-cards,
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
}