/* Shared theme for all pages. */
:root {
  color-scheme: dark;
  --bg: #0a0b10;
  --panel: #151825;
  --panel-2: #0f1220;
  --border: #262a3a;
  --text: #f2f6ff;
  --muted: #9ea7bd;
  --accent: #6ff0c8;
  --accent-2: #6ea3ff;
  --accent-3: #f3b562;
  --warn: #ff6b6b;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  --glow: 0 0 0 1px rgba(111, 240, 200, 0.12), 0 10px 30px rgba(101, 163, 255, 0.12);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 140ms;
  --dur-med: 220ms;
}

[data-theme="ocean"] {
  --bg: #06111c;
  --panel: #0c1f2e;
  --panel-2: #071722;
  --border: #1a3548;
  --text: #e7f4ff;
  --muted: #8aa6bf;
  --accent: #6fe7ff;
  --accent-2: #4fa3ff;
  --accent-3: #7ad4c1;
  --warn: #ff7a7a;
}

[data-theme="ember"] {
  --bg: #120909;
  --panel: #1c0f12;
  --panel-2: #140b0e;
  --border: #2c1518;
  --text: #ffe9e1;
  --muted: #c7a39a;
  --accent: #ffb26b;
  --accent-2: #ff7b7b;
  --accent-3: #ffc28f;
  --warn: #ff6b6b;
}

[data-theme="mono"] {
  --bg: #0c0f12;
  --panel: #14181d;
  --panel-2: #0f1317;
  --border: #242a31;
  --text: #f4f6f9;
  --muted: #9aa3ad;
  --accent: #cbd5e1;
  --accent-2: #94a3b8;
  --accent-3: #e2e8f0;
  --warn: #ff6b6b;
}

[data-theme="neon"] {
  --bg: #0a0712;
  --panel: #160f24;
  --panel-2: #100b1a;
  --border: #2b1a43;
  --text: #f7ecff;
  --muted: #b39ccf;
  --accent: #b5ff6f;
  --accent-2: #7d6bff;
  --accent-3: #ff7ad6;
  --warn: #ff6b6b;
}

[data-theme="forest"] {
  --bg: #08110b;
  --panel: #0f1b13;
  --panel-2: #0b1510;
  --border: #1f2d24;
  --text: #e7f7ee;
  --muted: #9bb7a7;
  --accent: #7affb2;
  --accent-2: #66d19a;
  --accent-3: #9be870;
  --warn: #ff6b6b;
}

[data-theme="dusk"] {
  --bg: #0b0b18;
  --panel: #14162a;
  --panel-2: #0f1122;
  --border: #25284a;
  --text: #e9ebff;
  --muted: #a2a8d4;
  --accent: #7aa2ff;
  --accent-2: #c07bff;
  --accent-3: #ffb3c7;
  --warn: #ff6b6b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(110, 163, 255, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 5%, rgba(111, 240, 200, 0.16) 0%, transparent 40%),
    radial-gradient(circle at 20% 85%, rgba(243, 181, 98, 0.12) 0%, transparent 45%),
    linear-gradient(180deg, #0b0d14 0%, var(--bg) 60%);
  min-height: 100vh;
}

a {
  color: inherit;
}

a,
button,
input,
select,
textarea {
  transition: color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease), box-shadow var(--dur-med) var(--ease-soft),
    transform var(--dur-fast) var(--ease);
}

.card,
.side-card,
.admin-card,
.chart-card,
.session-row {
  transition: box-shadow var(--dur-med) var(--ease-soft),
    border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.card:hover,
.side-card:hover,
.admin-card:hover,
.chart-card:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 163, 255, 0.35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(110, 163, 255, 0.12);
}

.btn:hover,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  box-shadow: 0 0 0 2px rgba(111, 240, 200, 0.18);
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.theme-option {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(110, 163, 255, 0.2);
  background: rgba(10, 14, 24, 0.6);
  cursor: pointer;
}

