body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(1100px 500px at 5% -10%, rgba(255, 179, 65, 0.22), transparent 60%),
    radial-gradient(900px 400px at 100% 0%, rgba(30, 215, 96, 0.16), transparent 58%),
    linear-gradient(180deg, #060706 0%, #0b100c 100%);
  color: var(--text-primary);
  padding: 1rem;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 82%);
}

.page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1460px;
  margin: 0 auto;
}

.club-layout {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-panel {
  border-radius: 20px;
  padding: clamp(1rem, 1rem + 1vw, 1.8rem);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 26px 50px -42px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.hero-panel h1 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  letter-spacing: 0.01em;
}

.hero-panel p {
  margin: 0.45rem 0 0;
  color: var(--text-secondary);
  line-height: 1.45;
}

.hero-stats {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-stat {
  min-width: 128px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 14, 10, 0.65);
  border-radius: 14px;
  padding: 0.55rem 0.8rem;
}

.hero-stat .value {
  display: block;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.hero-stat .value.value-with-icon {
  display: flex;
  align-items: center;
  gap: 0.46rem;
  max-width: 260px;
}

.hero-mini-icon {
  width: 23px;
  height: 23px;
  border-radius: 999px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2px;
  flex: 0 0 auto;
  display: none;
}

.hero-value-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-stat .label {
  display: block;
  margin-top: 0.2rem;
  color: var(--text-secondary);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-card {
  background: linear-gradient(150deg, rgba(16, 17, 16, 0.92), rgba(10, 11, 10, 0.86));
  padding: clamp(0.9rem, 0.85rem + 0.6vw, 1.4rem);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.78);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.section-title {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.08rem, 0.95rem + 0.55vw, 1.35rem);
  letter-spacing: 0.01em;
}

.section-subtitle {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.miclub-mount {
  animation: fadeIn 360ms ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 640px) {
  body { padding: 1.5rem; }
}

@media (min-width: 1024px) {
  body { padding: clamp(1rem, 2vw, 1.75rem); }
}

@media (max-width: 780px) {
  .section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 0.65rem;
  }

  .hero-panel p {
    font-size: 0.92rem;
  }
}
