/* ═══════════════════════════════════════════════════════════════
   Ethan's Utilities 2.0 — Complete stylesheet
   Color palette + animations: yours · Layouts: full coverage
═══════════════════════════════════════════════════════════════ */

/* ─── Base ─────────────────────────────────────────────────────── */
:root {
  --bg:       #0d0e10;
  --s1:       #13151a;
  --s2:       #1a1d24;
  --s3:       #21242d;
  --border:   #2c2f3a;
  --accent:   #5865f2;
  --accentlo: rgba(88,101,242,0.12);
  --accentbr: rgba(88,101,242,0.3);
  --pink:     #eb459e;
  --green:    #57f287;
  --yellow:   #fee75c;
  --red:      #ed4245;
  --gold:     #f1c40f;
  --text:     #e3e5e8;
  --sub:      #949ba4;
  --dim:      #5c6370;
  --rule:     #58a6ff;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg); color: var(--text);
  min-height: 100vh; display: flex; flex-direction: column;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
code { font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace; }

/* ─── Global animated background ───────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: -30%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 28% 32%,  rgba(88,101,242,.13)  0%, transparent 70%),
    radial-gradient(ellipse 48% 55% at 74% 68%,  rgba(235,69,158,.09)  0%, transparent 70%),
    radial-gradient(ellipse 35% 35% at 58% 12%,  rgba(87,242,135,.05)  0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 10% 80%,  rgba(88,101,242,.06)  0%, transparent 70%);
  will-change: transform;
  animation: bg-drift 28s ease-in-out infinite alternate;
}
@keyframes bg-drift {
  0%   { transform: translate(0%,   0%)   scale(1);    }
  25%  { transform: translate(-2%,  1.5%) scale(1.02); }
  50%  { transform: translate(1%,   -2%)  scale(.99);  }
  75%  { transform: translate(2.5%, 1%)   scale(1.01); }
  100% { transform: translate(-1%,  2.5%) scale(1.02); }
}

/* ─── Pill hover (inline content + mobile nav) ─────────────────── */
.nav-mobile a:not(.nav-mobile-discord),
.inner a:not(.btn),
.priv-block a,
.verdict a,
.tos-notice a {
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.nav-mobile a:not(.nav-mobile-discord):hover,
.inner a:not(.btn):hover,
.priv-block a:hover,
.verdict a:hover,
.tos-notice a:hover {
  background: rgba(255,255,255,.08);
  color: var(--text);
}

/* ─── Sliding pill (follows cursor across nav + footer links) ───── */
.nav-links,
.foot-links {
  position: relative;
}
.nav-indicator,
.foot-indicator {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  opacity: 0;
  pointer-events: none;
  transform: translateX(0);
  z-index: 0;
  transition: transform .35s cubic-bezier(.4,0,.2,1),
              width     .35s cubic-bezier(.4,0,.2,1),
              opacity   .25s ease;
}
.nav-links a,
.foot-links a {
  position: relative;
  z-index: 1;
  transition: color .2s ease;
}
.nav-links a:hover,
.foot-links a:hover {
  color: var(--text);
}

/* ─── Navbar ───────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(13,14,16,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 28px; height: 62px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1rem; letter-spacing: -.01em;
  color: var(--text);
  flex-shrink: 0;
}
.nav-brand img {
  width: 30px; height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}
.ver {
  font-size: .68rem; font-weight: 700;
  padding: 2px 7px; border-radius: 999px;
  background: var(--accentlo);
  color: var(--accent);
  border: 1px solid var(--accentbr);
  margin-left: 2px;
}

.nav-links {
  display: flex; gap: 4px;
  margin-left: auto; margin-right: 14px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: .9rem; font-weight: 500;
  color: var(--sub);
}

.nav-cta {
  position: relative;
  isolation: isolate;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: linear-gradient(135deg, #818cf8 0%, #5865f2 50%, #eb459e 100%);
  border-radius: 11px;
  font-size: .88rem; font-weight: 600; color: #fff;
  flex-shrink: 0;
  border: none;
  box-shadow: 0 8px 22px rgba(88,101,242,.30);
  transition: transform .22s cubic-bezier(.2,.7,.3,1),
              box-shadow .22s ease;
  will-change: transform;
}
.nav-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #7983f3 0%, #5865f2 50%, #4752c4 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity .35s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(88,101,242,.50);
}
.nav-cta:hover::after { opacity: 1; }
.nav-cta:hover .nav-icon {
  transform: scale(1.15) rotate(-3deg);
}
.nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 5px 14px rgba(88,101,242,.4);
}
.nav-icon {
  width: 22px; height: 22px; object-fit: contain;
  transition: transform .25s cubic-bezier(.2,.7,.3,1);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px; height: 16px;
  padding: 0; flex-shrink: 0;
  z-index: 202;
}
.nav-burger span {
  display: block; width: 100%; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .28s cubic-bezier(.4,0,.2,1), opacity .2s ease;
}
.nav-burger.open span:nth-child(1) { transform: translate(0,7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translate(0,-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: sticky; top: 62px; z-index: 199;
  flex-direction: column;
  padding: 0 16px;
  background: rgba(13,14,16,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
}
.nav-mobile.open {
  display: flex;
  max-height: 380px;
  padding: 10px 16px 16px;
}
.nav-mobile a {
  padding: 12px 14px;
  font-size: .94rem; font-weight: 500;
  color: var(--sub);
}
.nav-mobile-discord {
  display: inline-flex !important; align-items: center; gap: 8px;
  margin-top: 8px;
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 600 !important;
}

@media (max-width: 880px) {
  .nav { padding: 0 16px; gap: 12px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; margin-left: auto; }
}

/* ─── Nav dropdown (Server Info) ───────────────────────────────── */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font: inherit;
  font-size: .9rem; font-weight: 500;
  color: var(--sub);
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color .2s ease;
}
.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown-trigger:focus-visible {
  color: var(--text);
}
.nav-chev {
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.nav-dropdown:hover .nav-chev,
.nav-dropdown-menu:hover ~ .nav-dropdown-trigger .nav-chev {
  transform: rotate(180deg);
}

/* Invisible hover-bridge so the gap between trigger and menu doesn't close it */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 14px;
  pointer-events: auto;
}

.nav-dropdown-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, -8px);
  min-width: 240px;
  padding: 8px;
  background: rgba(20,21,26,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow:
    0 20px 50px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.02);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .3s cubic-bezier(.4,0,.2,1);
  z-index: 110;
}
/* Subtle arrow connecting menu to trigger */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 11px; height: 11px;
  background: rgba(20,21,26,.92);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-radius: 2px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  animation: dd-fade .25s ease-out;
}
@keyframes dd-fade {
  from { opacity: 0; transform: translate(-50%, -8px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  font-size: .9rem; font-weight: 500;
  color: var(--text);
  border-radius: 10px;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.nav-dropdown-menu a:hover {
  background: linear-gradient(135deg, rgba(88,101,242,.18), rgba(235,69,158,.08));
  color: #fff;
  transform: translateX(2px);
}
.dd-icon {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, transform .2s;
}
.nav-dropdown-menu a:hover .dd-icon {
  background: var(--accentlo);
  border-color: var(--accentbr);
  transform: scale(1.08);
}
.dd-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

/* ─── Main content wrapper ─────────────────────────────────────── */
.inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 28px 64px;
  flex: 1;
}
.inner-header { margin-bottom: 32px; }
.inner-header h2 {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.page-icon { width: 28px; height: 28px; object-fit: contain; }
.inner-header p { color: var(--sub); font-size: .95rem; }

/* ─── Buttons (giveaway-site style — gradient + lift + glow) ───── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600; font-size: .94rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-align: center;
  transition: transform .22s cubic-bezier(.2,.7,.3,1),
              box-shadow .22s ease,
              background .22s ease;
  will-change: transform;
}
.btn img, .btn svg {
  transition: transform .25s cubic-bezier(.2,.7,.3,1);
  flex-shrink: 0;
}

.btn-primary {
  position: relative;
  isolation: isolate;
  background: linear-gradient(135deg, #818cf8 0%, #5865f2 50%, #eb459e 100%);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(88,101,242,.35);
  border: none;
}
/* Discord-gradient overlay that fades in on hover */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #7983f3 0%, #5865f2 50%, #4752c4 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity .35s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(88,101,242,.55);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover img, .btn-primary:hover svg {
  transform: scale(1.12) rotate(-3deg);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(88,101,242,.4);
}

.btn-ghost {
  background: var(--s1);
  color: var(--text);
  border-color: var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.btn-ghost:hover {
  background: var(--s2);
  border-color: var(--accentbr);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.35);
}
.btn-ghost:hover img, .btn-ghost:hover svg {
  transform: translateX(3px);
}
.btn-ghost:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0,0,0,.25);
}

