
:root {
  --bg-body: #050509;
  --bg-surface: rgba(15, 15, 23, 0.96);
  --bg-surface-soft: rgba(15, 15, 23, 0.9);
  --accent: #ef4444;
  --accent-soft: rgba(239, 68, 68, 0.45);
  --accent-2: #f97373;
  --accent-3: #b91c1c;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --border-soft: rgba(75, 85, 99, 0.7);
  --danger: #f97373;
  --success: #22c55e;
  --radius-lg: 20px;
  --shadow-strong: 0 26px 70px rgba(0, 0, 0, 0.95);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at top, rgba(248, 113, 113, 0.22), transparent 55%),
    radial-gradient(circle at 80% 120%, rgba(127, 29, 29, 0.35), transparent 60%),
    #020106;
  color: var(--text-main);
  line-height: 1.5;
}

/* Layout */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header / nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(3, 7, 18, 0.98),
    rgba(3, 7, 18, 0.9),
    transparent
  );
  border-bottom: 1px solid rgba(55, 65, 81, 0.65);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  width: 180px;
  height: 180px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow:
    0 0 32px rgba(248, 113, 113, 0.9),
    0 0 60px rgba(0, 0, 0, 1);
}

.logo-text-block {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.nav a {
  position: relative;
  color: var(--text-muted);
  text-decoration: none;
  padding-bottom: 0.2rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent-2));
  transition: width 0.18s ease;
}

.nav a:hover {
  color: #e5e7eb;
}

.nav a.nav-active {
  color: #e5e7eb;
}

.nav a.nav-active::after,
.nav a:hover::after {
  width: 100%;
}

/* Hero (home) */

.hero {
  padding: 4.25rem 0 2.75rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: 2.25rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  margin-bottom: 0.6rem;
}

.hero-title {
  font-size: clamp(2.4rem, 3.2vw, 3.3rem);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.hero-sub {
  font-size: 0.97rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 1.35rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
}

.pill {
  font-size: 0.74rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(10, 10, 15, 0.96);
  border: 1px solid rgba(75, 85, 99, 0.9);
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.btn {
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease,
    opacity 0.12s ease;
}

.btn-primary {
  background: radial-gradient(circle at 0 0, #fee2e2, #fecaca);
  color: #450a0a;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 1),
    0 0 24px rgba(248, 113, 113, 0.9);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 1),
    0 0 32px rgba(239, 68, 68, 1);
}

.btn-ghost {
  background: rgba(10, 10, 15, 0.96);
  border-color: rgba(75, 85, 99, 0.9);
  color: #e5e7eb;
}

.btn-ghost:hover {
  background: rgba(15, 15, 23, 0.98);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Hero status pill */

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  border: 1px solid transparent;
}

/* LIVE pill */
.hero-status.live {
  background: linear-gradient(
    90deg,
    rgba(34, 197, 94, 0.18),
    rgba(52, 211, 153, 0.18)
  );
  border-color: rgba(34, 197, 94, 0.8);
}

/* OFFLINE pill */
.hero-status.offline {
  background: linear-gradient(
    90deg,
    rgba(248, 113, 113, 0.22),
    rgba(127, 29, 29, 0.4)
  );
  border-color: rgba(248, 113, 113, 0.9);
}

/* Status dot base + states */
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.status-dot.live {
  background: var(--success);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
}

.status-dot.offline {
  background: var(--danger);
  box-shadow: 0 0 10px rgba(248, 113, 113, 0.9);
}

/* Status label color per state */
.status-label {
  font-size: 0.82rem;
}

.status-label.live strong {
  color: var(--success);
}

.status-label.offline strong {
  color: var(--danger);
}

/* Right hero card */

.hero-card {
  border-radius: 24px;
  padding: 1.35rem 1.25rem 1.1rem;
  background:
    radial-gradient(circle at 0 0, rgba(248, 113, 113, 0.25), transparent 55%),
    linear-gradient(145deg, rgba(3, 7, 18, 0.98), rgba(3, 7, 18, 0.94));
  border: 1px solid rgba(75, 85, 99, 0.8);
  box-shadow:
    var(--shadow-strong),
    0 0 26px rgba(127, 29, 29, 0.9);
  text-align: center;
}

.hero-card-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.hero-card-title {
  font-size: 1rem;
}

.hero-chip {
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(10, 10, 15, 0.97);
  border: 1px solid rgba(248, 113, 113, 0.9);
  color: var(--accent-2);
}

.hero-checklist {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-check-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-check-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #fee2e2, #ef4444);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #450a0a;
}

/* Generic sections */

.section {
  padding: 3rem 0 3.5rem;
}

.section-header {
  margin-bottom: 1.4rem;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
}

.section-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.5rem;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Card layout */

.surface {
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, var(--bg-surface), var(--bg-surface-soft));
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-strong);
}

/* Price page */

.price-surface {
  padding: 1.5rem 1.4rem 1.3rem;
}

.price-img {
  width: 100%;
  max-width: 780px;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(248, 113, 113, 0.9);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 1),
    0 0 32px rgba(248, 113, 113, 0.9);
}

