:root {
  color-scheme: dark;
  --bg: #0b0f14;
  --panel: #121821;
  --muted: #1b2430;
  --text: #e8eef6;
  --sub: #a9b4c3;
  --brand: #3dd6ed;
  --brand-2: #5c7cfa;
  --accent: #fbbf24;
  --radius: 20px;
  --max: 1200px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11, 15, 20, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
}

.logo-img {
  height: 96px;
  width: auto;
  display: block;
  margin: 0.5rem 0;
}

.nav-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-link {
  padding: 0.5rem 0.75rem;
  color: var(--sub);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--text);
}

.nav-button {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: #fff;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-button--discord {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #8c8df6, #5865f2);
  box-shadow: 0 0.9em 1.8em rgba(88, 101, 242, 0.35);
}

.nav-button--discord::before {
  content: "";
  width: 1.35em;
  height: 1.35em;
  background: url("../images/discord.svg") center / contain no-repeat;
}

.nav-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(93, 125, 250, 0.35);
}

.hero {
  position: relative;
  padding: 5rem 1.5rem 5rem;
  background: linear-gradient(135deg, rgba(93, 125, 250, 0.16), rgba(61, 214, 237, 0.1));
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5em;
  max-width: 48em;
  margin: 0 auto;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(61, 214, 237, 0.3), transparent 55%);
  pointer-events: none;
}

.hero-grid > * {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 3.5vw, 3.75rem);
  margin: 0 0 1rem;
}

.hero-subtitle {
  color: var(--sub);
  font-size: 1.1rem;
  margin: 0 auto 2em;
  line-height: 1.6;
  max-width: 40em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-content .hero-actions {
  justify-content: center;
}

.justify-center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: #fff;
}

.btn-secondary {
  background: rgba(36, 46, 72, 0.8);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.card {
  --card-bg-start: rgba(25, 34, 52, 0.82);
  --card-bg-end: rgba(12, 19, 32, 0.85);
  --card-border: rgba(93, 125, 250, 0.18);
  background: linear-gradient(135deg, var(--card-bg-start), var(--card-bg-end));
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 1.65rem;
  box-shadow: 0 16px 32px rgba(8, 12, 20, 0.32);
}

.card--neutral {
  --card-bg-start: rgba(18, 25, 38, 0.88);
  --card-bg-end: rgba(12, 18, 30, 0.9);
  --card-border: rgba(255, 255, 255, 0.06);
}

.card--accent-red {
  --card-bg-start: rgba(62, 21, 32, 0.92);
  --card-bg-end: rgba(33, 14, 24, 0.9);
  --card-border: rgba(248, 113, 113, 0.45);
}

.card--accent-blue {
  --card-bg-start: rgba(33, 47, 74, 0.92);
  --card-bg-end: rgba(18, 30, 52, 0.9);
  --card-border: rgba(147, 197, 253, 0.4);
}

.card--accent-cyan {
  --card-bg-start: rgba(23, 46, 62, 0.92);
  --card-bg-end: rgba(12, 32, 43, 0.9);
  --card-border: rgba(61, 214, 237, 0.45);
}

.card--accent-green {
  --card-bg-start: rgba(22, 48, 36, 0.92);
  --card-bg-end: rgba(14, 32, 24, 0.9);
  --card-border: rgba(52, 211, 153, 0.4);
}

.card--accent-purple {
  --card-bg-start: rgba(36, 24, 62, 0.92);
  --card-bg-end: rgba(24, 16, 46, 0.9);
  --card-border: rgba(167, 139, 250, 0.45);
}

.card--accent-slate {
  --card-bg-start: rgba(32, 40, 58, 0.92);
  --card-bg-end: rgba(20, 26, 40, 0.9);
  --card-border: rgba(148, 163, 184, 0.35);
}

.card--ghost {
  --card-bg-start: rgba(18, 24, 34, 0.78);
  --card-bg-end: rgba(12, 18, 28, 0.78);
  --card-border: rgba(255, 255, 255, 0.08);
}

.card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.card p {
  color: var(--sub);
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid-auto-legal {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.section {
  padding: 4rem 1.5rem;
}

.section-minimal {
  padding: 3.25rem 1.5rem;
}

.section h2 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.section .lead {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--sub);
  line-height: 1.7;
}

.section-dark {
  background: rgba(16, 22, 32, 0.9);
}

.section-muted {
  background: rgba(255, 255, 255, 0.02);
}

.steps-card {
  text-align: center;
}

.steps-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--muted);
  color: var(--accent);
}

