:root {
  --bg-start: #0a1219;
  --bg-end: #05070a;
  --emerald-accent: #10b981;
  --cyan-accent: #06b6d4;
  --purple-accent: #6b21a8;
  --text-muted: #94a3b8;
  --silver-metallic: linear-gradient(180deg, #e2e8f0 0%, #94a3b8 100%);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at center, var(--bg-start) 0%, var(--bg-end) 100%);
  color: #ffffff;
  overflow-x: hidden;
}

.community-page {
  min-height: 100vh;
  position: relative;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.gradient-text {
  background: linear-gradient(to right, var(--emerald-accent), var(--cyan-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.glass-button:hover {
  border-color: rgba(16, 185, 129, 0.8);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--cyan-accent);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after {
  width: 100%;
}

.metallic-text {
  background: var(--silver-metallic);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.8;
}

.aurora-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.aurora-emerald {
  width: 600px;
  height: 600px;
  background: #0a2e36;
  top: -180px;
  left: -180px;
  opacity: 0.12;
}

.aurora-purple {
  width: 500px;
  height: 500px;
  background: #2e1065;
  bottom: -120px;
  right: -120px;
  opacity: 0.12;
}

.community-header {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--emerald-accent), var(--cyan-accent));
  color: #05070a;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.brand-icon .material-symbols-outlined {
  font-size: 16px;
  font-weight: 700;
}

.brand-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.community-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.community-hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 160px);
  padding: 24px;
}

.hero-content {
  max-width: 620px;
  text-align: center;
}

.hero-title {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  margin: 0 auto 36px;
  max-width: 520px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  justify-content: center;
}

.community-footer {
  position: relative;
  z-index: 1;
  padding: 48px 20px;
  text-align: center;
}

.community-footer p {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 900px) {
  .community-header {
    padding: 0 20px;
  }
}

@media (max-width: 720px) {
  .community-header {
    flex-direction: column;
    gap: 12px;
    height: auto;
    padding: 18px 20px 0;
  }

  .community-nav {
    gap: 16px;
  }

  .glass-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .hero-subtitle {
    font-size: 16px;
  }

  .community-header {
    padding: 18px 16px 0;
  }
}