.theme-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.theme-option.active {
  border-color: rgba(111, 240, 200, 0.5);
  box-shadow: 0 0 0 1px rgba(111, 240, 200, 0.12), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.theme-option:focus-within {
  border-color: rgba(111, 240, 200, 0.65);
  box-shadow: 0 0 0 2px rgba(111, 240, 200, 0.2);
}

.theme-swatch {
  width: 44px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.theme-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.theme-default {
  background: linear-gradient(135deg, #0a0b10, #151825, #6ea3ff);
}

.theme-ocean {
  background: linear-gradient(135deg, #06111c, #0c1f2e, #6fe7ff);
}

.theme-ember {
  background: linear-gradient(135deg, #120909, #1c0f12, #ffb26b);
}

.theme-mono {
  background: linear-gradient(135deg, #0c0f12, #14181d, #cbd5e1);
}

.theme-neon {
  background: linear-gradient(135deg, #0a0712, #160f24, #b5ff6f);
}

.theme-forest {
  background: linear-gradient(135deg, #08110b, #0f1b13, #7affb2);
}

.theme-dusk {
  background: linear-gradient(135deg, #0b0b18, #14162a, #c07bff);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

main,
.main,
.content {
  display: grid;
  gap: 20px;
}

.main {
  position: relative;
}

.wrap {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 56px;
  align-items: start;
}

main.wrap {
  display: grid !important;
  grid-template-columns: 260px minmax(0, 1fr) !important;
}

.wrap > .main,
.wrap > .content {
  grid-column: 2;
}

.sidebar {
  display: grid;
  gap: 16px;
  align-content: start;
  position: sticky;
  top: 24px;
  height: fit-content;
  grid-column: 1;
}

.sidebar-toggle {
  display: none;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(18, 22, 34, 0.95), rgba(13, 16, 25, 0.95));
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.sidebar-content {
  display: grid;
  gap: 16px;
}

.side-card {
  background: linear-gradient(180deg, rgba(21, 24, 37, 0.9), rgba(15, 18, 32, 0.9));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.side-title {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.side-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-list a {
  background: linear-gradient(180deg, rgba(16, 18, 32, 0.9), rgba(12, 14, 24, 0.9));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-med) var(--ease-soft),
    border-color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
  text-decoration: none;
}

.side-list a:hover {
  border-color: rgba(110, 163, 255, 0.6);
  background: rgba(16, 20, 32, 0.95);
  transform: translateX(4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(110, 163, 255, 0.14);
}

.side-list a.active {
  border-color: rgba(111, 240, 200, 0.55);
  box-shadow: var(--glow);
}

.side-list span {
  color: var(--muted);
  font-size: 0.85rem;
}

.side-list .disabled {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
  cursor: not-allowed;
  opacity: 0.7;
  text-decoration: none;
}

.progress {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.progress li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(17, 20, 27, 0.9), rgba(12, 14, 20, 0.9));
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.3;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2d3242;
}

.progress .dot {
  margin-top: 3px;
}

.dot.active {
  background: var(--accent);
}

.hero {
  background:
    linear-gradient(140deg, rgba(16, 19, 28, 0.99) 0%, rgba(8, 10, 16, 0.99) 70%),
    radial-gradient(circle at 10% 0%, rgba(111, 240, 200, 0.1), transparent 45%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(110, 163, 255, 0.1), transparent 50%);
  pointer-events: none;
}

.hero-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero h1,
.page-title {
  font-family: "Space Grotesk", "Sora", sans-serif;
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  letter-spacing: 0.01em;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(28, 32, 40, 0.8);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.pill.open {
  background: rgba(111, 240, 200, 0.12);
  color: var(--accent);
  border-color: rgba(111, 240, 200, 0.35);
}

.pill.closed {
  background: rgba(255, 107, 107, 0.12);
  color: #ffb3b3;
  border-color: rgba(255, 107, 107, 0.35);
}

.summary {
  background: linear-gradient(180deg, rgba(21, 25, 35, 0.9), rgba(14, 17, 27, 0.9));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.9rem;
  box-shadow: var(--glow);
}

.card {
  background: linear-gradient(180deg, rgba(21, 24, 37, 0.95), rgba(12, 14, 24, 0.95));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 163, 255, 0.3);
  box-shadow: var(--shadow), var(--glow);
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.card-title,
.section-title,
.rule-title {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card ul,
.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.card ul li::marker {
  color: var(--accent-2);
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.live-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.live-float {
  position: absolute;
  top: -82px;
  right: 0;
  width: min(340px, 100%);
  z-index: 3;
}

.hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 16px;
  align-items: stretch;
}

.hero-row .live-float {
  position: static;
  width: 100%;
  top: auto;
  right: auto;
}

.hero-row .hero {
  margin-right: 0;
}

.live-card {
  background:
    linear-gradient(140deg, rgba(16, 19, 28, 0.99) 0%, rgba(8, 10, 16, 0.99) 70%),
    radial-gradient(circle at 10% 0%, rgba(111, 240, 200, 0.1), transparent 45%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.live-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(110, 163, 255, 0.1), transparent 50%);
  pointer-events: none;
}

.live-card .card-head {
  align-items: center;
}

.live-card .card-title {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.live-card .mono {
  font-size: 0.85rem;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(10, 12, 20, 0.6);
}

.address-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 12px;
  background: rgba(28, 32, 40, 0.8);
  box-shadow: 0 0 0 1px rgba(110, 163, 255, 0.08);
}

.copy-btn {
  border: 0;
  background: transparent;
  color: var(--accent-2);
  padding: 0 6px;
  border-radius: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.copy-btn:hover {
  color: var(--accent);
  background: rgba(17, 29, 28, 0.35);
  transform: translateY(-1px);
}

.copy-btn.copied {
  color: var(--accent);
  background: rgba(17, 29, 28, 0.45);
}

.live-card .status-row {
  gap: 10px;
}

.live-card .status-block {
  min-width: 140px;
  padding: 10px 14px;
}

.live-card .stat {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.live-card .mini {
  line-height: 1.4;
}

.main > .hero {
  margin-right: clamp(0px, 22vw, 360px);
}

@media (max-width: 980px) {
  .wrap {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    grid-column: 1;
  }

  .sidebar-toggle {
    display: block;
  }

  .sidebar-content {
    display: none;
  }

  body.sidebar-open .sidebar-content {
    display: grid;
  }

  .wrap > .main,
  .wrap > .content {
    grid-column: 1;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-page .admin-side {
    position: static;
    width: 100%;
  }

  .admin-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .content-side {
    position: static;
  }

  .live-float {
    position: static;
    width: 100%;
  }

  .main > .hero {
    margin-right: 0;
  }

  .hero-row {
    grid-template-columns: 1fr;
  }

  .creator-page .rules-layout {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1100px) {
.creator-page .grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.creator-page .grid .card:last-child {
  grid-column: 1 / -1;
}

.creator-form-page .main {
  gap: 18px;
}

.creator-form-hero {
  border-radius: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(110, 163, 255, 0.2);
  background:
    radial-gradient(circle at 10% 10%, rgba(110, 163, 255, 0.2), transparent 45%),
    linear-gradient(135deg, rgba(16, 20, 36, 0.98), rgba(10, 14, 24, 0.98));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.creator-form-title {
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.creator-form-sub {
  color: var(--muted);
  margin-bottom: 12px;
}

.creator-form-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.creator-form-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(110, 163, 255, 0.16);
  background: rgba(12, 16, 26, 0.85);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.creator-form {
  display: grid;
  gap: 14px;
}

.creator-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.creator-form .form-grid > div:last-child {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .creator-form .form-grid {
    grid-template-columns: 1fr;
  }
}

.creator-page .main {
  gap: 20px;
}

.unban-page .main {
  gap: 18px;
}

.unban-hero {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid rgba(110, 163, 255, 0.2);
  background: linear-gradient(135deg, rgba(16, 20, 36, 0.98), rgba(10, 14, 24, 0.98));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 22px;
}

.unban-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(111, 240, 200, 0.2), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(110, 163, 255, 0.2), transparent 45%),
    radial-gradient(circle at 30% 85%, rgba(243, 181, 98, 0.18), transparent 45%);
  opacity: 0.9;
  pointer-events: none;
}

.unban-hero-main,
.unban-hero-side {
  position: relative;
  z-index: 1;
}

.unban-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(198, 214, 255, 0.75);
  margin-bottom: 10px;
}

.unban-title {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.unban-sub {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.unban-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.unban-hero-side {
  display: grid;
  gap: 12px;
}

.unban-card {
  background: linear-gradient(180deg, rgba(21, 24, 37, 0.92), rgba(12, 14, 24, 0.92));
  border: 1px solid rgba(110, 163, 255, 0.2);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.unban-form {
  display: grid;
  gap: 14px;
}

.unban-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.unban-form .form-grid .full {
  grid-column: 1 / -1;
}

.upload-card {
  position: relative;
  border: 1px dashed rgba(110, 163, 255, 0.35);
  border-radius: 14px;
  padding: 14px;
  background: rgba(10, 12, 20, 0.7);
  display: grid;
  gap: 8px;
}

.upload-card.upload-error {
  border-color: rgba(255, 107, 107, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 107, 107, 0.3);
}

.upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-drop {
  display: grid;
  gap: 6px;
  align-items: center;
  justify-items: center;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(16, 18, 32, 0.9), rgba(12, 14, 24, 0.9));
  border: 1px solid rgba(110, 163, 255, 0.25);
  text-align: center;
}

.upload-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(110, 163, 255, 0.15);
  border: 1px solid rgba(110, 163, 255, 0.3);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(214, 230, 255, 0.8);
}

.upload-text {
  font-weight: 600;
}

.upload-sub {
  font-size: 0.85rem;
  color: var(--muted);
}

.upload-filename {
  font-size: 0.85rem;
  color: var(--muted);
}

.ban-check {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(110, 163, 255, 0.2);
  background: rgba(16, 18, 32, 0.8);
  color: var(--muted);
  font-size: 0.9rem;
}

.ban-check.ok {
  border-color: rgba(111, 240, 200, 0.45);
  color: var(--accent);
  box-shadow: 0 0 0 1px rgba(111, 240, 200, 0.15);
}

.ban-check.bad {
  border-color: rgba(255, 107, 107, 0.55);
  color: #ffb3b3;
  box-shadow: 0 0 0 1px rgba(255, 107, 107, 0.2);
}

.ban-check.pending {
  border-color: rgba(243, 181, 98, 0.55);
  color: var(--accent-3);
}

.unban-list {
  display: grid;
  gap: 14px;
}

.unban-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(110, 163, 255, 0.18);
  background: linear-gradient(180deg, rgba(14, 18, 30, 0.9), rgba(10, 12, 20, 0.9));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.unban-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.unban-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.unban-line {
  color: var(--muted);
  font-size: 0.9rem;
}

.unban-reason {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(110, 163, 255, 0.18);
  background: rgba(12, 14, 24, 0.75);
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.45;
}

.unban-actions {
  display: grid;
  gap: 8px;
  align-content: center;
  min-width: 160px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  border: 1px solid rgba(110, 163, 255, 0.2);
  background: rgba(16, 18, 32, 0.8);
  color: var(--muted);
}

.badge.status-ok {
  border-color: rgba(111, 240, 200, 0.45);
  color: var(--accent);
}

.badge.status-bad {
  border-color: rgba(255, 107, 107, 0.55);
  color: #ffb3b3;
}

.badge.status-open {
  border-color: rgba(243, 181, 98, 0.55);
  color: var(--accent-3);
}

@media (max-width: 900px) {
  .unban-row {
    grid-template-columns: 1fr;
  }
  .unban-actions {
    min-width: 0;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .unban-hero {
    grid-template-columns: 1fr;
  }
  .unban-form .form-grid {
    grid-template-columns: 1fr;
  }
}

.creator-hero {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(110, 163, 255, 0.2);
  background: linear-gradient(135deg, rgba(16, 20, 36, 0.98), rgba(10, 14, 24, 0.98));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 24px;
}

.creator-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(111, 240, 200, 0.18), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(110, 163, 255, 0.22), transparent 50%),
    radial-gradient(circle at 30% 85%, rgba(243, 181, 98, 0.18), transparent 45%);
  opacity: 0.9;
  pointer-events: none;
}

.creator-hero-main,
.creator-hero-side {
  position: relative;
  z-index: 1;
}

.creator-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(198, 214, 255, 0.75);
  margin-bottom: 10px;
}

.creator-title {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.creator-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.creator-intro {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.creator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.creator-hero-side {
  display: grid;
  gap: 14px;
}

.hero-stat {
  background: rgba(10, 14, 24, 0.75);
  border: 1px solid rgba(110, 163, 255, 0.2);
  border-radius: 16px;
  padding: 16px 18px;
}

.hero-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(198, 214, 255, 0.7);
  margin-bottom: 6px;
}

.hero-stat-value {
  font-weight: 700;
  font-size: 1.05rem;
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.creator-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(110, 163, 255, 0.16);
  background: rgba(12, 16, 26, 0.85);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.creator-card .card-title {
  margin-bottom: 10px;
}

.creator-card.wide {
  grid-column: 1 / -1;
}

.creator-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.creator-list li {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(10, 14, 24, 0.55);
  border: 1px solid rgba(110, 163, 255, 0.12);
}

.creator-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.creator-tags .tag {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(110, 163, 255, 0.2);
  background: rgba(12, 16, 26, 0.7);
  font-weight: 600;
}

.creator-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.creator-steps-wrap {
  display: grid;
  gap: 10px;
}

.creator-steps-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #e7edff;
}

.creator-step {
  border-radius: 18px;
  padding: 18px;
  background: rgba(10, 14, 24, 0.75);
  border: 1px solid rgba(110, 163, 255, 0.18);
}

.step-number {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(111, 240, 200, 0.85);
  margin-bottom: 8px;
}

.step-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.step-text {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .creator-hero {
    grid-template-columns: 1fr;
  }
  .creator-grid {
    grid-template-columns: 1fr;
  }
  .creator-steps {
    grid-template-columns: 1fr;
  }
}
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.status-block {
  background: linear-gradient(180deg, rgba(18, 22, 34, 0.95), rgba(13, 16, 25, 0.95));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
  min-width: 120px;
  display: grid;
  gap: 4px;
}

.label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.stat {
  font-size: 1.1rem;
  font-weight: 600;
}

.mono {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  font-size: 0.95rem;
}

.discord-embed {
  display: grid;
  place-items: center;
  min-height: 260px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(18, 22, 34, 0.95), rgba(13, 16, 25, 0.95));
  overflow: hidden;
}

.discord-embed iframe {
  border: 0;
  display: block;
}

.rules-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
}

.creator-page {
  background:
    radial-gradient(circle at 20% 12%, rgba(111, 240, 200, 0.12), transparent 40%),
    radial-gradient(circle at 80% 8%, rgba(110, 163, 255, 0.16), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(243, 181, 98, 0.1), transparent 45%),
    linear-gradient(180deg, #0b0d14 0%, var(--bg) 60%);
}

.creator-page .rules-layout {
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 20px;
}

.creator-page .grid {
  gap: 18px;
}

.creator-page .rules-stack .card {
  border-radius: 18px;
}

.creator-page .rules-stack .card-title {
  font-size: 1rem;
}

.creator-page .rules-stack .card ul {
  gap: 8px;
}

.creator-page .hero {
  padding: 24px 28px;
  border-radius: 22px;
  border-color: rgba(110, 163, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(18, 22, 34, 0.98), rgba(12, 16, 26, 0.98));
  box-shadow: 0 16px 40px rgba(6, 10, 20, 0.35);
}

.creator-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(111, 240, 200, 0.2), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(110, 163, 255, 0.18), transparent 50%);
  opacity: 0.35;
  pointer-events: none;
}

.creator-page .hero::after {
  background: radial-gradient(circle at 85% 10%, rgba(111, 240, 200, 0.12), transparent 55%);
  opacity: 0.45;
}

.creator-page .hero-top {
  gap: 16px;
}

.creator-page .hero h1 {
  letter-spacing: 0.02em;
}

.creator-page .hero-meta .chip {
  background: rgba(16, 20, 30, 0.6);
  border-color: rgba(110, 163, 255, 0.18);
  color: #dbe4f2;
}

.creator-page .pill {
  border-color: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.creator-page .pill.open {
  box-shadow: inset 0 0 0 1px rgba(111, 240, 200, 0.25);
}

.creator-page .pill.closed {
  box-shadow: inset 0 0 0 1px rgba(255, 107, 107, 0.25);
}

.creator-page .summary {
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 0.95rem;
  color: #c9d3e6;
  background: rgba(15, 19, 29, 0.85);
  border: 1px solid rgba(45, 55, 78, 0.6);
  box-shadow: none;
}

.creator-page .verify-btn {
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 0.94rem;
  letter-spacing: 0;
  background: linear-gradient(135deg, #7fe7d1, #7aa7ff);
  box-shadow: 0 10px 22px rgba(111, 240, 200, 0.18);
}

.creator-page .card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(14, 18, 28, 0.92);
  border-color: rgba(45, 55, 78, 0.6);
  box-shadow: 0 12px 24px rgba(5, 8, 14, 0.28);
}

.creator-page .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(110, 163, 255, 0.65), rgba(111, 240, 200, 0.2));
  opacity: 0.35;
}

.creator-page .card:hover {
  transform: translateY(-1px);
  border-color: rgba(110, 163, 255, 0.3);
  box-shadow: 0 14px 28px rgba(7, 12, 20, 0.35);
}

.creator-page .card-title {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  position: relative;
}

.creator-page .card-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(110, 163, 255, 0.8), rgba(111, 240, 200, 0.2));
  opacity: 0.45;
}

.creator-page .card ul {
  list-style: none;
  padding-left: 0;
  gap: 10px;
  margin-top: 6px;
}

.creator-page .card ul li {
  position: relative;
  padding-left: 18px;
}

.creator-page .card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(110, 163, 255, 0.85);
  box-shadow: 0 0 0 3px rgba(110, 163, 255, 0.12);
}

.creator-page .platforms span {
  border-color: rgba(110, 163, 255, 0.25);
  background: rgba(14, 18, 28, 0.9);
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.creator-page .platforms span:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.creator-page .card,
.creator-page .summary,
.creator-page .platforms span,
.creator-page .hero,
.creator-page .rules-stack .card {
  backdrop-filter: blur(6px);
}

.creator-page .platforms span {
  padding: 8px 14px;
  font-weight: 600;
}

.creator-page .card ul li {
  color: #b8c2d6;
}

.creator-page .rules-stack .card ul li {
  color: #aeb7cb;
}

.rules-stack {
  display: grid;
  gap: 16px;
  align-content: start;
}

.rules-page .card {
  padding: 16px 18px;
}

.rules-page .card-title,
.rules-page .rule-title {
  font-size: 1.05rem;
}

.rules-page .card ul {
  gap: 6px;
}

.rules-page .mini {
  line-height: 1.5;
}

.rules-page .link-chip {
  background: linear-gradient(180deg, rgba(21, 25, 35, 0.9), rgba(13, 16, 24, 0.9));
  border-color: rgba(110, 163, 255, 0.4);
}

.rules-page .link-chip:hover {
  border-color: rgba(110, 163, 255, 0.7);
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.platforms span {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(21, 25, 34, 0.9), rgba(13, 16, 24, 0.9));
  color: #d6deee;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.form {
  display: grid;
  gap: 12px;
}

label,
.field-label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  background: #101218;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  font-family: inherit;
}

input[readonly] {
  opacity: 0.75;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.field-grid {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-error {
  border-color: rgba(255, 107, 107, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 107, 107, 0.2);
}

.error-text {
  color: var(--warn);
  font-size: 0.85rem;
}

.status {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #11141b;
  color: var(--muted);
  font-size: 0.9rem;
}

.status.ok {
  color: var(--accent);
}

.status.error {
  color: var(--warn);
}

.status.big {
  font-size: 1.05rem;
  padding: 16px;
  text-align: center;
}

.status.slim {
  padding: 8px 10px;
  font-weight: 600;
}

.code-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #101521;
  border: 1px solid rgba(110, 163, 255, 0.35);
  color: #d6e3ff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.mc-notice {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(111, 240, 200, 0.12);
  flex: 0 0 auto;
}

.mc-panel {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background:
    radial-gradient(120% 140% at 10% 0%, rgba(110, 163, 255, 0.18), transparent 55%),
    radial-gradient(140% 140% at 100% 0%, rgba(111, 240, 200, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(18, 22, 32, 0.96), rgba(12, 16, 24, 0.98));
  box-shadow: 0 16px 40px rgba(10, 16, 30, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 12px;
}

.mc-code-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mc-code-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--muted);
}

.mc-code {
  padding: 8px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(15, 18, 26, 0.92), rgba(12, 16, 24, 0.98));
  border: 1px solid rgba(111, 240, 200, 0.35);
  color: var(--text);
  font-family: "Consolas", "SFMono-Regular", "Menlo", monospace;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 18px rgba(111, 240, 200, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.mc-meta {
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(12, 16, 24, 0.9);
  border: 1px solid rgba(110, 163, 255, 0.25);
}

.mc-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.mc-meta-row .expires-at {
  color: var(--text);
  font-weight: 600;
}

.mc-meta-row .countdown {
  color: #d6e3ff;
  font-weight: 600;
}

.actions,
.row,
.link-row,
.discord-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn,
.primary,
.secondary,
.ghost,
.apply-btn,
.verify-btn {
  border: none;
  color: #0a0c12;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  min-height: 38px;
}

.btn,
.primary,
.verify-btn,
.apply-btn {
  background: linear-gradient(135deg, #6ff0c8, #6ea3ff);
  box-shadow: 0 10px 30px rgba(111, 240, 200, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.primary:hover,
.verify-btn:hover,
.apply-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(111, 240, 200, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.btn.login,
.apply-btn.login {
  background: linear-gradient(135deg, #7f8cff, #6ea3ff);
  color: #0a0c12;
}

.apply-btn.disabled,
.btn.disabled {
  background: linear-gradient(135deg, rgba(148, 159, 186, 0.35), rgba(60, 70, 95, 0.35));
  color: #cbd2e6;
  border: 1px solid rgba(148, 159, 186, 0.35);
  box-shadow: none;
}

.secondary {
  background: linear-gradient(135deg, #1f2535, #1a2231);
  color: var(--text);
  border: 1px solid var(--border);
}

.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.note,
.mini,
.page-sub,
.meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.page-head {
  display: grid;
  gap: 6px;
}

.profile-card {
  display: grid;
  gap: 12px;
}

.profile-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--glow);
}

.app-list {
  display: grid;
  gap: 10px;
}

.app-row {
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #11141b;
}

.app-type {
  font-weight: 600;
}

.status-pill {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}

.phase-1 .status-dot { background: #6ea3ff; }
.phase-2 .status-dot { background: #6ff0c8; }
.phase-3 .status-dot { background: #f3b562; }
.phase-4 .status-dot { background: #ff8f8f; }

.accordion {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.accordion-toggle {
  width: 100%;
  text-align: left;
  background: #11141b;
  border: none;
  color: var(--text);
  padding: 12px 14px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  gap: 10px;
}

.accordion-toggle .card-title {
  flex: 1;
}

.accordion .card-title {
  font-size: 1rem;
}

.accordion .card-title::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  display: inline-block;
}

.chev {
  font-size: 1.1rem;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.details,
.history {
  display: grid;
  gap: 12px;
}

.verify {
  color: var(--accent);
  font-weight: 600;
}

.connected {
  color: #0a0c12;
  font-weight: 700;
  background: linear-gradient(135deg, #6ff0c8, #1fae6a);
  padding: 8px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(31, 174, 106, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.accordion-body {
  padding: 12px 14px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.accordion[aria-expanded="false"] .accordion-body {
  display: none;
}

.accordion[aria-expanded="false"] .chev {
  transform: rotate(-90deg);
}

.discord-row {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(17, 20, 27, 0.9), rgba(12, 14, 20, 0.9));
  justify-content: space-between;
}

.verify {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(110, 163, 255, 0.35);
  background: linear-gradient(180deg, rgba(16, 18, 28, 0.9), rgba(12, 14, 22, 0.95));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
}

button {
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
}

button[disabled],
.apply-btn[disabled],
.btn[disabled],
.primary[disabled],
.verify-btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  filter: grayscale(0.2);
}

.consent {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 999;
  display: grid;
  place-items: end;
}

.consent-hidden {
  display: none;
}

.consent-card {
  width: min(560px, 100%);
  background:
    radial-gradient(circle at 10% 0%, rgba(111, 240, 200, 0.14), transparent 45%),
    linear-gradient(180deg, rgba(18, 22, 34, 0.98), rgba(12, 16, 24, 0.98));
  border: 1px solid rgba(110, 163, 255, 0.35);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow), var(--glow);
  display: grid;
  gap: 10px;
}

.consent-title {
  font-weight: 600;
  font-size: 1rem;
}

.consent-text {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.consent-text a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(110, 163, 255, 0.5);
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.consent-card {
  padding: 18px 20px;
}

.consent-settings {
  display: grid;
  gap: 14px;
}

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(110, 163, 255, 0.2);
  background:
    radial-gradient(circle at 0% 0%, rgba(110, 163, 255, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(16, 20, 32, 0.95), rgba(12, 16, 24, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.consent-row:hover {
  border-color: rgba(110, 163, 255, 0.45);
  transform: translateY(-1px);
  box-shadow: var(--glow);
}

.consent-row.consent-required {
  border-color: rgba(111, 240, 200, 0.35);
}

.consent-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #0a0c12;
  background: linear-gradient(135deg, rgba(111, 240, 200, 0.9), rgba(110, 163, 255, 0.9));
  box-shadow: 0 6px 14px rgba(111, 240, 200, 0.2);
}

.consent-body {
  display: grid;
  gap: 4px;
}

.consent-label {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.consent-toggle {
  position: relative;
  width: 48px;
  height: 28px;
  display: grid;
  align-items: center;
  justify-items: end;
}

.consent-toggle input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.consent-toggle .toggle-track {
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: rgba(120, 130, 150, 0.25);
  border: 1px solid rgba(110, 163, 255, 0.35);
  position: relative;
  transition: background 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.consent-toggle .toggle-track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f2f6ff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.36s cubic-bezier(0.18, 0.9, 0.25, 1.2), background 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.consent-toggle input:checked + .toggle-track {
  background: linear-gradient(135deg, rgba(111, 240, 200, 0.9), rgba(110, 163, 255, 0.9));
  border-color: rgba(111, 240, 200, 0.6);
  box-shadow: 0 6px 18px rgba(111, 240, 200, 0.25);
}

.consent-toggle input:checked + .toggle-track::after {
  transform: translateX(20px);
  background: #0a0c12;
}

.consent-toggle input:disabled + .toggle-track {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 520px) {
  .consent-row {
    grid-template-columns: auto 1fr;
  }
  .consent-toggle {
    grid-column: 1 / -1;
    justify-self: end;
  }
}


.link-chip {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--muted);
  background: #151922;
}

.scenario-box,
.answer-box {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  background: #11141b;
}

.correct {
  border-color: rgba(111, 240, 200, 0.45);
  color: var(--accent);
}

.danger {
  border-color: rgba(255, 107, 107, 0.45);
  color: var(--warn);
}

.btn.danger {
  background: linear-gradient(135deg, #ff8f8f, #ff6b6b);
  color: #1c0b0b;
  box-shadow: 0 10px 24px rgba(255, 107, 107, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.btn.danger:hover {
  box-shadow: 0 14px 30px rgba(255, 107, 107, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.actions {
  align-items: center;
}

.actions form {
  margin: 0;
}

.actions .btn,
.actions .secondary,
.actions .danger {
  white-space: nowrap;
}

.session-list {
  display: grid;
  gap: 10px;
}

.session-row {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #11141b;
}

.session-row.active {
  border-color: rgba(111, 240, 200, 0.4);
  box-shadow: var(--glow);
}

.ip-value {
  filter: blur(6px);
  opacity: 0.7;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.session-row:hover .ip-value {
  filter: none;
  opacity: 1;
}

.session-meta {
  font-size: 0.82rem;
  color: var(--muted);
}

.status strong {
  color: var(--text);
}

.countdown {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.countdown.expired {
  color: var(--warn);
  font-weight: 600;
}

.access-page .access-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 56px 22px;
}

.access-card {
  width: min(520px, 100%);
  background:
    radial-gradient(circle at 12% 0%, rgba(110, 163, 255, 0.28), transparent 55%),
    linear-gradient(160deg, rgba(22, 26, 40, 0.98), rgba(10, 12, 20, 0.98));
  border: 1px solid rgba(110, 163, 255, 0.35);
  border-radius: 22px;
  padding: 28px 30px;
  box-shadow: var(--shadow), var(--glow);
  display: grid;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.access-card > * {
  position: relative;
  z-index: 1;
}

.access-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 10%, rgba(111, 240, 200, 0.18), transparent 55%);
  pointer-events: none;
}

.access-kicker {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--accent-2);
  font-weight: 700;
}

.access-card h1 {
  margin: 0;
  font-family: "Space Grotesk", "Sora", sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
}

.access-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.access-card .actions {
  margin-top: 12px;
}

.access-card .btn.login {
  min-width: 220px;
}

.admin-page .admin-wrap {
  gap: 18px;
  align-content: start;
  grid-auto-rows: min-content;
}

.admin-page .wrap {
  grid-template-columns: 240px minmax(0, 1fr);
}

.admin-page main.wrap {
  grid-template-columns: 240px minmax(0, 1fr) !important;
}

.admin-page .admin-wrap {
  grid-template-columns: 240px minmax(0, 1fr);
}

.admin-page .admin-side {
  grid-column: 1;
  position: sticky;
  top: 24px;
  align-self: start;
  width: 260px;
  z-index: 2;
}

.admin-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 22px 56px;
  align-items: start;
}

.admin-main {
  display: grid;
  gap: 16px;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
  padding: 16px 18px;
  border-radius: 16px;
  background:
    linear-gradient(140deg, rgba(18, 22, 32, 0.98) 0%, rgba(10, 12, 18, 0.98) 70%),
    radial-gradient(circle at 10% 0%, rgba(111, 240, 200, 0.12), transparent 45%);
  border: 1px solid rgba(110, 163, 255, 0.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.admin-topbar::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.admin-top-left {
  display: grid;
  gap: 6px;
}

.admin-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.admin-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-top-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.admin-view {
  display: grid;
  gap: 16px;
}

.admin-page .admin-side .side-card {
  background:
    radial-gradient(circle at 10% 0%, rgba(110, 163, 255, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(16, 20, 32, 0.98), rgba(12, 16, 24, 0.98));
  border: 1px solid rgba(110, 163, 255, 0.25);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35), var(--glow);
}

.admin-page .admin-side .side-title {
  color: #c6d6ff;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.admin-page .admin-side .side-list {
  gap: 6px;
}

.admin-page .admin-side .side-list a {
  border-radius: 12px;
  padding: 10px 14px;
  background: rgba(12, 16, 24, 0.85);
  border: 1px solid rgba(110, 163, 255, 0.2);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-med) var(--ease-soft),
    border-color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
}

.admin-page .admin-side .side-list a.active {
  border-color: rgba(111, 240, 200, 0.6);
  box-shadow: 0 0 0 1px rgba(111, 240, 200, 0.2), 0 10px 25px rgba(111, 240, 200, 0.12);
}

.admin-page .admin-side .side-list a:hover {
  border-color: rgba(110, 163, 255, 0.6);
  background: rgba(16, 20, 32, 0.95);
  transform: translateX(4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(110, 163, 255, 0.14);
}

.admin-page .admin-side .side-group {
  margin-top: 6px;
  padding: 4px 10px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(198, 214, 255, 0.6);
}

.admin-page .admin-side .side-divider {
  height: 1px;
  background: rgba(110, 163, 255, 0.16);
  margin: 4px 6px;
  border-radius: 999px;
}

.admin-page mark {
  background: rgba(111, 240, 200, 0.3);
  color: #e8fff6;
  padding: 0 3px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(111, 240, 200, 0.25);
}

.admin-page .admin-wrap > :not(.admin-side) {
  grid-column: 2;
  position: relative;
  z-index: 1;
}

.admin-view {
  display: grid;
  gap: 16px;
  align-content: start;
  margin-top: 0;
}

.content-admin {
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
}

.content-side {
  position: sticky;
  top: 24px;
  align-self: start;
}

.content-card {
  display: grid;
  gap: 12px;
}

.content-title {
  font-size: 1.4rem;
  font-weight: 700;
}

.content-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.content-actions-stack {
  display: grid;
  gap: 10px;
}

.content-actions-stack .btn {
  width: 100%;
  justify-content: center;
}

.content-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.content-nav a {
  font-size: 0.9rem;
}

.content-nav a:hover {
  border-color: rgba(110, 163, 255, 0.6);
  background: rgba(16, 20, 32, 0.95);
}

.content-nav a.active {
  border-color: rgba(111, 240, 200, 0.55);
  box-shadow: var(--glow);
}

.content-main {
  display: grid;
  gap: 16px;
}

.content-card-main {
  padding: 18px 20px;
}

.content-section {
  margin-top: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(110, 163, 255, 0.2);
  background: rgba(12, 16, 24, 0.75);
  display: grid;
  gap: 10px;
}

.content-section .section-title {
  margin: 0 0 6px 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cfe1ff;
}

.content-section textarea {
  min-height: 140px;
}

.content-save {
  justify-content: flex-end;
  margin-top: 8px;
}

.admin-section-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 2px 4px;
}

.admin-page .hero {
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(18, 22, 32, 0.9), rgba(12, 16, 24, 0.95));
  border: 1px solid var(--border);
}

.admin-page .hero .row {
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-page .hero .actions {
  flex-wrap: wrap;
  gap: 8px;
}

.admin-page .hero .chip {
  background: #121824;
  border: 1px solid rgba(110, 163, 255, 0.2);
  color: #d6e3ff;
}

.admin-card {
  padding: 16px;
}

.dot-panel {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, rgba(34, 150, 160, 0.18), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(86, 120, 255, 0.16), transparent 60%),
    linear-gradient(160deg, rgba(16, 18, 28, 0.95), rgba(10, 12, 18, 0.98));
  border: 1px solid rgba(120, 170, 255, 0.18);
  box-shadow: 0 24px 60px rgba(4, 8, 16, 0.65), 0 0 0 1px rgba(255, 220, 150, 0.06) inset;
}

.dot-casino {
  background: radial-gradient(circle at 20% 20%, rgba(255, 210, 140, 0.2), transparent 50%),
    radial-gradient(circle at 80% 10%, rgba(120, 255, 210, 0.18), transparent 55%),
    radial-gradient(circle at 60% 80%, rgba(120, 160, 255, 0.12), transparent 55%),
    linear-gradient(170deg, rgba(8, 10, 16, 0.98), rgba(18, 12, 22, 0.98));
  border: 1px solid rgba(255, 210, 140, 0.25);
}

.dot-casino::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 220, 150, 0.1);
  box-shadow: inset 0 0 40px rgba(255, 200, 120, 0.08);
  pointer-events: none;
}

.dot-panel::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(120deg, transparent 40%, rgba(120, 210, 255, 0.1), transparent 60%);
  animation: dot-scan 6s linear infinite;
  pointer-events: none;
}

.dot-panel::before {
  content: "";
  position: absolute;
  inset: -30% -10%;
  background: radial-gradient(circle, rgba(255, 220, 150, 0.12), transparent 55%);
  animation: dot-glow 8s ease-in-out infinite;
  pointer-events: none;
}

.dot-flash-win::before,
.dot-flash-lose::before,
.dot-flash-cashout::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  animation: dot-flash 0.8s ease-out 1;
  pointer-events: none;
  z-index: 2;
}

.dot-flash-win::before {
  background: radial-gradient(circle at 30% 20%, rgba(90, 255, 200, 0.5), transparent 55%);
}

.dot-flash-lose::before {
  background: radial-gradient(circle at 30% 20%, rgba(255, 90, 90, 0.5), transparent 55%);
}

.dot-flash-cashout::before {
  background: radial-gradient(circle at 30% 20%, rgba(255, 230, 120, 0.55), transparent 55%);
}

.dot-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  position: relative;
  z-index: 1;
}

.dot-screen {
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(12, 16, 26, 0.96), rgba(8, 10, 16, 0.96));
  border: 1px solid rgba(255, 210, 140, 0.18);
  box-shadow: inset 0 0 18px rgba(255, 200, 120, 0.12), 0 12px 28px rgba(6, 8, 14, 0.5);
  position: relative;
  overflow: hidden;
}

.dot-screen::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 220, 150, 0.12);
  pointer-events: none;
}

.dot-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(210, 235, 255, 0.65);
}

.dot-marquee {
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 140, 0.38);
  background: linear-gradient(90deg, rgba(18, 14, 20, 0.98), rgba(10, 8, 12, 0.98));
  padding: 6px 10px;
  margin-bottom: 12px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 235, 190, 0.8);
}

.dot-marquee span {
  display: inline-block;
  white-space: nowrap;
  animation: dot-marquee 10s linear infinite;
}

.dot-amount {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  margin: 10px 0 12px;
  color: #7df1d4;
  text-shadow: 0 0 18px rgba(124, 245, 214, 0.35), 0 0 30px rgba(255, 210, 140, 0.15);
  animation: dot-pulse 2.2s ease-in-out infinite;
}

.dot-amount::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 10px;
  width: 55%;
  background: linear-gradient(90deg, rgba(125, 241, 212, 0.6), rgba(255, 210, 140, 0));
}

.dot-odds {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 235, 200, 0.78);
  font-size: 0.8rem;
}

.dot-odds-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.dot-odds-bar i {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #74ffd7, #ffd37a, #ff9adf);
  animation: dot-odds-scan 2.4s ease-in-out infinite;
}

.dot-flash-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease;
  margin-bottom: 10px;
}

.dot-flash-win .dot-flash-text,
.dot-flash-lose .dot-flash-text,
.dot-flash-cashout .dot-flash-text {
  opacity: 1;
  animation: dot-pop 0.7s ease-out 1;
}

.dot-flash-win .dot-amount {
  color: #8bffd5;
}

.dot-flash-lose .dot-amount {
  color: #ff8b8b;
}

.dot-flash-cashout .dot-amount {
  color: #ffe08b;
}

.dot-flash-cashout .dot-screen::after {
  content: "";
  position: absolute;
  inset: -10% -20%;
  background:
    radial-gradient(circle, rgba(255, 230, 140, 0.45) 0 12%, transparent 12.5%),
    radial-gradient(circle, rgba(100, 220, 255, 0.45) 0 10%, transparent 10.5%),
    radial-gradient(circle, rgba(255, 160, 220, 0.45) 0 8%, transparent 8.5%);
  background-size: 120px 120px, 140px 140px, 100px 100px;
  animation: dot-confetti 1.1s ease-out 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
}

.dot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dot-tag {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(18, 22, 32, 0.85);
  border: 1px solid rgba(255, 210, 140, 0.2);
  color: rgba(230, 240, 255, 0.9);
}

.dot-tag.is-on {
  background: rgba(40, 220, 160, 0.2);
  border-color: rgba(80, 255, 190, 0.4);
  color: #a2ffe3;
}

.dot-tag.is-off {
  background: rgba(220, 90, 90, 0.12);
  border-color: rgba(255, 120, 120, 0.35);
  color: #ffb1b1;
}

.dot-hint {
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(190, 205, 230, 0.75);
}

.dot-wheel {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.75;
}

.dot-wheel-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255, 210, 140, 0.65);
  box-shadow: 0 0 28px rgba(255, 210, 140, 0.28);
  animation: dot-wheel-spin 6s linear infinite;
}

.dot-wheel-core {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(120, 255, 210, 0.55), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(255, 200, 120, 0.5), transparent 55%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: dot-core-pulse 2.2s ease-in-out infinite;
}

.dot-controls {
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(14, 16, 24, 0.96), rgba(8, 10, 16, 0.96));
  border: 1px solid rgba(255, 210, 140, 0.18);
}

.dot-form {
  display: grid;
  gap: 12px;
}

.dot-notify {
  min-height: 24px;
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(10, 14, 20, 0.6);
  border: 1px solid rgba(120, 170, 255, 0.18);
  color: rgba(220, 235, 255, 0.9);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dot-notify.is-show {
  opacity: 1;
  transform: translateY(0);
}

.dot-notify.is-ok {
  border-color: rgba(120, 255, 200, 0.4);
  color: #a2ffe3;
}

.dot-notify.is-error {
  border-color: rgba(255, 140, 140, 0.5);
  color: #ffb1b1;
}

.dot-sound {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(210, 225, 245, 0.85);
  margin-top: 4px;
}

.dot-sound input {
  width: 16px;
  height: 16px;
  accent-color: #7cf5d6;
}

.dot-actions .btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.dot-actions .btn::after {
  content: "";
  position: absolute;
  inset: -40% 20%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 0.2s ease;
}

.dot-actions .btn:hover::after {
  opacity: 1;
  animation: dot-btn-spark 0.8s ease;
}

.dot-actions .btn:active {
  transform: translateY(1px) scale(0.99);
}

.dot-actions .btn:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.05);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35), 0 0 18px rgba(255, 220, 150, 0.2);
}

.dot-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(195, 210, 235, 0.7);
}

.dot-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.dot-start {
  background: linear-gradient(135deg, #66f5d1, #52b4ff);
  color: #0b111a;
}

.dot-double {
  background: linear-gradient(135deg, #ffd37a, #ff8bd1);
  color: #0b111a;
}

.dot-cashout {
  background: linear-gradient(135deg, #7bffb1, #ffeb7a);
  color: #0b111a;
}

.dot-reset {
  border-color: rgba(255, 220, 150, 0.25);
}

.dot-footer {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 210, 140, 0.18);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  position: relative;
  z-index: 1;
}

.dot-foot-item {
  display: grid;
  gap: 4px;
  color: rgba(200, 220, 245, 0.85);
  font-size: 0.85rem;
}

.dot-foot-item strong {
  font-size: 1rem;
  color: #e9f3ff;
}

@keyframes dot-pulse {
  0%,
  100% {
    transform: translateY(0);
    text-shadow: 0 0 18px rgba(124, 245, 214, 0.35);
  }
  50% {
    transform: translateY(-2px);
    text-shadow: 0 0 28px rgba(124, 245, 214, 0.55);
  }
}

@keyframes dot-scan {
  0% {
    transform: translateX(-20%) translateY(-20%);
  }
  100% {
    transform: translateX(20%) translateY(20%);
  }
}

@keyframes dot-marquee {
  0% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(-110%);
  }
}

@keyframes dot-odds-scan {
  0%,
  100% {
    transform: translateX(-40%);
    opacity: 0.6;
  }
  50% {
    transform: translateX(40%);
    opacity: 1;
  }
}

@keyframes dot-wheel-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes dot-core-pulse {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes dot-glow {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 0.6;
    transform: translateY(-8px);
  }
}

@keyframes dot-btn-spark {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@media (max-width: 720px) {
  .dot-wheel {
    display: none;
  }
  .dot-odds {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@keyframes dot-flash {
  0% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
  }
}

@keyframes dot-pop {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateY(0) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes dot-confetti {
  0% {
    opacity: 0;
    transform: translateY(-10%) scale(0.9);
  }
  30% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translateY(12%) scale(1.1);
  }
}

.admin-grid {
  gap: 14px;
}

.chart-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.chart-card {
  gap: 14px;
  min-width: 0;
  overflow: clip;
}

.chart-accordion {
  display: grid;
  gap: 12px;
}

.chart-accordion summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.chart-accordion summary::-webkit-details-marker {
  display: none;
}

.chart-accordion summary::after {
  content: "›";
  font-size: 1.2rem;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.chart-accordion[open] summary::after {
  transform: rotate(90deg);
}

.chart-body {
  display: grid;
  gap: 10px;
  min-width: 0;
  overflow: clip;
}

.chart-actions {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
  max-width: 100%;
}

.chart-actions form {
  margin: 0;
  max-width: 100%;
}

.chart-actions .btn {
  max-width: 100%;
}

.btn.tiny {
  padding: 6px 12px;
  min-height: 32px;
  font-size: 0.85rem;
  border-radius: 10px;
}

.bar-list {
  display: grid;
  gap: 8px;
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(120px, 1.2fr) minmax(160px, 2.2fr) auto;
  gap: 12px;
  align-items: center;
  padding: 6px 8px;
  border-radius: 12px;
  background: rgba(10, 12, 20, 0.35);
  border: 1px solid rgba(110, 163, 255, 0.08);
}

.bar-label {
  font-size: 0.9rem;
  color: #d6e3ff;
  font-weight: 600;
}

.bar-track {
  height: 12px;
  border-radius: 999px;
  background: rgba(18, 22, 34, 0.9);
  border: 1px solid rgba(110, 163, 255, 0.2);
  overflow: hidden;
  position: relative;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(135deg, rgba(111, 240, 200, 0.9), rgba(110, 163, 255, 0.9));
  box-shadow: 0 0 12px rgba(111, 240, 200, 0.35);
}

.bar-fill.warn {
  background: linear-gradient(135deg, rgba(255, 143, 143, 0.9), rgba(243, 181, 98, 0.9));
  box-shadow: 0 0 12px rgba(255, 143, 143, 0.35);
}

.bar-value {
  font-weight: 700;
  color: var(--text);
  font-size: 0.9rem;
  min-width: 52px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.bar-value .bar-main {
  font-weight: 700;
}

.delta-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.delta-pill {
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(110, 163, 255, 0.2);
  background: rgba(10, 14, 24, 0.7);
  color: #cfe0ff;
  white-space: nowrap;
}

.delta-pill.up {
  border-color: rgba(111, 240, 200, 0.45);
  background: rgba(21, 40, 34, 0.65);
  color: #91f1c9;
}

.delta-pill.down {
  border-color: rgba(255, 143, 143, 0.45);
  background: rgba(46, 24, 26, 0.65);
  color: #ffb2b2;
}

.delta-pill.neutral {
  border-color: rgba(130, 148, 180, 0.35);
  background: rgba(20, 25, 40, 0.6);
  color: #b8c6e5;
}

.vol-badge {
  font-size: 0.78rem;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 157, 107, 0.18);
  border: 1px solid rgba(255, 157, 107, 0.45);
  color: #ffc7a1;
}

.compare-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.compare-divider {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
}

.compare-divider::before,
.compare-divider::after {
  content: "";
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, transparent, rgba(110, 163, 255, 0.5), transparent);
  display: block;
  height: 100%;
}

.compare-divider span {
  background: #0f121a;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.75rem;
  box-shadow: var(--glow);
}

.perf-card {
  gap: 10px;
  border: 1px solid rgba(110, 163, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.perf-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(110, 163, 255, 0.14), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.perf-card.perf-good {
  border-color: rgba(111, 240, 200, 0.4);
  box-shadow: 0 0 18px rgba(111, 240, 200, 0.15);
}

.perf-card.perf-good::before {
  opacity: 1;
  background: radial-gradient(circle at top left, rgba(111, 240, 200, 0.22), transparent 60%);
}

.perf-card.perf-warn {
  border-color: rgba(255, 198, 98, 0.45);
  box-shadow: 0 0 18px rgba(255, 198, 98, 0.18);
}

.perf-card.perf-warn::before {
  opacity: 1;
  background: radial-gradient(circle at top left, rgba(255, 198, 98, 0.2), transparent 60%);
}

.perf-card.perf-bad {
  border-color: rgba(255, 120, 120, 0.45);
  box-shadow: 0 0 18px rgba(255, 120, 120, 0.18);
}

.perf-card.perf-bad::before {
  opacity: 1;
  background: radial-gradient(circle at top left, rgba(255, 120, 120, 0.2), transparent 60%);
}

.perf-card.perf-neutral {
  border-color: rgba(120, 140, 180, 0.25);
}

.perf-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(120, 150, 200, 0.15);
}

.perf-row:last-child {
  border-bottom: none;
}

.perf-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.perf-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e3ecff;
  text-align: right;
  max-width: 60%;
  word-break: break-word;
}

.system-grid {
  gap: 14px;
}

.system-card {
  padding: 16px;
  gap: 10px;
}

.system-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: #b7c6e5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  box-shadow: 0 0 8px rgba(110, 163, 255, 0.35);
}

.legend-dot.cpu {
  background: #6ff0c8;
}

.legend-dot.ram {
  background: #6ea3ff;
}

.legend-dot.https {
  background: #8a7bff;
}

.legend-dot.tps1 {
  background: #7ee8ff;
}

.legend-dot.tps5 {
  background: #8a7bff;
}

.legend-dot.tps15 {
  background: #ffb26b;
}

.system-chart {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  border: 1px solid rgba(110, 163, 255, 0.14);
  background: radial-gradient(circle at top, rgba(35, 49, 78, 0.3), rgba(12, 16, 26, 0.4));
}

.system-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Fix chart header overflow/wrapping */
.chart-accordion summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  grid-template-areas:
    "title chevron"
    "actions actions";
  align-items: center;
  gap: 8px 10px;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

.chart-accordion summary::after {
  grid-area: chevron;
  justify-self: end;
}

.chart-accordion summary .card-title {
  grid-area: title;
  min-width: 0;
}

.chart-accordion summary .actions,
.chart-accordion summary .actions-right {
  grid-area: actions;
  grid-column: 1 / -1;
  justify-self: end;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 2px;
  padding-top: 4px;
  border-top: 1px dashed rgba(120, 150, 200, 0.12);
}

.chart-accordion summary .actions form {
  margin: 0;
}

.chart-card {
  overflow: hidden;
}

/* nicer tiny button in chart headers */
.chart-accordion summary .btn.tiny {
  padding: 6px 14px;
  min-height: 30px;
  font-size: 0.78rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(120, 190, 255, 0.9), rgba(100, 230, 200, 0.9));
  color: #071018;
  box-shadow: 0 2px 6px rgba(110, 163, 255, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.chart-accordion summary .btn.tiny:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(110, 163, 255, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.compare-card {
  position: relative;
}

.compare-title {
  font-weight: 700;
  font-size: 1rem;
}

.compare-winner {
  border-color: rgba(111, 240, 200, 0.6);
  box-shadow: var(--glow);
}

.compare-winner .stat {
  color: var(--accent);
}

.admin-page .session-row {
  grid-template-columns: 1fr auto auto;
  align-items: center;
}

.admin-page .session-row .actions {
  gap: 6px;
}

.admin-page .session-row form {
  display: flex;
  gap: 6px;
  align-items: center;
}

.admin-page .session-row input[type="text"],
.admin-page .session-row input[type="search"],
.admin-page .session-row input[type="date"],
.admin-page .session-row input[type="email"],
.admin-page .session-row input[type="url"],
.admin-page .session-row input:not([type]) {
  min-width: 180px;
  padding: 8px 10px;
  border-radius: 10px;
}

.admin-list .card {
  border-radius: 16px;
}

.admin-list .card .row {
  align-items: center;
}

.app-card {
  padding: 18px 20px;
  gap: 16px;
}

.app-header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px dashed rgba(110, 163, 255, 0.18);
  padding-bottom: 12px;
}

.app-title {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.app-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 0.85rem;
}

.app-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(12, 16, 24, 0.65);
}

.app-chips {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.app-kv {
  display: grid;
  gap: 8px;
}

.app-kv .meta {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(12, 16, 24, 0.75);
}

.app-kv .meta strong {
  color: #cfe1ff;
  font-weight: 600;
}

.app-card .details summary {
  cursor: pointer;
  padding: 8px 0;
}

.collapse summary {
  cursor: pointer;
  color: var(--accent-2);
  font-weight: 600;
  list-style: none;
}

.collapse summary::-webkit-details-marker {
  display: none;
}

.collapse summary::after {
  content: "›";
  margin-left: 8px;
  display: inline-block;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
  color: var(--muted);
}

.collapse[open] summary::after {
  transform: rotate(-90deg);
}

.collapse-body {
  margin-top: 8px;
  color: var(--text);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-chip {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(110, 163, 255, 0.35);
  background: rgba(110, 163, 255, 0.12);
  color: #d6e3ff;
  font-size: 0.8rem;
  font-weight: 600;
}

.actions-right {
  justify-content: flex-end;
}

.app-form textarea {
  min-height: 140px;
}

.app-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 10px;
}

.app-actions form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-actions select {
  min-width: 160px;
}

.app-actions .btn.primary {
  background: linear-gradient(135deg, #6ff0c8, #6ea3ff);
  box-shadow: 0 10px 26px rgba(111, 240, 200, 0.22);
}

.app-actions .btn.danger {
  background: linear-gradient(135deg, #ff8f8f, #ff5b5b);
  box-shadow: 0 10px 22px rgba(255, 107, 107, 0.22);
}

.app-actions .btn {
  border-radius: 12px;
  padding: 10px 16px;
}

.app-actions select {
  background: #0f121a;
  border: 1px solid rgba(110, 163, 255, 0.3);
  border-radius: 12px;
  padding: 8px 12px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 9, 14, 0.65);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 9999;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  width: min(520px, 92vw);
  background:
    radial-gradient(circle at 10% 0%, rgba(110, 163, 255, 0.2), transparent 55%),
    linear-gradient(180deg, rgba(16, 20, 32, 0.98), rgba(12, 16, 24, 0.98));
  border: 1px solid rgba(110, 163, 255, 0.35);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), var(--glow);
  display: grid;
  gap: 12px;
}

.modal-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.modal-text {
  color: var(--muted);
  line-height: 1.5;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.inventory-preview {
  display: grid;
  gap: 10px;
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
}

.inventory-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 10px;
  background: #11141b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.inventory-meta {
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(16, 18, 32, 0.95), rgba(12, 16, 24, 0.95));
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.chip input {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(110, 163, 255, 0.5);
  background: transparent;
  display: inline-block;
  position: relative;
}

.chip input:checked {
  border-color: rgba(111, 240, 200, 0.9);
  box-shadow: 0 0 0 4px rgba(111, 240, 200, 0.15);
}

.chip input:checked::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6ff0c8;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.chip:hover {
  border-color: rgba(110, 163, 255, 0.45);
  box-shadow: 0 6px 18px rgba(110, 163, 255, 0.12);
  transform: translateY(-1px);
}

.chip input:checked + span,
.chip input:checked ~ span {
  color: #d6e3ff;
}

@media (max-width: 860px) {
  .admin-page .session-row {
    grid-template-columns: 1fr;
  }
  .admin-page .session-row .actions {
    width: 100%;
    justify-content: flex-start;
  }
  .admin-page .session-row form {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .wrap {
    gap: 20px;
    padding: 20px 16px 40px;
  }
  .side-card {
    padding: 14px;
  }
  .sidebar-toggle {
    padding: 10px 12px;
  }
  .side-list a,
  .side-list .disabled {
    padding: 10px 12px;
  }
  .main,
  .content {
    gap: 16px;
  }
  .hero {
    padding: 16px 18px;
  }
  .hero h1 {
    font-size: clamp(1.35rem, 6vw, 1.8rem);
  }
  .hero-meta {
    flex-wrap: wrap;
    gap: 8px;
  }
  .hero-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .rules-stack {
    gap: 12px;
  }
  .grid {
    gap: 14px;
  }
  .card {
    padding: 14px 16px;
  }
  .card-title,
  .section-title,
  .rule-title {
    font-size: 1rem;
  }
  .mini,
  .note,
  .meta {
    font-size: 0.85rem;
  }
  .btn,
  button {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  .status-row {
    gap: 8px;
  }
  .status-block {
    min-width: 0;
    padding: 8px 10px;
  }
  .live-float {
    width: 100%;
  }
  input,
  textarea,
  select {
    font-size: 16px;
  }
}


.chart-accordion summary {
  padding-bottom: 2px;
}

.chart-accordion summary .card-title {
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.chart-accordion summary::after {
  font-size: 0.95rem;
}

.chart-body {
  gap: 6px;
  min-width: 0;
  overflow: clip;
}

.chart-actions {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
  max-width: 100%;
}

.chart-actions form {
  margin: 0;
  max-width: 100%;
}

.chart-actions .btn {
  max-width: 100%;
  padding: 5px 10px;
  min-height: 24px;
  font-size: 0.7rem;
  border-radius: 9px;
}

.bar-row {
  grid-template-columns: minmax(90px, 1.05fr) minmax(110px, 2fr) auto;
  padding: 4px 5px;
}

.bar-label {
  font-size: 0.78rem;
}

.bar-track {
  height: 9px;
}

.bar-value {
  font-size: 0.78rem;
}


/* Compact VanillaWorth cards (only the three widgets) */
.vw-card {
  padding: 12px 14px;
  min-width: 0;
  overflow: clip;
}

.vw-card .chart-accordion summary {
  padding-bottom: 2px;
}

.vw-card .chart-accordion summary .card-title {
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.vw-card .chart-accordion summary::after {
  font-size: 0.95rem;
}

.vw-card .chart-body {
  gap: 6px;
  min-width: 0;
  overflow: clip;
}

.vw-card .chart-actions {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
  max-width: 100%;
}

.vw-card .chart-actions form {
  margin: 0;
  max-width: 100%;
}

.vw-card .chart-actions .btn {
  max-width: 100%;
  padding: 5px 10px;
  min-height: 24px;
  font-size: 0.7rem;
  border-radius: 9px;
}

.vw-card .bar-row {
  grid-template-columns: minmax(90px, 1.05fr) minmax(110px, 2fr) auto;
  padding: 4px 5px;
}

.vw-card .bar-label {
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vw-card .bar-label a {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vw-card .bar-track {
  height: 9px;
}

.vw-card .bar-value {
  font-size: 0.78rem;
}
