:root {
  --bg: #050507;
  --bg-2: #090912;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-2: rgba(255, 255, 255, 0.08);
  --border: rgba(168, 85, 247, 0.25);
  --text: #f5f3ff;
  --muted: #b4acc7;
  --primary: #a855f7;
  --primary-2: #7e22ce;
  --primary-3: #d8b4fe;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --neon: 0 0 14px rgba(168, 85, 247, 0.45), 0 0 34px rgba(168, 85, 247, 0.22);
  --radius: 20px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(126, 34, 206, 0.08), transparent 28%),
    linear-gradient(180deg, #040406, #08080d 40%, #050507 100%);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(to top, rgba(168, 85, 247, 0.1), transparent);
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  z-index: 1;
  background-image:
    radial-gradient(circle at 20% 20%, white 0.5px, transparent 0.5px),
    radial-gradient(circle at 80% 30%, white 0.5px, transparent 0.5px),
    radial-gradient(circle at 30% 80%, white 0.5px, transparent 0.5px),
    radial-gradient(circle at 70% 70%, white 0.5px, transparent 0.5px);
  background-size: 180px 180px;
}

.bg-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.bg-orb-1 {
  top: -100px;
  left: -120px;
  background: #8b2cf5;
}

.bg-orb-2 {
  right: -120px;
  bottom: -120px;
  background: #c026d3;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(4, 4, 8, 0.72);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.logo-box {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: var(--neon);
}

.logo-name {
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
  text-shadow: 0 0 8px rgba(168, 85, 247, 0.4);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-btn {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-btn span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, #8b2cf5, #c084fc);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--neon);
}

.btn-primary:hover {
  box-shadow:
    0 0 16px rgba(168, 85, 247, 0.7),
    0 0 38px rgba(168, 85, 247, 0.35);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-discord {
  color: white;
  background: linear-gradient(135deg, #5865f2, #7983ff);
}

.full-width {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: url("assets/nomercy-bg.png") center center / cover no-repeat;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.86)),
    radial-gradient(circle at center, rgba(168, 85, 247, 0.24), transparent 50%);
}

.hero-scan {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-scan::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(200, 150, 255, 0.04) 35%,
    rgba(168, 85, 247, 0.18) 50%,
    rgba(200, 150, 255, 0.04) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: scanMove 7s linear infinite;
}

@keyframes scanMove {
  0% {
    left: -60%;
  }
  100% {
    left: 130%;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 40px;
  align-items: center;
}

.kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: #d8b4fe;
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #f4e8ff 35%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
}

.hero-text {
  max-width: 680px;
  color: #ddd4ea;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(10, 8, 18, 0.58);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(168, 85, 247, 0.16);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.stat-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.connect-card,
.glass-card,
.feature-card,
.rule-card,
.staff-card,
.faq-item,
.join-box {
  background: rgba(16, 10, 26, 0.5);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(168, 85, 247, 0.16);
  box-shadow: var(--shadow);
}

.connect-card {
  border-radius: 24px;
  padding: 28px;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(168, 85, 247, 0.08);
}

.live-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #d7c8f2;
  font-weight: 700;
}

.live-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.12);
}

.connect-card h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.connect-card p {
  color: var(--muted);
  margin-bottom: 20px;
}

.connect-info {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.connect-row {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.connect-row span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 3px;
}

.copy-feedback {
  margin-top: 12px;
  margin-bottom: 0 !important;
  font-size: 0.93rem;
}

.section {
  padding: 90px 0;
  position: relative;
  z-index: 2;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01));
}

.section-head {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 12px;
}

.section-head p:last-child {
  color: var(--muted);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.glass-card,
.feature-card,
.rule-card,
.staff-card {
  border-radius: var(--radius);
  padding: 24px;
  transition: 0.28s ease;
}

.glass-card:hover,
.feature-card:hover,
.rule-card:hover,
.staff-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.45),
    0 0 26px rgba(168, 85, 247, 0.12);
}

.glass-card h3,
.feature-card h3,
.rule-card h3,
.staff-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.glass-card p,
.feature-card p,
.rule-card p,
.staff-card p {
  color: var(--muted);
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 16px;
  font-size: 1.45rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.24), rgba(126, 34, 206, 0.22));
  border: 1px solid rgba(168, 85, 247, 0.18);
  box-shadow: var(--neon);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.rule-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: #d8b4fe;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.join-box {
  border-radius: 26px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.join-box h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.join-box p:last-child {
  color: var(--muted);
  max-width: 720px;
}

.join-right {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.staff-card {
  text-align: center;
}

.staff-avatar {
  width: 78px;
  height: 78px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.45rem;
  font-weight: 900;
  color: white;
  background: linear-gradient(135deg, #8b2cf5, #c084fc);
  box-shadow: var(--neon);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 18px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  position: relative;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #d8b4fe;
  font-size: 1.4rem;
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 24px 22px;
  color: var(--muted);
}

.footer {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 2;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
}

.footer-top h3 {
  margin-bottom: 8px;
}

.footer-top p {
  color: var(--muted);
  max-width: 440px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  padding: 18px 0 30px;
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .cards-3,
  .rules-grid,
  .staff-grid {
    grid-template-columns: 1fr 1fr;
  }

  .join-box,
  .footer-top {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rules-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .nav-links {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    padding: 16px;
    border-radius: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: rgba(8, 8, 14, 0.97);
    border: 1px solid rgba(168, 85, 247, 0.16);
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-btn {
    display: inline-flex;
  }

  .btn-discord {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 70px;
  }

  .hero-grid,
  .cards-3,
  .rules-grid,
  .staff-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .join-box,
  .connect-card {
    padding: 22px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }
}