.compare-card {
  background: rgba(255, 255, 255, 0.03);
}

.compare-card ul,
.simple-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.compare-card li,
.simple-list li {
  margin-bottom: 0.75rem;
  color: var(--sub);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.simple-list li::before {
  content: '•';
  color: var(--brand);
  margin-top: 0.15rem;
}

.cta-section {
  background: linear-gradient(135deg, rgba(93, 125, 250, 0.18), rgba(61, 214, 237, 0.12));
  padding: 4rem 1.5rem;
  text-align: center;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
}

.text-left {
  text-align: left;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.section-heading {
  text-align: center;
}

.section-heading p {
  margin: 0;
}

.section-heading + .split-section {
  margin-top: 2.5em;
}

.mt-8 {
  margin-top: 2rem;
}

.text-accent {
  color: rgba(147, 197, 253, 0.95);
}

.text-danger {
  color: rgba(248, 113, 113, 0.95);
}

.page-hero {
  padding: 4rem 1.5rem 3.5rem;
  background: linear-gradient(135deg, rgba(93, 125, 250, 0.12), rgba(61, 214, 237, 0.08));
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--sub);
  margin: 0 auto;
  max-width: 640px;
  line-height: 1.7;
}

.card-list {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.card-list.columns-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card-list.columns-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.rich-card {
  --card-bg-start: rgba(31, 43, 66, 0.92);
  --card-bg-end: rgba(15, 23, 40, 0.9);
  --card-border: rgba(93, 125, 250, 0.24);
  background: linear-gradient(135deg, var(--card-bg-start), var(--card-bg-end));
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 18px 36px rgba(6, 10, 18, 0.32);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}

.rich-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.rich-card__title {
  display: flex;
  align-items: center;
  gap: 0.65em;
  margin: 0;
}

.rich-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  font-size: 1.15em;
}

.rich-card > a {
  align-self: stretch;
  justify-content: center;
}

.stack {
  display: grid;
  gap: 1.5rem;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--sub);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
}

.faq-item h4 {
  margin: 0 0 0.65rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.legal-section h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.legal-section ul {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-section ul li {
  margin-bottom: 0.65rem;
  color: var(--sub);
}

.accent-frame {
  border-left: 3px solid rgba(93, 125, 250, 0.5);
  padding-left: 1.25rem;
}

.highlight-box {
  background: rgba(93, 125, 250, 0.12);
  border: 1px solid rgba(93, 125, 250, 0.25);
  border-radius: 16px;
  padding: 1.5rem;
  color: var(--text);
}

.highlight-box p {
  margin: 0;
}

.muted-note {
  color: var(--sub);
  font-size: 0.9rem;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: var(--sub);
  padding: 0;
  list-style: none;
}
.metric-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.metric-value {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--brand);
}

.metric-label {
  margin-top: 0.25rem;
  color: var(--sub);
}

.split-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.split-section > * {
  height: 100%;
}
@media (max-width: 62em) {
  .admin-auth {
    grid-template-columns: 1fr;
  }
}

.page-hero--admin {
  position: relative;
  overflow: hidden;
}

.page-hero--admin::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(93, 125, 250, 0.32), transparent 60%);
  pointer-events: none;
}

.admin-auth {
  width: min(90em, calc(100% - 4em));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 4em;
  background: none;
  border-radius: 0;
  overflow: visible;
  align-items: stretch;
}

.admin-auth__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5em;
  padding: 0;
}

.admin-auth__panel--brand {
  position: relative;
  color: var(--text);
  padding: 4em 0;
}

.admin-auth__brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 0 10vw 0 4vw;
  position: relative;
  z-index: 1;
}

.admin-auth__brand-link {
  display: inline-flex;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.admin-auth__brand-link:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.35));
}

.admin-auth__brand-logo {
  width: 9em;
  height: auto;
}

