.home {
  gap: 16px;
  margin-top: 44px;
  margin-bottom: 20px;
}

.hero {
  min-height: 286px;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  overflow: hidden;
  background: var(--panel);
  border-color: var(--border-hover);
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.hero-copy {
  position: relative;
  min-height: 286px;
  padding: clamp(24px, 3.5vw, 42px);
  border: 0;
}

.hero-domain {
  margin: 0;
  color: var(--soft);
  font-size: clamp(0.84rem, 1.25vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 640px;
  margin: 12px 0 10px;
  font-size: clamp(2.6rem, 4.8vw, 4.5rem);
  letter-spacing: 0;
  line-height: 0.95;
}

.hero h1 span {
  display: block;
}

.hero h2 {
  display: none;
}

.hero-copy > p:not(.hero-domain) {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-bounty {
  gap: 9px;
  margin: 0;
  padding: clamp(16px, 2.4vw, 26px);
  background: var(--header);
  border: 0;
  border-left: 1px solid var(--border);
  border-radius: 0;
}

.bounty-heading h2 {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bounty-timer {
  color: var(--text);
  background: var(--panel);
  border-color: var(--border-hover);
}

.bounty-item {
  min-height: 112px;
  background: var(--panel);
  border-color: var(--border);
  border-radius: 10px;
}

.bounty-item:hover {
  border-color: rgba(79, 150, 255, 0.48);
}

.bounty-footer {
  padding-top: 10px;
  border-top-color: var(--border);
}

.upcoming-bounty {
  background: var(--panel);
  border-color: var(--border);
  border-radius: 10px;
}

.stats-panel {
  gap: 1px;
  padding: 0;
  overflow: hidden;
  background: var(--border);
  border-color: var(--border);
  border-radius: 12px;
  box-shadow: none;
}

.stat-box {
  min-height: 72px;
  gap: 12px;
  padding: 16px;
  background: var(--panel);
  border: 0;
  border-radius: 0;
}

.stat-box:hover {
  background: var(--panel-hover);
  border-color: transparent;
}

.stat-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  background: var(--header);
  border: 1px solid var(--border);
  border-radius: 13px;
}

.stat-icon-online,
.stat-icon-egg,
.stat-icon-economy {
  color: var(--accent);
  background: var(--header);
}

.stat-box small {
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: none;
}

.stat-box strong {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  letter-spacing: -0.035em;
}

.values-panel {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.panel-heading {
  min-height: auto;
  margin-bottom: 15px;
}

.panel-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.value-rail {
  grid-auto-columns: 172px;
  gap: 7px;
  height: 262px;
  margin-top: 0;
}

.value-card {
  width: 172px;
  max-width: 172px;
  height: 248px;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  background: var(--panel);
  border-radius: 14px;
}

.value-card-image {
  width: 100%;
  height: 140px;
  flex-basis: 140px;
  background: var(--header);
  border-color: var(--border);
  border-radius: 10px;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-bounty {
    border-top: 1px solid var(--border);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .home {
    gap: 16px;
    margin-top: 28px;
  }

  .hero,
  .stats-panel {
    border-radius: 20px;
  }

  .hero-copy,
  .hero-bounty {
    min-height: 0;
    padding: 20px 16px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1;
  }

  .stats-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-box {
    min-height: 74px;
    padding: 14px;
  }

  .value-rail {
    grid-auto-columns: 166px;
  }

  .value-card {
    width: 166px;
    max-width: 166px;
  }
}

.value-card-image > .image-fallback {
  inset: 0;
  width: 22px;
  height: 22px;
  margin: auto;
}

@media (max-width: 560px) {
}