/* Discord page */

.discord-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
  gap: 1.8rem;
}

.discord-card {
  padding: 1.6rem 1.4rem 1.35rem;
}

.discord-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.discord-points {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.discord-points li::before {
  content: "• ";
  color: var(--accent-2);
}

/* Fake Discord window */

.discord-window {
  border-radius: 18px;
  overflow: hidden;
  background: #020106;
  border: 1px solid rgba(127, 29, 29, 0.95);
}

.discord-window-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.7rem;
  background: #020106;
  border-bottom: 1px solid #111827;
  font-size: 0.78rem;
  color: #9ca3af;
}

.dw-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.dw-dot.red {
  background: #ef4444;
}
.dw-dot.yellow {
  background: #facc15;
}
.dw-dot.green {
  background: #22c55e;
}

.discord-window-title {
  margin-left: 0.35rem;
}

.discord-window-body {
  padding: 0.65rem 0.8rem 0.85rem;
  font-size: 0.82rem;
  display: grid;
  gap: 0.3rem;
}

.dw-tag {
  color: #facc15;
  font-weight: 600;
  margin-right: 0.3rem;
}

.dw-user {
  color: #fb7185;
  font-weight: 500;
  margin-right: 0.3rem;
}

/* Payments */

.payments-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: 1.8rem;
}

.pay-card {
  padding: 1.6rem 1.4rem 1.3rem;
}

.pay-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.pay-list i {
  margin-right: 0.45rem;
}

/* Status box base */
.live-status-box {
  border-radius: 18px;
  padding: 1.1rem 1rem 1rem;
  border: 1px solid transparent;
}

/* Status box LIVE */
.live-status-box.live {
  background: radial-gradient(
    circle at 0 0,
    rgba(34, 197, 94, 0.22),
    rgba(22, 163, 74, 0.3)
  );
  border-color: rgba(34, 197, 94, 0.85);
}

/* Status box OFFLINE */
.live-status-box.offline {
  background: radial-gradient(
    circle at 0 0,
    rgba(248, 113, 113, 0.24),
    rgba(127, 29, 29, 0.5)
  );
  border-color: rgba(248, 113, 113, 0.95);
}

/* Live badge base + states */
.live-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-left: 0.35rem;
  border: 1px solid transparent;
}

.live-badge.live {
  background: rgba(34, 197, 94, 0.2);
  color: var(--success);
  border-color: rgba(34, 197, 94, 0.85);
}

.live-badge.offline {
  background: rgba(248, 113, 113, 0.23);
  color: var(--danger);
  border-color: rgba(248, 113, 113, 0.95);
}

.live-heading {
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.live-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  margin-right: 0.3rem;
}

.legend-dot.live {
  background: var(--success);
}

.legend-dot.offline {
  background: var(--danger);
}

/* MM page */

.mm-hero {
  padding: 3.6rem 0 2.2rem;
}

.mm-hero-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 1.8rem 1.6rem 1.45rem;
}

.mm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.mm-card {
  padding: 1.4rem 1.25rem 1.15rem;
}

.mm-card-title {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.mm-list {
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.45rem;
}

.mm-list--numbered {
  counter-reset: mm;
}

.mm-list--numbered li {
  position: relative;
  padding-left: 1.05rem;
}

.mm-list--numbered li::before {
  position: absolute;
  left: 0;
  top: 0.1rem;
  counter-increment: mm;
  content: counter(mm) ".";
  font-size: 0.82rem;
  color: var(--accent-2);
  font-weight: 600;
}

.mm-list--bullets li::before {
  content: "• ";
  color: var(--accent-2);
}

/* Sell / Vouches shared surface */

.sell-surface {
  padding: 1.6rem 1.4rem 1.4rem;
}

.sell-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 1.5rem;
}

.sell-steps {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.5rem;
}

.sell-steps li::before {
  content: "• ";
  color: var(--accent-2);
}

/* Footer */

.site-footer {
  margin-top: auto;
  padding: 1.1rem 0 1.7rem;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive */

@media (max-width: 960px) {
  .hero-grid,
  .discord-grid,
  .payments-grid,
  .sell-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.4rem;
  }

  .hero-grid > *:last-child {
    order: -1;
  }

  .mm-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .nav {
    flex-wrap: wrap;
  }
}


.hero-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0.7rem;
}

.hero-avatar-frame {
  width: 180px;
  height: 180px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow:
    0 0 32px rgba(248, 113, 113, 0.9),
    0 0 60px rgba(0, 0, 0, 1);
}

.hero-avatar {
  width: 108%;
  height: 108%;
  object-fit: cover;
  transform: translate(-4%, -4%);
}




.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow:
    0 0 14px rgba(248, 113, 113, 0.85),
    0 0 26px rgba(0, 0, 0, 0.9);
}


.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}


.live-status-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-top: 0.25rem;
}

@media (min-width: 900px) {
  .live-status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


.bulleted-list {
  margin-top: 0.75rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  list-style-position: inside;
}

.bulleted-list li {
  margin-bottom: 0.15rem;
}


.status-row-secondary {
  margin-top: 0.35rem;
}