.admin-auth__brand-logo--xl {
  width: min(100%, 96em);
  max-width: 100%;
}

.admin-auth__headline {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.admin-auth__text {
  margin: 0;
  color: var(--sub);
  line-height: 1.7;
}

.admin-auth__panel--form {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.auth-card {
  position: relative;
  width: 100%;
  max-width: 28em;
  background: linear-gradient(160deg, rgba(18, 26, 42, 0.92), rgba(9, 13, 23, 0.88));
  border: 1px solid rgba(77, 124, 255, 0.32);
  border-radius: 1.6em;
  padding: 3.2em 2.8em;
  display: flex;
  flex-direction: column;
  gap: 1.6em;
  box-shadow: 0 2.2em 4.5em rgba(5, 9, 18, 0.42);
  backdrop-filter: blur(18px);
  overflow: hidden;
  z-index: 1;
}

.auth-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(61, 214, 237, 0.2), transparent 60%);
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}

.auth-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 0;
}

.auth-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  text-align: center;
}

.auth-title {
  margin: 0;
}

.auth-subtitle {
  margin: 0;
  color: var(--sub);
  font-size: 0.95em;
}

.auth-alert {
  margin-top: 0;
}

.alert--success {
  margin-top: 0;
  padding: 1rem 1.25rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.32);
  border-radius: var(--radius);
  color: #bbf7d0;
}

.alert--inline {
  margin-top: 1em;
  max-width: 26em;
}

.password-form {
  margin-top: 0.75em;
}

.password-form .auth-submit {
  width: auto;
  align-self: flex-start;
  padding: 0.9em 1.6em;
}

.auth-divider {
  position: relative;
  text-align: center;
  margin: 0.5em 0 0.75em;
}

.auth-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.auth-divider span {
  position: relative;
  display: inline-block;
  padding: 0.25em 0.75em;
  border-radius: 999px;
  background: rgba(12, 18, 28, 0.9);
  color: var(--sub);
  font-size: 0.85em;
}

.register-form {
  margin-top: 0.5em;
}

.register-form .auth-submit {
  background: transparent;
  border: 1px solid rgba(79, 140, 255, 0.4);
  color: #dbeafe;
  box-shadow: none;
}

.register-form .auth-submit:hover {
  border-color: rgba(61, 214, 237, 0.6);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1.1em;
}

.form-control {
  display: flex;
  flex-direction: column;
  gap: 0.55em;
  font-size: 0.95em;
  color: var(--sub);
}

.form-control span {
  font-weight: 600;
  color: var(--text);
}

.form-control input {
  width: 100%;
  padding: 0.95em 1.25em;
  border-radius: 1.9em;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(12, 18, 30, 0.92), rgba(8, 12, 20, 0.88));
  color: var(--text);
  font-size: 1.05em;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-control input:focus,
.form-control input:hover {
  outline: none;
  border-color: rgba(61, 214, 237, 0.7);
  box-shadow: 0 0 0 0.18em rgba(61, 214, 237, 0.18);
  transform: translateY(-1px);
}

.auth-submit {
  width: 100%;
  margin-top: 0.5em;
  padding: 1em 1.2em;
  border-radius: 999em;
  background: linear-gradient(90deg, rgba(79, 140, 255, 1), rgba(58, 201, 235, 1));
  border: none;
  box-shadow: 0 1.4em 2.4em rgba(64, 139, 255, 0.28);
}

.auth-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  text-align: center;
  font-size: 0.9em;
  color: var(--sub);
}

.auth-meta a {
  color: var(--brand);
  font-weight: 600;
}

.auth-meta a:hover {
  color: var(--brand-2);
}

.info-pill--muted {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.hero-actions--center {
  justify-content: center;
  margin-top: 2em;
}
.admin-auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 20% 80%, rgba(61, 214, 237, 0.18), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(93, 125, 250, 0.18), transparent 60%),
    rgba(10, 16, 26, 0.92);
}

.admin-auth-page .site-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4em 1.5em;
}