.btn-lg { padding: 15px 28px; font-size: 1rem; }

.cmd-badge {
  display: inline-block;
  padding: 1px 6px;
  background: var(--s3);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 11.5px;
  font-family: ui-monospace, monospace;
}

/* ─── HOME — Hero ──────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 60px 24px 40px;
  max-width: 920px;
  margin: 0 auto;
}
.hero-icon {
  width: 110px; height: 110px;
  border-radius: 50%;
  margin: 0 auto 22px;
  box-shadow: 0 0 0 6px rgba(255,255,255,.03), 0 0 60px rgba(88,101,242,.4);
  animation: heroGlow 3.5s ease-in-out infinite;
}
@keyframes heroGlow {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255,255,255,.03), 0 0 40px rgba(88,101,242,.3); }
  50%       { box-shadow: 0 0 0 6px rgba(255,255,255,.05), 0 0 80px rgba(88,101,242,.55); }
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--accentlo);
  border: 1px solid var(--accentbr);
  border-radius: 999px;
  font-size: .78rem; font-weight: 600;
  color: var(--accent);
  margin-bottom: 18px;
}
.hero-tag .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: tagPulse 1.6s infinite;
}
@keyframes tagPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(88,101,242,.6); }
  50%      { box-shadow: 0 0 0 8px rgba(88,101,242,0); }
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  background: linear-gradient(
    100deg,
    #ffffff 0%,
    #e2e8f0 18%,
    #94a3b8 35%,
    #475569 50%,
    #94a3b8 65%,
    #e2e8f0 82%,
    #ffffff 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hero-shimmer 7s linear infinite;
  text-shadow: 0 0 40px rgba(255,255,255,.06);
}
@keyframes hero-shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 220% center; }
}
.hero h1 .grad {
  background: linear-gradient(
    100deg,
    #ffffff 0%,
    #e2e8f0 18%,
    #94a3b8 35%,
    #475569 50%,
    #94a3b8 65%,
    #e2e8f0 82%,
    #ffffff 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hero-shimmer 7s linear infinite;
}
.hero p.sub {
  font-size: 1.06rem;
  color: var(--sub);
  max-width: 640px;
  margin: 0 auto 30px;
  line-height: 1.65;
}
.hero-cta {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ─── HOME — Quick stats ───────────────────────────────────────── */
.qstats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: 100%; max-width: 1180px;
  margin: 0 auto 50px;
  padding: 0 28px;
  background: transparent;
}
.qstats { position: relative; }
.qstats-indicator {
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: transform .35s cubic-bezier(.4,0,.2,1),
              width     .35s cubic-bezier(.4,0,.2,1),
              height    .35s cubic-bezier(.4,0,.2,1),
              opacity   .25s ease;
}
.qstat {
  position: relative;
  background: var(--s1);
  border: 1px solid var(--border);
  padding: 26px 22px;
  text-align: center;
  border-radius: 14px;
}
.qstat > * { position: relative; z-index: 3; }
.qstat-label {
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--dim);
  margin-bottom: 10px;
}
.qstat-value {
  font-size: 1.85rem; font-weight: 900;
  background: linear-gradient(180deg, #fff, #949ba4);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.qstat-value small { font-size: 1.1rem; }
.qstat-sub { font-size: .8rem; color: var(--sub); margin-top: 8px; }
@media (max-width: 920px) { .qstats { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ─── HOME — Feature cards ─────────────────────────────────────── */
.f-section { max-width: 1180px; margin: 0 auto; padding: 50px 28px; }
.f-head { text-align: center; max-width: 660px; margin: 0 auto 36px; }
.f-eyebrow {
  display: inline-block; padding: 5px 12px;
  background: var(--accentlo);
  color: var(--accent);
  border: 1px solid var(--accentbr);
  border-radius: 999px;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.f-head h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 12px;
}
.f-head p { color: var(--sub); font-size: 1rem; }
.f-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
@media (max-width: 920px) { .f-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .f-grid { grid-template-columns: 1fr; } }
.f-card {
  display: block;
  padding: 26px 22px;
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: background .2s, transform .2s, border-color .2s;
}
.f-card:hover {
  background: var(--s2);
  border-color: var(--accentbr);
  transform: translateY(-3px);
}
.f-icon {
  width: 46px; height: 46px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: var(--accentlo);
  border: 1px solid var(--accentbr);
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.f-icon img {
  width: 28px; height: 28px;
  object-fit: contain;
}
.f-card h3 { font-size: 1.06rem; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.f-card p { color: var(--sub); font-size: .88rem; line-height: 1.55; margin-bottom: 10px; }
.f-card .arrow {
  font-size: .8rem; font-weight: 600; color: var(--accent);
  transition: transform .2s;
}
.f-card:hover .arrow { transform: translateX(3px); }

/* ─── HOME — The Bot Section ───────────────────────────────────── */
.bot-section {
  max-width: 1180px; margin: 0 auto;
  padding: 60px 28px;
}
.bot-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 44px;
  background: linear-gradient(135deg, rgba(88,101,242,.10), rgba(235,69,158,.05));
  border: 1px solid var(--accentbr);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}
.bot-inner::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(88,101,242,.15), transparent);
  pointer-events: none;
}
.bot-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: var(--accentlo);
  color: var(--accent);
  border: 1px solid var(--accentbr);
  border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.bot-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -.025em;
  margin-bottom: 16px;
  display: inline-block;
}
.bot-ver {
  display: inline-block;
  padding: 3px 10px;
  font-size: .85rem; font-weight: 800;
  vertical-align: middle;
  margin-left: 4px;
  background: var(--accentlo);
  color: var(--accent);
  border: 1px solid var(--accentbr);
  border-radius: 6px;
  letter-spacing: 0;
}
.bot-sub { color: var(--sub); font-size: 1rem; line-height: 1.65; margin-bottom: 28px; max-width: 540px; }

.bot-features {
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px;
}
.botfeatures-indicator {
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-radius: 11px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: transform .35s cubic-bezier(.4,0,.2,1),
              width     .35s cubic-bezier(.4,0,.2,1),
              height    .35s cubic-bezier(.4,0,.2,1),
              opacity   .25s ease;
}
.bot-feature {
  position: relative;
  display: flex; gap: 14px; align-items: center;
  padding: 12px 14px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: 11px;
}
.bot-feature > * { position: relative; z-index: 3; }
.bot-feature img {
  width: 36px; height: 36px;
  object-fit: contain;
  padding: 6px;
  background: var(--accentlo);
  border-radius: 9px;
  border: 1px solid var(--accentbr);
  flex-shrink: 0;
}
.bot-feature-name { font-size: .95rem; font-weight: 700; margin-bottom: 2px; }
.bot-feature-desc { font-size: .82rem; color: var(--sub); line-height: 1.5; }

.bot-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.bot-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  position: relative; z-index: 1;
}
.botstats-indicator {
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: transform .35s cubic-bezier(.4,0,.2,1),
              width     .35s cubic-bezier(.4,0,.2,1),
              height    .35s cubic-bezier(.4,0,.2,1),
              opacity   .25s ease;
}
.bot-stat-card {
  position: relative;
  padding: 26px 18px;
  background: rgba(13,14,16,.55);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.bot-stat-card > * { position: relative; z-index: 3; }
.bot-stat-num {
  font-size: 2.4rem; font-weight: 900;
  background: linear-gradient(135deg, #818cf8, var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.bot-stat-num small { font-size: 1.2rem; }
.bot-stat-label {
  font-size: .8rem; color: var(--sub);
  margin-top: 8px;
  text-transform: uppercase; letter-spacing: .1em; font-weight: 600;
}

@media (max-width: 900px) {
  .bot-inner { grid-template-columns: 1fr; padding: 30px; }
  .bot-stats { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 540px) {
  .bot-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ─── HOME — Big CTA ───────────────────────────────────────────── */
.cta-block {
  max-width: 1180px;
  margin: 50px auto;
  padding: 50px 32px;
  background: linear-gradient(135deg, rgba(88,101,242,.12), rgba(235,69,158,.06));
  border: 1px solid var(--accentbr);
  border-radius: 22px;
  text-align: center;
}
.cta-block h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 900; letter-spacing: -.025em;
  margin-bottom: 12px;
}
.cta-block p { color: var(--sub); font-size: 1rem; margin-bottom: 26px; }

/* ─── COMMANDS — Tabs ──────────────────────────────────────────── */
.cmd-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.cmd-tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  border-radius: 9px;
  background: var(--s1);
  border: 1px solid var(--border);
  color: var(--sub);
  font-size: .86rem; font-weight: 600;
  transition: .15s;
}
.cmd-tab:hover { background: var(--s2); color: var(--text); border-color: var(--accentbr); }
.cmd-tab.active {
  background: var(--accentlo);
  border-color: var(--accentbr);
  color: var(--accent);
}

.cmd-section { display: none; animation: fadeIn .25s ease; }
.cmd-section.on { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.cmd-group { margin-bottom: 28px; }
.cmd-group-title {
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--border);
}

.cmd-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 10px;
}
.cmd-card {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px;
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 11px;
  transition: .18s;
}
.cmd-card:hover {
  background: var(--s2);
  border-color: var(--accentbr);
  transform: translateY(-2px);
}
.cmd-chip {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accentlo);
  border: 1px solid var(--accentbr);
  display: grid; place-items: center;
  font-size: 1.05rem; flex-shrink: 0;
}
.cmd-name {
  font-family: ui-monospace, monospace;
  font-size: .9rem; font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  word-break: break-word;
}
.cmd-desc { color: var(--sub); font-size: .83rem; line-height: 1.5; }
.lvl-badge {
  display: inline-block;
  padding: 1px 7px;
  background: rgba(241,196,15,.14);
  color: var(--gold);
  border: 1px solid rgba(241,196,15,.3);
  border-radius: 6px;
  font-family: inherit;
  font-size: 10.5px; font-weight: 700;
  margin-left: 4px;
}

/* ─── Info boxes ───────────────────────────────────────────────── */
.info-box {
  padding: 14px 18px;
  background: var(--accentlo);
  border: 1px solid var(--accentbr);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  font-size: .88rem;
  line-height: 1.6;
  margin: 16px 0;
}
.info-box-gold {
  padding: 14px 18px;
  background: rgba(241,196,15,.08);
  border: 1px solid rgba(241,196,15,.25);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  font-size: .88rem;
  line-height: 1.6;
  margin: 16px 0;
}

/* ─── CREDITS PAGE ─────────────────────────────────────────────── */
.credits-hero {
  text-align: center;
  padding: 50px 24px 24px;
  max-width: 760px; margin: 0 auto;
}
.credits-hero img {
  width: 88px; height: 88px;
  border-radius: 50%;
  margin: 0 auto 16px;
  box-shadow: 0 0 50px rgba(88,101,242,.35);
}
.credits-hero h2 {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.credits-hero p { color: var(--sub); font-size: .95rem; }
.version-badge {
  display: inline-block;
  margin-top: 16px;
  padding: 7px 16px;
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
}

.credit-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.testers-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.credit-card {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 16px;
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 13px;
  transition: .2s;
}
.credit-card:hover {
  background: var(--s2);
  border-color: var(--accentbr);
  transform: translateY(-2px);
}
.credit-avatar {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 50%;
  background: var(--s3);
  border: 1px solid var(--border);
  display: grid; place-items: center;
}
.credit-info { min-width: 0; flex: 1; }
.credit-name {
  font-size: .96rem; font-weight: 700;
  margin-bottom: 4px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.credit-id {
  font-family: ui-monospace, monospace;
  font-size: .68rem;
  color: var(--dim);
  margin-top: 5px;
}
.credit-role {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
}
.role-founder     { background: rgba(241,196,15,.16); color: var(--gold);   border: 1px solid rgba(241,196,15,.3); }
.role-contributor { background: var(--accentlo);     color: var(--accent); border: 1px solid var(--accentbr); }
.role-tester      { background: rgba(87,242,135,.16); color: var(--green); border: 1px solid rgba(87,242,135,.3); }

.divider {
  height: 1px;
  background: var(--border);
  margin: 30px 0;
}

.verdict {
  margin-top: 26px;
  padding: 20px 24px;
  background: var(--s1);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  font-size: .9rem;
  line-height: 1.65;
}
.verdict a { color: var(--accent); }

/* ─── Guidelines page ──────────────────────────────────────────── */
.gl-hero {
  text-align: center;
  padding: 50px 24px 40px;
  max-width: 880px; margin: 0 auto 36px;
  border-bottom: 1px dashed var(--border);
}
.gl-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px;
  background: var(--accentlo);
  color: var(--accent);
  border: 1px solid var(--accentbr);
  border-radius: 999px;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.gl-eyebrow-emoji {
  width: 16px; height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}
.gl-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -.03em;
  margin-bottom: 24px;
  background: linear-gradient(
    100deg,
    #ffffff 0%,
    #e2e8f0 18%,
    #94a3b8 35%,
    #475569 50%,
    #94a3b8 65%,
    #e2e8f0 82%,
    #ffffff 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hero-shimmer 7s linear infinite;
  text-shadow: 0 0 40px rgba(255,255,255,.06);
}
.gl-hero h1 .grad {
  background: linear-gradient(
    100deg,
    #ffffff 0%,
    #e2e8f0 18%,
    #94a3b8 35%,
    #475569 50%,
    #94a3b8 65%,
    #e2e8f0 82%,
    #ffffff 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hero-shimmer 7s linear infinite;
}
.gl-intro {
  color: var(--sub);
  font-size: 1.05rem; line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.gl-intro strong { color: var(--text); white-space: nowrap; }
.gl-inline-emoji {
  width: 22px; height: 22px;
  object-fit: contain;
  display: inline-block;
  vertical-align: -.3em;
  margin-right: 4px;
}

/* Channel mention pill */
.ch-mention {
  display: inline-block;
  padding: 1px 8px;
  background: var(--accentlo);
  color: var(--accent);
  border-radius: 5px;
  font-weight: 600;
  font-size: .9em;
}
.ch-mention-link {
  border: 1px solid var(--accentbr);
  transition: background .18s, border-color .18s, transform .18s;
}
.ch-mention-link:hover {
  background: rgba(88,101,242,.22);
  border-color: rgba(88,101,242,.55);
  transform: translateY(-1px);
}
.ch-mention::before { content: '#'; opacity: .7; margin-right: 1px; }

/* Enforcement block */
.gl-enforce {
  margin: 50px 0 30px;
  padding: 36px 32px;
  background: linear-gradient(160deg, rgba(88,101,242,.06), rgba(20,21,26,.6));
  border: 1px solid var(--border);
  border-radius: 18px;
}
.gl-enforce-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.gl-enforce-icon {
  width: 32px; height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.gl-enforce-head h2 {
  font-size: 1.5rem; font-weight: 800;
  letter-spacing: -.02em;
  margin: 0;
}
.gl-enforce-blocks {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.gl-enforce-indicator {
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: transform .35s cubic-bezier(.4,0,.2,1),
              width     .35s cubic-bezier(.4,0,.2,1),
              height    .35s cubic-bezier(.4,0,.2,1),
              opacity   .25s ease;
}
.gl-enforce-block {
  position: relative;
  padding: 20px 22px;
  background: rgba(0,0,0,.25);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.gl-enforce-block:hover {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.14);
  transform: translateY(-1px);
}
.gl-enforce-block > * { position: relative; z-index: 3; }
.gl-block-major { border-left: 4px solid var(--red); }
.gl-block-major:hover { border-left-color: #ff6e71; }
.gl-block-minor:hover { border-left-color: #fef08a; }
.gl-block-minor { border-left: 4px solid var(--yellow); }
.gl-block-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.02rem; font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}
.gl-block-icon {
  width: 20px; height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}
.gl-enforce-block p {
  color: var(--sub); font-size: .92rem; line-height: 1.65;
  margin-bottom: 12px;
}
.gl-rule-pills {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 12px;
}
.gl-rule-pills span {
  display: inline-block;
  padding: 4px 10px;
  background: var(--s3);
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: .78rem;
  font-family: ui-monospace, monospace;
  font-weight: 700;
  color: var(--text);
}
.gl-block-major .gl-rule-pills span {
  background: rgba(237,66,69,.10);
  border-color: rgba(237,66,69,.3);
  color: #f87171;
}
.gl-block-minor .gl-rule-pills span {
  background: rgba(254,231,92,.10);
  border-color: rgba(254,231,92,.3);
  color: #fde68a;
}
.gl-note {
  font-size: .86rem !important;
  color: var(--sub);
  margin: 0 !important;
  padding: 8px 12px;
  background: rgba(255,255,255,.02);
  border-left: 2px solid var(--border);
  border-radius: 4px;
}
.gl-note strong { color: var(--text); }
.gl-context-note {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 16px 18px;
  background: var(--accentlo);
  border: 1px solid var(--accentbr);
  border-radius: 11px;
  font-size: .9rem; line-height: 1.6;
  color: var(--text);
  margin-top: 18px;
}

/* Final verdict */
.gl-verdict {
  margin-top: 30px;
  background: linear-gradient(135deg, rgba(87,242,135,.10), rgba(20,21,26,.55));
  border-color: rgba(87,242,135,.3) !important;
  border-left: 4px solid var(--green) !important;
}
.gl-verdict-head {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.02rem;
  margin-bottom: 8px;
}
.gl-verdict p { color: var(--sub); font-size: .92rem; margin-top: 6px; }
.gl-fine {
  font-size: .82rem !important;
  color: var(--dim) !important;
  margin-top: 12px !important;
}

/* ─── Ticket Guidelines extras ─────────────────────────────────── */
.gl-block-icon-emoji {
  display: inline-grid; place-items: center;
  width: 20px; height: 20px; flex-shrink: 0;
  font-size: 18px; line-height: 1;
}
.tg-rule { border-left: 4px solid var(--accent); }
.tg-rule p { color: var(--sub); font-size: .92rem; line-height: 1.6; margin-bottom: 0; }

/* Claim requirement list */
.tg-req-list {
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 24px;
}
.tg-req-indicator {
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-radius: 13px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: transform .35s cubic-bezier(.4,0,.2,1),
              width     .35s cubic-bezier(.4,0,.2,1),
              height    .35s cubic-bezier(.4,0,.2,1),
              opacity   .25s ease;
}
.tg-req {
  position: relative;
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px 20px;
  background: rgba(0,0,0,.25);
  border: 1px solid var(--border);
  border-radius: 11px;
  font-size: .95rem;
  line-height: 1.6;
}
.tg-req > * { position: relative; z-index: 3; }
.tg-pin {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px;
  background: var(--accentlo);
  border: 1px solid var(--accentbr);
  border-radius: 8px;
  font-size: 14px;
  flex-shrink: 0;
}
.tg-pin img {
  width: 18px; height: 18px;
  object-fit: contain;
}

/* Inline emoji used in body text — sits on the baseline like a normal glyph */
.inline-emoji {
  width: 1.1em; height: 1.1em;
  vertical-align: -0.22em;
  object-fit: contain;
  display: inline-block;
}
.tg-req-body strong { color: var(--text); }
.tg-req-links {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 10px;
}
.tg-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: var(--accentlo);
  color: var(--accent);
  border: 1px solid var(--accentbr);
  border-radius: 999px;
  font-size: .85rem; font-weight: 600;
  transition: background .18s, border-color .18s, transform .18s;
}
.tg-link-icon {
  width: 22px; height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}
.tg-link:hover {
  background: rgba(88,101,242,.22);
  border-color: rgba(88,101,242,.55);
  transform: translateY(-1px);
}
.tg-req-alt {
  background: rgba(88,101,242,.06);
  border-color: rgba(88,101,242,.2);
  font-size: .88rem;
  color: var(--sub);
}
.tg-req-alt strong { color: var(--text); }

/* Fine print rules with arrow icons */
.tg-fine-rules {
  position: relative;
  display: flex; flex-direction: column; gap: 6px;
  padding: 14px 16px;
  background: rgba(0,0,0,.18);
  border-left: 2px solid var(--border);
  border-radius: 4px;
  margin-bottom: 16px;
}
.tg-fine-indicator {
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: transform .35s cubic-bezier(.4,0,.2,1),
              width     .35s cubic-bezier(.4,0,.2,1),
              height    .35s cubic-bezier(.4,0,.2,1),
              opacity   .25s ease;
}
.tg-fine {
  position: relative;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 6px;
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .88rem;
  color: var(--sub);
  line-height: 1.6;
}
.tg-fine strong { color: var(--text); }
.tg-arrow {
  width: 16px; height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ─── TERMS / PRIVACY ──────────────────────────────────────────── */
.tos-notice {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 18px;
  background: rgba(87,242,135,.08);
  border: 1px solid rgba(87,242,135,.25);
  border-left: 4px solid var(--green);
  border-radius: 11px;
  margin-bottom: 26px;
  font-size: .9rem; line-height: 1.6;
}
.tos-icon { width: 22px; height: 22px; object-fit: contain; flex-shrink: 0; margin-top: 2px; }

.rule-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rules-indicator {
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: transform .35s cubic-bezier(.4,0,.2,1),
              width     .35s cubic-bezier(.4,0,.2,1),
              height    .35s cubic-bezier(.4,0,.2,1),
              opacity   .25s ease;
}
.rule-item, .priv-block {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(0,0,0,.25);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.rule-item > *, .priv-block > * { position: relative; z-index: 3; }
.rule-num {
  flex-shrink: 0;
  display: inline-block;
  padding: 5px 11px;
  height: fit-content;
  font-family: ui-monospace, monospace;
  font-size: .82rem; font-weight: 700;
  color: var(--accent);
  background: var(--accentlo);
  border: 1px solid var(--accentbr);
  border-radius: 7px;
}
.rule-body { flex: 1; }
.rule-title {
  font-size: 1rem; font-weight: 800;
  margin-bottom: 6px;
}
.rule-text { color: var(--sub); font-size: .9rem; line-height: 1.65; }
.rule-text ul { padding-left: 22px; margin-top: 6px; }
.rule-text li { margin-bottom: 4px; }
.rule-sep { display: none; }

/* ─── Footer ───────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.3);
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: .85rem;
  color: var(--sub);
}
.foot-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; position: relative; }
.foot-links a { color: var(--sub); transition: color .15s; }
.foot-links a:hover { color: var(--text); }

.foot-disclaimer {
  width: 100%;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .76rem;
  color: var(--dim);
  line-height: 1.55;
  text-align: center;
}
.foot-disclaimer strong { color: var(--sub); font-weight: 600; }
.foot-disclaimer-link {
  color: var(--accent);
  font-weight: 600;
  margin-left: 4px;
  transition: color .15s;
}
.foot-disclaimer-link:hover { color: #7c8af5; text-decoration: underline; }

/* ─── Scroll reveal ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

::selection { background: var(--accentbr); color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   ROLE INFORMATION PAGE
═══════════════════════════════════════════════════════════════ */
.role-section {
  margin: 36px 0;
  padding: 26px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
  border: 1px solid var(--border);
  border-radius: 16px;
}
.role-section-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 6px;
}
.role-section-emoji {
  font-size: 22px;
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--accentlo);
  border: 1px solid var(--accentbr);
  border-radius: 10px;
}
.role-section-emoji-img {
  object-fit: contain;
  padding: 6px;
}
.role-section-head h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  margin: 0;
}
.role-section-sub {
  color: var(--sub);
  font-size: .92rem;
  margin: 0 0 18px 48px;
}

.role-list {
  position: relative;
  display: flex; flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  background: rgba(0,0,0,.22);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.role-indicator {
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: transform .35s cubic-bezier(.4,0,.2,1),
              width     .35s cubic-bezier(.4,0,.2,1),
              height    .35s cubic-bezier(.4,0,.2,1),
              opacity   .25s ease;
}
.role-item {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--sub);
  flex-wrap: wrap;
}
.role-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 6px 4px;
}
.role-arrow {
  color: var(--dim);
  font-weight: 700;
  flex-shrink: 0;
}
.role-desc { color: var(--text); flex: 1; min-width: 200px; }
.role-desc strong { color: var(--text); font-weight: 700; }
.role-desc em.role-fine {
  font-style: italic;
  color: var(--dim);
  font-size: .85rem;
}
.role-link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px dashed var(--accentbr);
  transition: color .18s, border-color .18s;
}
.role-link:hover { color: #7c8af5; border-color: var(--accent); }

/* Role pill — Discord-style mention chip */
.role-pill {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  background: var(--accentlo);
  color: var(--accent);
  border: 1px solid var(--accentbr);
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .18s, transform .18s;
}
.role-pill:hover { background: rgba(88,101,242,.22); }

/* Role pill color variants */
.role-pill-blue   { background: rgba(59,165,255,.10);  color: #7cc3ff; border-color: rgba(59,165,255,.30); }
.role-pill-pink   { background: rgba(235,69,158,.10);  color: #f48fc7; border-color: rgba(235,69,158,.30); }
.role-pill-green  { background: rgba(87,242,135,.10);  color: #8af1aa; border-color: rgba(87,242,135,.30); }
.role-pill-purple { background: rgba(180,120,255,.10); color: #c8a4ff; border-color: rgba(180,120,255,.30); }
.role-pill-red    { background: rgba(237,66,69,.10);   color: #f48a8c; border-color: rgba(237,66,69,.30); }
.role-pill-gold   { background: rgba(254,215,92,.10);  color: #fde68a; border-color: rgba(254,215,92,.30); }
.role-pill-grey   { background: rgba(160,160,170,.10); color: #b8b8c2; border-color: rgba(160,160,170,.30); }
.role-pill-mod    { background: rgba(87,242,135,.10);  color: #8af1aa; border-color: rgba(87,242,135,.30); }
.role-pill-admin  { background: rgba(235,69,158,.10);  color: #f48fc7; border-color: rgba(235,69,158,.30); }
.role-pill-founder{
  background: linear-gradient(90deg, rgba(254,215,92,.14), rgba(235,69,158,.14));
  color: #fde68a;
  border-color: rgba(254,215,92,.45);
}

.role-emoji {
  width: 22px; height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}
.role-mention {
  display: inline-block;
  padding: 1px 6px;
  background: var(--accentlo);
  border: 1px solid var(--accentbr);
  border-radius: 5px;
  color: var(--accent);
  font-weight: 600;
  font-size: .85em;
}

.role-list-mod .role-item { padding: 10px 12px; }

@media (max-width: 640px) {
  .role-section { padding: 20px; }
  .role-section-sub { margin-left: 0; }
  .role-item { font-size: .88rem; }
  .role-desc { min-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════
   REWARD GUIDELINES PAGE
═══════════════════════════════════════════════════════════════ */
.faq-list {
  position: relative;
  display: flex; flex-direction: column;
  gap: 10px;
}
.faq-indicator {
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: transform .35s cubic-bezier(.4,0,.2,1),
              width     .35s cubic-bezier(.4,0,.2,1),
              height    .35s cubic-bezier(.4,0,.2,1),
              opacity   .25s ease;
}
.faq-item {
  position: relative;
  z-index: 2;
  padding: 16px 18px;
  background: rgba(0,0,0,.25);
  border: 1px solid var(--border);
  border-radius: 11px;
}
.faq-q {
  font-weight: 700;
  color: var(--text);
  font-size: .98rem;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
.faq-q::before {
  content: "Q";
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  background: var(--accentlo);
  border: 1px solid var(--accentbr);
  border-radius: 6px;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.faq-a {
  color: var(--sub);
  font-size: .92rem;
  line-height: 1.6;
  padding-left: 30px;
}
.faq-a strong { color: var(--text); }

/* Support & Claim time cards */
.reward-times {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}
.reward-time-card {
  padding: 16px 18px;
  background: rgba(0,0,0,.25);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.reward-time-open { border-left: 4px solid var(--green); }
.reward-time-limited { border-left: 4px solid var(--yellow); }
.reward-time-label {
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}
.reward-time-open .reward-time-label { color: #8af1aa; }
.reward-time-limited .reward-time-label { color: #fde68a; }
.reward-time-list {
  display: flex; flex-direction: column;
  gap: 6px;
}
.reward-time-list span {
  font-size: .9rem;
  color: var(--sub);
  padding-left: 14px;
  position: relative;
}
.reward-time-list span::before {
  content: "•";
  position: absolute; left: 0;
  color: var(--dim);
}
.reward-time-hours {
  margin-top: 12px;
  padding: 8px 12px;
  background: rgba(254,231,92,.08);
  border: 1px solid rgba(254,231,92,.25);
  border-radius: 7px;
  font-size: .9rem;
  color: #fde68a;
  text-align: center;
  letter-spacing: .02em;
}
.reward-note {
  font-size: .9rem;
  color: var(--sub);
  line-height: 1.6;
  margin: 14px 0 0;
}
.reward-note strong { color: var(--text); }
.reward-fine {
  font-size: .82rem;
  color: var(--dim);
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(255,255,255,.02);
  border-left: 2px solid var(--border);
  border-radius: 4px;
  line-height: 1.6;
}
.reward-fine strong { color: var(--sub); }

/* Warnings system */
.warn-list {
  position: relative;
  display: flex; flex-direction: column;
  gap: 10px;
}
.warn-indicator {
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: transform .35s cubic-bezier(.4,0,.2,1),
              width     .35s cubic-bezier(.4,0,.2,1),
              height    .35s cubic-bezier(.4,0,.2,1),
              opacity   .25s ease;
}
.warn-item {
  position: relative;
  z-index: 2;
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: rgba(0,0,0,.25);
  border: 1px solid var(--border);
  border-radius: 11px;
  flex-wrap: wrap;
}
.warn-1 { border-left: 4px solid var(--yellow); }
.warn-2 { border-left: 4px solid #f59e0b; }
.warn-3 { border-left: 4px solid #f97316; }
.warn-4 { border-left: 4px solid var(--red); }
.warn-badge {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  border-radius: 8px;
  font-family: ui-monospace, monospace;
  font-weight: 800;
  font-size: .85rem;
  flex-shrink: 0;
  letter-spacing: .02em;
}
.warn-1 .warn-badge { background: rgba(254,231,92,.12); color: #fde68a; border: 1px solid rgba(254,231,92,.35); }
.warn-2 .warn-badge { background: rgba(245,158,11,.12); color: #fbbf24; border: 1px solid rgba(245,158,11,.40); }
.warn-3 .warn-badge { background: rgba(249,115,22,.12); color: #fb923c; border: 1px solid rgba(249,115,22,.40); }
.warn-4 .warn-badge { background: rgba(237,66,69,.12); color: #f87171; border: 1px solid rgba(237,66,69,.40); }
.warn-desc {
  color: var(--text);
  font-size: .92rem;
  line-height: 1.55;
  flex: 1;
  min-width: 200px;
}
.warn-desc strong { color: var(--text); font-weight: 700; }

@media (max-width: 640px) {
  .faq-a { padding-left: 0; }
  .reward-times { grid-template-columns: 1fr; }
}
