/* Clean Dodo Tradez grow the Duck Race section */

.dtr-grow-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 22, 93, 0.07), transparent 30%),
    radial-gradient(circle at 12% 100%, rgba(35, 182, 255, 0.045), transparent 28%),
    #070810;
}

.dtr-grow-head {
  max-width: 900px;
  margin: 0 auto 38px;
  text-align: center;
}

.dtr-grow-kicker {
  margin: 0 0 18px;
  color: #ff165d;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.dtr-grow-head h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.dtr-grow-head p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.65;
}

.dtr-grow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.dtr-grow-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 30px 28px 26px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 14px 34px rgba(0, 0, 0, 0.22);
}

.dtr-grow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.dtr-grow-card::after {
  content: "";
  position: absolute;
  right: -86px;
  bottom: -88px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  opacity: 0.42;
  filter: blur(4px);
  pointer-events: none;
}

/* Standard, blue */
.dtr-grow-card-standard {
  background:
    radial-gradient(circle at 92% 12%, rgba(59, 130, 246, 0.10), transparent 24%),
    linear-gradient(180deg, rgba(12, 17, 28, 0.96), rgba(8, 11, 20, 0.95));
  border-color: rgba(96, 165, 250, 0.22);
}

.dtr-grow-card-standard::after {
  background: rgba(59, 130, 246, 0.15);
}

/* Epic, purple */
.dtr-grow-card-epic {
  background:
    radial-gradient(circle at 92% 12%, rgba(168, 85, 247, 0.10), transparent 24%),
    linear-gradient(180deg, rgba(19, 12, 30, 0.96), rgba(12, 9, 21, 0.95));
  border-color: rgba(192, 132, 252, 0.22);
}

.dtr-grow-card-epic::after {
  background: rgba(168, 85, 247, 0.15);
}

/* Legendary, gold */
.dtr-grow-card-legendary {
  background:
    radial-gradient(circle at 92% 12%, rgba(245, 158, 11, 0.11), transparent 24%),
    linear-gradient(180deg, rgba(28, 18, 10, 0.96), rgba(18, 12, 8, 0.95));
  border-color: rgba(245, 158, 11, 0.24);
}

.dtr-grow-card-legendary::after {
  background: rgba(245, 158, 11, 0.15);
}

.dtr-grow-number {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 950;
}

.dtr-grow-card-standard .dtr-grow-number {
  background: #3b82f6;
  color: #ffffff;
}

.dtr-grow-card-epic .dtr-grow-number {
  background: #a855f7;
  color: #ffffff;
}

.dtr-grow-card-legendary .dtr-grow-number {
  background: linear-gradient(135deg, #f59e0b, #facc15);
  color: #140d00;
}

.dtr-grow-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.dtr-grow-card p {
  position: relative;
  z-index: 1;
  max-width: 34ch;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.55;
}

.dtr-grow-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 10px 18px;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
}

.dtr-grow-card-standard a {
  background: rgba(59, 130, 246, 0.13);
  border: 1px solid rgba(96, 165, 250, 0.30);
}

.dtr-grow-card-epic a {
  background: rgba(168, 85, 247, 0.13);
  border: 1px solid rgba(192, 132, 252, 0.30);
}

.dtr-grow-card-legendary a {
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(250, 204, 21, 0.32);
}

.dtr-grow-card-standard a:hover {
  background: rgba(59, 130, 246, 0.20);
}

.dtr-grow-card-epic a:hover {
  background: rgba(168, 85, 247, 0.20);
}

.dtr-grow-card-legendary a:hover {
  background: rgba(245, 158, 11, 0.22);
}

@media (max-width: 900px) {
  .dtr-grow-grid {
    grid-template-columns: 1fr;
  }

  .dtr-grow-card {
    min-height: auto;
    padding: 26px 24px 24px;
  }

  .dtr-grow-head h2 {
    font-size: clamp(38px, 9vw, 56px);
  }

  .dtr-grow-head p {
    font-size: 15px;
  }
}