@media (max-width: 56em) {
  .admin-auth {
    width: calc(100% - 2.5em);
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 2.5em;
  }
  .admin-auth__panel--form,
  .admin-auth__panel--brand {
    padding: 0;
  }
  .admin-auth__brand {
    align-items: center;
    text-align: center;
    margin: 0 auto;
    padding: 0 2.5em;
  }
  .admin-auth__brand-logo--xl {
    width: clamp(20em, 78vw, 40em);
  }
  .admin-auth__headline {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }
}

@media (max-width: 40em) {
  .auth-card {
    padding: 2.5em 2em;
  }
}

.comparison-column {
  display: grid;
  gap: 1.75em;
}

.quick-table {
  display: grid;
  gap: 1.5em;
  align-content: start;
}

.quick-table .card {
  width: 100%;
}

.quick-table-actions {
  display: flex;
  justify-content: center;
  width: 100%;
}

.split-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  border-radius: 22px;
  background: radial-gradient(circle at 60% 30%, rgba(93, 125, 250, 0.25), rgba(21, 28, 39, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  overflow: hidden;
  min-height: 260px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.split-visual--tall {
  min-height: 320px;
}

.split-visual::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  top: 40px;
  border-radius: 50%;
  background: rgba(61, 214, 237, 0.25);
  filter: blur(12px);
}

.split-visual h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.split-visual p {
  color: var(--sub);
  line-height: 1.65;
  max-width: 320px;
}

.cta-section p {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: var(--sub);
  line-height: 1.6;
}

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  color: var(--sub);
}

.footer-left,
.footer-right {
  display: flex;
  align-items: center;
}

.footer-right p {
  margin: 0;
}

.footer-links {
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--sub);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-social {
  margin-top: 0;
  display: flex;
  gap: 0.75em 1.1em;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--sub);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--text);
}

.social-icon {
  width: 1.75em;
  height: 1.75em;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15, 23, 35, 0.9), rgba(10, 16, 27, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0.4em 1.2em rgba(8, 12, 20, 0.28);
  position: relative;
}

.social-icon::after {
  content: "";
  width: 0.9em;
  height: 0.9em;
  mask-size: cover;
  display: block;
  background: currentColor;
}

.social-icon--twitch::after {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23fff"><path d="M6 2 3 5v14h5v3h3l3-3h4l3-3V2H6Zm13 12-2 2h-5l-3 3v-3H6V4h13Z"/></svg>');
}

.social-icon--facebook::after {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23fff"><path d="M13 22v-8h3l1-4h-4V7c0-1.1.9-2 2-2h2V1h-2c-3.3 0-6 2.7-6 6v3H7v4h3v8h3Z"/></svg>');
}

.social-icon--instagram::after {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23fff"><path d="M7 2C4.2 2 2 4.2 2 7v10c0 2.8 2.2 5 5 5h10c2.8 0 5-2.2 5-5V7c0-2.8-2.2-5-5-5H7Zm0 2h10c1.7 0 3 1.3 3 3v10c0 1.7-1.3 3-3 3H7c-1.7 0-3-1.3-3-3V7c0-1.7 1.3-3 3-3Zm10 1a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM12 7a5 5 0 1 0 0 10 5 5 0 0 0 0-10Zm0 2a3 3 0 1 1 0 6 3 3 0 0 1 0-6Z"/></svg>');
}

.social-icon--discord::after {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23fff"><path d="M20.3 4.4A18 18 0 0 0 16.4 3l-.2.2c1.9.6 2.9 1.5 2.9 1.5a18.5 18.5 0 0 0-5.6-1.7c-.14-.02-.27.06-.33.19-.02.04-.02.08 0 .12-.4-.03-.8-.03-1.2 0-.02-.04-.05-.08-.09-.11-.05-.09-.16-.14-.26-.12a18.5 18.5 0 0 0-5.6 1.7s1-1 3-1.6L8.2 3a18 18 0 0 0-3.9 1.4S1 8.55 1 15.1c0 0 1.2 2 4.4 2.1l.54-.69c-1.2-.4-1.7-1.3-1.7-1.3l.27.16.01.01.02.01.02.01.06.03.2.1c.1.05.2.09.3.13.17.07.35.14.53.2.73.25 1.4.42 2 .52a18.3 18.3 0 0 0 3.3.11c.95-.05 1.9-.18 2.8-.4.44-.1.9-.22 1.3-.36.3-.1.6-.2.87-.32.2-.08.4-.18.6-.26l.1-.05.04-.02s-.4.9-1.6 1.3l.76.76C21.85 17.1 23 15.1 23 15.1c0-6.55-3.2-10.7-3.2-10.7ZM9.62 14c-.9 0-1.6-.8-1.6-1.7s.72-1.7 1.6-1.7c.88 0 1.6.8 1.6 1.7 0 .94-.7 1.7-1.6 1.7Zm5.76 0c-.9 0-1.6-.8-1.6-1.7s.72-1.7 1.6-1.7a1.6 1.6 0 0 1 1.6 1.7c0 .94-.72 1.7-1.6 1.7Z"/></svg>');
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
  }
  .card {
    padding: 1.5rem;
  }
  .header-inner {
    justify-content: space-between;
  }
  .logo {
    font-size: 1.05rem;
  }
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.table th,
.table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table th {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
}

