.hero-section {
  margin-top: 20px;
}

.hero-card {
  padding: 36px;
  border-radius: 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-left {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  text-align: left;
}

.hero-logo {
  width: 120px;
  height: 120px;
  flex: 0 0 auto;
}

.hero-copy {
  flex: 1;
  min-width: 280px;
}

.hero-badge,
.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d8d8d8;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  text-align: left;
}

.hero-subtitle {
  margin: 0;
  max-width: 720px;
  color: #d7d7d7;
  font-size: 1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, rgba(0, 234, 255, 0.18), rgba(255, 46, 191, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
}

.hero-link-btn:hover {
  border-color: #00eaff;
  box-shadow: 0px 0px 15px rgba(0, 234, 255, 0.5);
}

.hero-metamask-btn {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
}

.dashboard-grid {
  align-items: stretch;
}

.announcement-card,
.tokenomics-card,
.chart-card {
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.section-title {
  margin: 0 0 14px;
  font-size: 2rem;
  text-align: left;
  background: linear-gradient(90deg, #00eaff, #ff2ebf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px 15px rgba(0, 234, 255, 0.4);
}

.section-text {
  margin: 0;
  color: #d6d6d6;
  line-height: 1.7;
  text-align: left;
}

.announcement-actions {
  margin-top: 22px;
  text-align: left;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.metric-box {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.metric-label {
  display: block;
  margin-bottom: 6px;
  color: #bbbbbb;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-value {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
}

.success-text {
  color: #52d47b;
}

.tokenomics-breakdown {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.tokenomics-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.contract-card {
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.contract-code {
  display: block;
  margin-top: 8px;
  color: #dce9ff;
  font-size: 0.95rem;
  word-break: break-all;
}

.chart-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.dex-card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .hero-card,
  .announcement-card,
  .tokenomics-card,
  .chart-card {
    padding: 22px;
  }

  .hero-left {
    align-items: flex-start;
  }

  .hero-logo {
    width: 90px;
    height: 90px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.6rem;
  }
}