:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: rgba(22, 22, 22, 0.88);
  --line-soft: rgba(255, 183, 0, 0.26);
  --line-strong: rgba(255, 183, 0, 0.55);
  --accent: #d49f14;
  --accent-strong: #f0bc35;
  --text-main: #f5f5f5;
  --text-muted: #b9b9b9;
  --danger: #ff4d4d;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-main: 0 14px 40px rgba(0, 0, 0, 0.45);
  --gold-glow: 0 0 0 1px rgba(255, 196, 64, 0.22), 0 0 32px rgba(212, 159, 20, 0.18);
  --layout-main-width: 1200px;
  --layout-side-width: 320px;
  --layout-gap: 90px;
}

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

html,
body {
  min-height: 100%;
}

body {
  font-family: "Orbitron", "Segoe UI", Tahoma, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 10% 20%, rgba(212, 159, 20, 0.24), transparent 36%),
    radial-gradient(circle at 90% 10%, rgba(212, 159, 20, 0.18), transparent 42%),
    linear-gradient(145deg, #040404 0%, #101010 48%, #080808 100%);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: -20% -10%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 193, 38, 0.07), transparent 52%);
  pointer-events: none;
  z-index: 0;
  animation: ambientPulse 9s ease-in-out infinite;
}

body.page-ready {
  animation: pageFade 0.6s ease both;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 183, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 183, 0, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
  z-index: 0;
  animation: gridShift 22s linear infinite;
}

.bg-orb {
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.19;
  pointer-events: none;
  z-index: 0;
}

.orb-one {
  top: -140px;
  left: -140px;
  background: #d49f14;
  animation: orbFloatOne 13s ease-in-out infinite;
}

.orb-two {
  right: -150px;
  bottom: -180px;
  background: #8e6a10;
  animation: orbFloatTwo 15s ease-in-out infinite;
}

header,
.dashboard,
.footer {
  position: relative;
  z-index: 1;
}

header {
  max-width: 1200px;
  margin: 22px auto 0;
  padding: 16px 22px;
  background: rgba(10, 10, 10, 0.82);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-main), var(--gold-glow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: slideDown 0.65s ease both;
  overflow: hidden;
  left: calc((var(--layout-side-width) + var(--layout-gap)) / -2);
}

header::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 208, 94, 0.4) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: borderSweep 6.5s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.6;
}

.logo {
  font-size: 1.15rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--accent-strong);
  animation: logoGlow 3.8s ease-in-out infinite;
}

.discord-link {
  text-decoration: none;
  color: #121212;
  background: linear-gradient(135deg, var(--accent), #b78610);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  border: 1px solid rgba(255, 200, 84, 0.35);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.discord-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 238, 189, 0.4) 50%, transparent 65%);
  transform: translateX(-130%);
  animation: linkShine 4.8s ease-in-out infinite;
}

.discord-link:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 24px rgba(212, 159, 20, 0.5);
  filter: brightness(1.08);
}

.dashboard {
  max-width: 1540px;
  margin: 22px auto;
  padding: 6px 0 24px;
  animation: revealUp 0.7s ease both;
  animation-delay: 0.14s;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: var(--layout-main-width) var(--layout-side-width);
  gap: var(--layout-gap);
  align-items: start;
  justify-content: center;
}

.main-column,
.side-column {
  min-width: 0;
}

.main-column {
  width: var(--layout-main-width);
}

.search-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 18px;
}

.search-quota-info {
  min-height: 22px;
  margin: -6px 0 18px;
  color: var(--text-muted);
  font-size: 0.84rem;
  letter-spacing: 0.2px;
}

.side-column {
  position: sticky;
  top: 22px;
  margin-top: -102px;
}

.admin-panel,
.viewer-panel {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-main), var(--gold-glow);
  padding: 18px;
  overflow: hidden;
  position: relative;
}

.admin-panel h3,
.viewer-panel h3 {
  color: var(--accent-strong);
  font-size: 1rem;
  letter-spacing: 0.8px;
}