.table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.alert {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(252, 165, 165, 0.12);
  border: 1px solid rgba(252, 165, 165, 0.35);
  border-radius: var(--radius);
  color: var(--text);
}

.copy-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(15, 20, 30, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.copy-text {
  flex: 1;
  font-family: "Fira Code", "JetBrains Mono", monospace;
  font-size: 0.9rem;
  color: var(--text);
}

.copy-btn {
  background: rgba(93, 125, 250, 0.14);
  color: var(--text);
  border: 1px solid rgba(93, 125, 250, 0.4);
  border-radius: 8px;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
  font-size: 0.8rem;
  transition: background 0.2s ease;
}

.copy-btn:hover {
  background: rgba(93, 125, 250, 0.25);
}

.admin-dashboard {
  padding: 3.5em 0 4.5em;
}

/* Simple layout */
.admin-dashboard--simple .container {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5em;
}

.admin-dashboard__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2em;
}

.admin-dashboard__header h1 {
  margin: 0.35em 0 0.25em;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
}

.admin-dashboard__header p {
  margin: 0;
  color: var(--sub);
}

.admin-dashboard__status {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8em;
}

.admin-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.75em 1.1em;
  border-radius: 999px;
  background: rgba(17, 27, 42, 0.92);
  border: 1px solid rgba(56, 189, 148, 0.35);
  color: #bcf0da;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.admin-status-pill svg {
  width: 1.05em;
  height: 1.05em;
  fill: #34d399;
}

.admin-dashboard__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 2.2em;
  align-items: start;
}

.admin-metric-card {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
}

.admin-status-alert {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  padding: 1.05em 1.2em;
  border-radius: 1.4em;
  background: rgba(15, 22, 34, 0.92);
  border: 1px solid rgba(25, 189, 118, 0.35);
  color: #d1fae5;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.admin-status-alert svg {
  width: 1.1em;
  height: 1.1em;
  fill: #4ade80;
}

.admin-password-panel {
  margin: 0 auto;
  max-width: 520px;
}

.admin-card--password {
  padding: 2.4em 2.3em;
  background: linear-gradient(160deg, rgba(17, 24, 36, 0.92), rgba(9, 13, 24, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2em 3.8em rgba(6, 10, 17, 0.32);
  border-radius: 1.8em;
  display: flex;
  flex-direction: column;
  gap: 1.4em;
}

.admin-card--password h3 {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin: 0;
}

.admin-card--password h3 svg {
  width: 1.1em;
  height: 1.1em;
  fill: #fbbf24;
}

.password-form {
  margin-top: 0.5em;
  display: flex;
  flex-direction: column;
  gap: 1.1em;
}

.password-form .form-control span {
  color: var(--sub);
  font-weight: 600;
}

.password-form input[type="password"] {
  background: linear-gradient(140deg, rgba(12, 17, 26, 0.95), rgba(8, 12, 20, 0.9));
  border-radius: 1.8em;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 0.95em 1.2em;
  font-size: 1rem;
}

.password-form input[type="password"]:focus {
  border-color: rgba(93, 220, 250, 0.55);
  box-shadow: 0 0 0 0.18em rgba(93, 220, 250, 0.18);
}

