body {
  background: radial-gradient(circle at top, #1d1d1d 0%, #000 60%);
  color: white;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.about-page {
  padding-top: 120px;
  padding-bottom: 40px;
}

.about-hero {
  max-width: 920px;
  width: 90%;
  margin: 0 auto;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-hero-left {
  flex: 1;
  min-width: 320px;
}

.about-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.about-brand-icon {
  width: 58px;
  height: 58px;
}

.about-brand-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ff2d2d;
}

.about-description {
  margin: 0 0 24px;
  color: white;
  font-size: 14px;
  line-height: 1.6;
}

.about-stats {
  display: flex;
  align-items: flex-start;
  gap: 70px;
  margin: 18px 0 26px;
  flex-wrap: wrap;
}

.about-stat-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.status-member {
  background: #ff3b3b;
}

.status-online {
  background: #22c55e;
}

.about-stat-value {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.install-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #3b82f6;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 800;
  height: 40px;
  padding: 0 22px;
  min-width: 180px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.install-btn:hover {
  background: #2563eb;
}

.install-apple {
  width: 50px;
}

.about-hero-right {
  flex: 0 0 420px;
  display: flex;
  justify-content: flex-end;
}

.about-hero-card {
  width: 100%;
  max-width: 360px;
  height: 260px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-image {
  width: 80%;
  height: auto;
}

.about-divider {
  width: min(920px, 90%);
  margin: 10px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.features {
  max-width: 920px;
  width: 90%;
  margin: 0 auto;
  padding: 42px 0;
  text-align: center;
}

.features-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
}

.features-subtitle {
  margin: 0 auto 28px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.6;
}

.features-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap; /* Added wrap for mobile compatibility */
}

.feature {
  width: 240px;
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.6;
}