.admin-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.admin-panel-tag {
  padding: 6px 10px;
  border: 1px solid rgba(255, 183, 0, 0.25);
  background: rgba(255, 183, 0, 0.08);
  color: #f8d780;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.admin-list {
  display: grid;
  gap: 12px;
  max-height: 312px;
  overflow-y: auto;
  padding-right: 6px;
}

.admin-list::-webkit-scrollbar {
  width: 8px;
}

.admin-list::-webkit-scrollbar-track {
  background: rgba(255, 183, 0, 0.08);
}

.admin-list::-webkit-scrollbar-thumb {
  background: rgba(255, 183, 0, 0.35);
  border: 1px solid rgba(255, 183, 0, 0.18);
}

.admin-list {
  scrollbar-color: rgba(255, 183, 0, 0.35) rgba(255, 183, 0, 0.08);
  scrollbar-width: thin;
}

.viewer-card {
  position: relative;
  border: 1px solid rgba(255, 183, 0, 0.18);
  background: linear-gradient(160deg, rgba(34, 29, 18, 0.96), rgba(14, 14, 14, 0.96));
  padding: 14px;
  overflow: hidden;
}

.viewer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 183, 0, 0.2), transparent 35%);
  pointer-events: none;
}

.viewer-card-banner {
  height: 84px;
  border: 1px solid rgba(255, 183, 0, 0.16);
  background: linear-gradient(135deg, rgba(212, 159, 20, 0.5), rgba(0, 0, 0, 0.15));
  background-size: cover;
  background-position: center;
}

.viewer-card-body {
  position: relative;
  z-index: 1;
  margin-top: -26px;
  padding: 0 4px 4px;
}

.viewer-card-avatar {
  width: 70px;
  height: 70px;
  border: 3px solid #101010;
  background: #0d0d0d;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 183, 0, 0.35);
}

.viewer-card-name {
  margin-top: 10px;
  font-size: 1.02rem;
  color: #ffe39a;
}

.viewer-card-tag {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 4px;
}

.viewer-card-id {
  color: #9e9e9e;
  font-size: 0.78rem;
  margin-top: 2px;
  word-break: break-all;
}

.viewer-card-status {
  margin-top: 10px;
  color: #d8d8d8;
  font-size: 0.82rem;
  line-height: 1.45;
}

.viewer-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.viewer-badge {
  padding: 6px 9px;
  border: 1px solid rgba(255, 183, 0, 0.2);
  background: rgba(255, 183, 0, 0.08);
  color: #f1d78d;
  font-size: 0.72rem;
}

.viewer-card-empty {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.admin-panel {
  padding-bottom: 14px;
}

.admin-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(255, 183, 0, 0.12);
}

.admin-card:last-child {
  border-bottom: 0;
  padding-bottom: 2px;
}

.admin-card-avatar {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 2px solid rgba(255, 183, 0, 0.35);
  background: #101010;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.45);
}

.admin-card-body {
  min-width: 0;
}

.admin-card-name {
  color: #ffe39a;
  font-size: 0.98rem;
  line-height: 1.15;
}

.admin-card-tag {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.viewer-panel {
  margin-top: 16px;
}

.search-box input {
  width: 100%;
  border: 1px solid var(--line-soft);
  background: rgba(17, 17, 17, 0.9);
  color: var(--text-main);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  animation: inputGlow 3.8s ease-in-out infinite;
}

.search-box input:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(212, 159, 20, 0.2), 0 0 28px rgba(212, 159, 20, 0.22);
  background: rgba(22, 22, 22, 0.95);
}

.search-box button {
  border: 1px solid rgba(255, 210, 110, 0.38);
  background: linear-gradient(135deg, var(--accent), #a57c11);
  color: #111;
  border-radius: 12px;
  padding: 0 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.search-box button::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 36%;
  height: 330%;
  transform: rotate(25deg);
  background: linear-gradient(to right, transparent, rgba(255, 244, 201, 0.5), transparent);
  animation: btnShine 3.4s ease-in-out infinite;
}

.search-box button:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 14px 28px rgba(212, 159, 20, 0.45);
  filter: brightness(1.1);
}

.search-box button:active {
  transform: translateY(0) scale(0.985);
}

.top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.box {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-main), var(--gold-glow);
  padding: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 205, 96, 0.16), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.box:hover {
  transform: translateY(-6px) scale(1.005);
  border-color: rgba(255, 200, 80, 0.65);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.55), 0 0 36px rgba(212, 159, 20, 0.2);
}

.box:hover::before {
  opacity: 1;
  animation: panelShine 1.05s ease;
}

.box h3 {
  color: var(--accent-strong);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 0.8px;
}

.profile {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.banner {
  width: 100%;
  height: 150px;
  border-radius: 14px;
  background: linear-gradient(120deg, #1f1f1f, #2a2a2a);
  border: 1px solid rgba(255, 183, 0, 0.15);
  overflow: hidden;
  position: relative;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.48), transparent);
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 224, 140, 0.16) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: bannerSweep 7.2s ease-in-out infinite;
  pointer-events: none;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(212, 159, 20, 0.32), transparent 40%);
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2px solid rgba(255, 190, 0, 0.55);
  object-fit: cover;
  box-shadow: 0 0 16px rgba(212, 159, 20, 0.38);
  background: #101010;
  animation: avatarBreathe 4.2s ease-in-out infinite;
}

.username {
  font-size: 1.1rem;
  color: #ffe39a;
  margin-bottom: 5px;
}

.bio {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.4;
  max-width: 520px;
  overflow-wrap: anywhere;
}

.circle {
  margin: 22px auto 8px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffe9b4;
  font-size: 1.3rem;
  font-weight: 700;
  background:
    radial-gradient(circle at center, #131313 52%, transparent 53%),
    conic-gradient(from 0deg, #4d3a08, #d49f14, #f0bc35, #4d3a08);
  border: 2px solid rgba(255, 204, 94, 0.25);
  box-shadow:
    inset 0 0 30px rgba(0, 0, 0, 0.45),
    0 10px 20px rgba(0, 0, 0, 0.4),
    0 0 28px rgba(212, 159, 20, 0.25);
  position: relative;
  overflow: hidden;
}

.circle::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(transparent 0deg, rgba(255, 222, 145, 0.38) 90deg, transparent 180deg);
  animation: circleSweep 4.8s linear infinite;
  pointer-events: none;
}

.bans {
  margin-top: 10px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  min-height: 0;
  padding: 16px;
  box-shadow: var(--shadow-main), var(--gold-glow);
  color: var(--text-muted);
}

.bans .ban-item,
.bans .ban,
.bans .entry {
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 77, 77, 0.28);
  background: rgba(255, 77, 77, 0.09);
  color: #ffd2d2;
}

.bans .ban-item:last-child,
.bans .ban:last-child,
.bans .entry:last-child {
  margin-bottom: 0;
}

.ban-card {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 183, 0, 0.22);
  background: rgba(255, 183, 0, 0.05);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  animation: banIn 0.45s ease both;
}

.ban-card:last-child {
  margin-bottom: 0;
}

.ban-card:nth-child(2) { animation-delay: 0.05s; }
.ban-card:nth-child(3) { animation-delay: 0.1s; }
.ban-card:nth-child(4) { animation-delay: 0.15s; }
.ban-card:nth-child(5) { animation-delay: 0.2s; }
.ban-card:nth-child(6) { animation-delay: 0.25s; }

.ban-card:hover {
  transform: translateY(-3px) scale(1.005);
  border-color: rgba(255, 204, 104, 0.65);
  background: rgba(255, 183, 0, 0.13);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}

.ban-left {
  width: 86px;
  height: 86px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 183, 0, 0.25);
  background: #0e0e0e;
}

.ban-left img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.ban-card:hover .ban-left img {
  transform: scale(1.07);
  filter: saturate(1.08);
}

.ban-title {
  color: #ffe39a;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.ban-reason,
.ban-time {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.ban-right {
  text-align: right;
}

.footer {
  max-width: 1200px;
  margin: 18px auto 24px;
  padding: 20px 24px;
  background: rgba(10, 10, 10, 0.84);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-main), var(--gold-glow);
  animation: revealUp 0.7s ease both;
  animation-delay: 0.22s;
  overflow: hidden;
  left: calc((var(--layout-side-width) + var(--layout-gap)) / -2);
}

.footer::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 202, 86, 0.33) 50%, transparent 75%);
  transform: translateX(-125%);
  animation: borderSweep 8s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.5;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d4d4d4;
  font-size: 0.95rem;
}

.footer-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  animation: logoFloat 4.6s ease-in-out infinite;
}

.discord-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 183, 0, 0.25);
  padding: 5px;
  background: rgba(255, 183, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.discord-icon:hover {
  transform: scale(1.12);
  box-shadow: 0 0 22px rgba(212, 159, 20, 0.55);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: revealUp 0.55s ease forwards;
}

.reveal-delay-1 {
  animation-delay: 0.08s;
}

.reveal-delay-2 {
  animation-delay: 0.16s;
}

.reveal-delay-3 {
  animation-delay: 0.24s;
}

.reveal-delay-4 {
  animation-delay: 0.32s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ambientPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.06);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes borderSweep {
  0%, 25% {
    transform: translateX(-125%);
  }
  60% {
    transform: translateX(125%);
  }
  100% {
    transform: translateX(125%);
  }
}

@keyframes linkShine {
  0%, 45% {
    transform: translateX(-130%);
  }
  62% {
    transform: translateX(130%);
  }
  100% {
    transform: translateX(130%);
  }
}

@keyframes gridShift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(34px, 34px, 0);
  }
}

@keyframes inputGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(212, 159, 20, 0);
  }
  50% {
    box-shadow: 0 0 0 2px rgba(212, 159, 20, 0.12);
  }
}

@keyframes orbFloatOne {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(24px, 18px);
  }
}

@keyframes orbFloatTwo {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-22px, -16px);
  }
}

@keyframes panelShine {
  from {
    left: -35%;
  }
  to {
    left: 130%;
  }
}

@keyframes bannerSweep {
  0%, 45% {
    transform: translateX(-120%);
  }
  65% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes logoGlow {
  0%, 100% {
    text-shadow: 0 0 0 rgba(212, 159, 20, 0);
  }
  50% {
    text-shadow: 0 0 16px rgba(212, 159, 20, 0.45);
  }
}

@keyframes banIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes btnShine {
  0%, 40% {
    left: -45%;
  }
  60% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

@keyframes avatarBreathe {
  0%, 100% {
    box-shadow: 0 0 16px rgba(212, 159, 20, 0.38);
  }
  50% {
    box-shadow: 0 0 24px rgba(212, 159, 20, 0.55);
  }
}

@keyframes circleSweep {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@media (max-width: 980px) {
  header,
  .dashboard,
  .footer {
    width: calc(100% - 24px);
  }

  header,
  .footer {
    left: 0;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .side-column {
    position: static;
    top: auto;
    margin-top: 0;
  }

  .main-column {
    width: auto;
  }

  .top {
    grid-template-columns: 1fr;
  }

  .circle {
    width: 140px;
    height: 140px;
    font-size: 1.15rem;
  }
}

@media (max-width: 640px) {
  header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .search-box {
    grid-template-columns: 1fr;
  }

  .search-box button {
    padding: 13px 16px;
  }

  .profile-info {
    align-items: flex-start;
  }

  .ban-card {
    grid-template-columns: 70px 1fr;
  }

  .ban-left {
    width: 70px;
    height: 70px;
  }

  .ban-right {
    grid-column: 1 / -1;
    text-align: left;
  }

  .footer {
    flex-direction: column;
    gap: 10px;
  }

  .footer-right {
    align-self: flex-start;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .bg-grid {
    opacity: 0.85;
  }

  .box,
  .bans,
  header,
  .footer {
    box-shadow: var(--shadow-main), 0 0 0 1px rgba(255, 196, 64, 0.25), 0 0 24px rgba(212, 159, 20, 0.18);
  }
}

/* Square UI override requested */
header,
.discord-link,
.search-box input,
.search-box button,
.box,
.banner,
.avatar,
.bans,
.ban-card,
.ban-left,
.admin-panel,
.viewer-panel,
.admin-card,
.viewer-card,
.viewer-card-banner,
.admin-card-avatar,
.viewer-card-avatar,
.footer,
.discord-icon {
  border-radius: 8px !important;
}
