:root {
  --bg: #10121a;
  --bg-2: #1a2031;
  --ink: #f7f7fb;
  --muted: #b9bfd3;
  --candy-red: #ff486b;
  --candy-orange: #ff9f43;
  --candy-blue: #1ec8ff;
  --card: rgba(255, 255, 255, 0.07);
  --stroke: rgba(0, 0, 0, 0.7);
  --glow: 0 18px 40px rgba(9, 11, 19, 0.45);
  --depth-shadow: 0 10px 18px rgba(0, 0, 0, 0.3), 0 22px 38px rgba(0, 0, 0, 0.26);
  --depth-rim: inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 -2px 0 rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 245, 255, 0.72), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(255, 43, 214, 0.72), transparent 27%),
    radial-gradient(circle at 50% 92%, rgba(57, 255, 20, 0.65), transparent 30%),
    radial-gradient(circle at 22% 72%, rgba(255, 230, 0, 0.5), transparent 24%),
    radial-gradient(circle at 78% 68%, rgba(161, 0, 255, 0.52), transparent 24%),
    linear-gradient(
      120deg,
      #ff003c 0%,
      #ff7a00 14%,
      #ffe600 28%,
      #39ff14 42%,
      #00f5ff 56%,
      #0066ff 72%,
      #a100ff 86%,
      #ff2bd6 100%
    );
  min-height: 100vh;
  background-attachment: fixed;
  filter: saturate(1.25) brightness(1.08) contrast(1.08);
  perspective: 1600px;
}

body * {
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
  text-shadow: none !important;
  background-image: none !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.16;
}

body::after {
  content: none;
}

@keyframes bubbleFloat {
  0% {
    transform: translate3d(-1.8%, -1.4%, 0) scale(1.002);
    filter: brightness(1.02) saturate(1.08) drop-shadow(0 0 14px rgba(160, 235, 255, 0.4));
  }
  50% {
    transform: translate3d(2.6%, 1.9%, 0) scale(1.03);
    filter: brightness(1.15) saturate(1.24) drop-shadow(0 0 28px rgba(255, 170, 240, 0.62));
  }
  100% {
    transform: translate3d(-1.1%, 2.3%, 0) scale(1.02);
    filter: brightness(1.1) saturate(1.18) drop-shadow(0 0 22px rgba(120, 210, 255, 0.55));
  }
}

main,
footer {
  transform-style: preserve-3d;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5vw;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stroke);
  background: rgba(16, 18, 26, 0.64);
  box-shadow:
    0 0 10px rgba(0, 245, 255, 0.45),
    0 0 18px rgba(255, 43, 214, 0.35);
}

.quick-nav-wrap {
  position: sticky;
  top: 74px;
  z-index: 9;
  padding: 0.55rem 5vw 0.5rem;
  backdrop-filter: blur(8px);
  background: rgba(16, 18, 26, 0.66);
  border-bottom: 1px solid var(--stroke);
}

.quick-nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 0.2rem;
}

.quick-nav button {
  border: 1px solid #000;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.45rem 0.78rem;
  white-space: nowrap;
  font-weight: 700;
  cursor: pointer;
}

.quick-nav button.is-active {
  background: linear-gradient(135deg, #00f5ff, #ff2bd6, #ffe600);
  box-shadow:
    0 0 10px rgba(0, 245, 255, 0.55),
    0 0 14px rgba(255, 43, 214, 0.45);
}

.access-code-banner {
  text-align: center;
  font-family: "Bungee", cursive;
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  letter-spacing: 0.07em;
  padding: 0.6rem 0.8rem;
  background: #ffe37a;
  border-bottom: 2px solid #000;
}

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

.logo-ball {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--candy-orange), var(--candy-red));
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.logo-text {
  font-family: "Bungee", cursive;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

nav {
  display: flex;
  gap: 1.2rem;
}

nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.9;
  text-shadow:
    0 0 4px rgba(0, 245, 255, 0.6),
    0 0 8px rgba(255, 43, 214, 0.45);
}

main {
  width: min(1100px, 92vw);
  margin: 2rem auto 4rem;
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.25rem;
  align-items: center;
}

.hero-copy-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  padding: 1.15rem;
  box-shadow: var(--glow);
}

.team-mark {
  margin: 0;
  font-family: "Bungee", cursive;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.team-mark strong {
  color: #ffe37a;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  color: var(--candy-blue);
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  transform: translateZ(10px);
  text-shadow:
    0 0 1px #ffffff,
    0 0 3px #00f5ff,
    0 0 5px #ff2bd6;
}

h1 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 5vw, 3.7rem);
  max-width: 12ch;
  text-wrap: balance;
}

.hero-copy {
  color: var(--muted);
  max-width: 50ch;
  margin-top: 1rem;
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}

.btn.primary {
  color: #121212;
  background: linear-gradient(135deg, #ff2bd6, #00f5ff, #ffe600);
  box-shadow:
    0 0 10px rgba(0, 245, 255, 0.6),
    0 0 16px rgba(255, 43, 214, 0.55);
}

.btn.ghost {
  color: var(--ink);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.22);
}

.hero-photo-card,
.panel {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  transform-style: preserve-3d;
  transition: transform 260ms ease, box-shadow 260ms ease;
  box-shadow:
    var(--glow),
    var(--depth-shadow),
    var(--depth-rim),
    0 0 12px rgba(0, 245, 255, 0.35),
    0 0 20px rgba(161, 0, 255, 0.25);
}

main > section.panel:hover {
  transform: translateY(-4px) rotateX(1.8deg) rotateY(-1.8deg) translateZ(10px);
}

.hero-copy-wrap,
.roster-grid article,
.countdown-grid article,
.stats-grid article,
.wishes-grid article,
.trashtalk-grid article,
.player-week-card,
.locker-grid article,
.video-wrap,
.jail-cell-wrap,
.warning-sign,
.jersey-showcase,
.gummy-form-grid article {
  transform-style: preserve-3d;
  transform: translateZ(6px);
  box-shadow: var(--depth-shadow), var(--depth-rim);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-copy-wrap:hover,
.roster-grid article:hover,
.countdown-grid article:hover,
.stats-grid article:hover,
.wishes-grid article:hover,
.trashtalk-grid article:hover,
.player-week-card:hover,
.locker-grid article:hover,
.video-wrap:hover,
.jail-cell-wrap:hover,
.warning-sign:hover,
.jersey-showcase:hover,
.gummy-form-grid article:hover {
  transform: translateY(-3px) translateZ(14px);
  box-shadow:
    0 14px 26px rgba(0, 0, 0, 0.34),
    0 30px 42px rgba(0, 0, 0, 0.28),
    var(--depth-rim);
}

.btn,
.quick-nav button,
.admin-controls button,
.wish-controls button,
.wish-actions button,
.score-controls button,
.score-actions button,
.locker-actions button,
.open-jail-btn,
.close-jail-btn,
#goFartherBtn {
  transform: translateZ(8px);
  box-shadow:
    0 4px 0 rgba(0, 0, 0, 0.45),
    0 9px 14px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn:hover,
.quick-nav button:hover,
.admin-controls button:hover,
.wish-controls button:hover,
.wish-actions button:hover,
.score-controls button:hover,
.score-actions button:hover,
.locker-actions button:hover,
.open-jail-btn:hover,
.close-jail-btn:hover,
#goFartherBtn:hover {
  transform: translateY(-2px) translateZ(12px);
  box-shadow:
    0 6px 0 rgba(0, 0, 0, 0.5),
    0 14px 18px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn:active,
.quick-nav button:active,
.admin-controls button:active,
.wish-controls button:active,
.wish-actions button:active,
.score-controls button:active,
.score-actions button:active,
.locker-actions button:active,
.open-jail-btn:active,
.close-jail-btn:active,
#goFartherBtn:active {
  transform: translateY(2px) translateZ(2px);
  box-shadow:
    0 2px 0 rgba(0, 0, 0, 0.45),
    0 4px 8px rgba(0, 0, 0, 0.28),
    inset 0 2px 4px rgba(0, 0, 0, 0.28);
}

.hero-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.hero-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.photo-badge {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  background: linear-gradient(
    120deg,
    rgba(255, 75, 75, 0.9),
    rgba(255, 159, 67, 0.9),
    rgba(255, 227, 122, 0.9),
    rgba(75, 227, 108, 0.9),
    rgba(47, 215, 255, 0.9),
    rgba(75, 125, 255, 0.9),
    rgba(177, 75, 255, 0.9)
  );
  border: 1px solid #000;
  border-radius: 0.85rem;
  padding: 0.85rem;
  backdrop-filter: blur(6px);
}

.card-title {
  color: var(--candy-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.78rem;
}

.ticket-link {
  margin-top: 0.4rem;
  display: inline-block;
  color: var(--candy-blue);
  text-decoration: none;
  font-weight: 700;
}

.panel {
  margin-top: 1.4rem;
  padding: 1.2rem;
}

.section-head p {
  margin: 0;
  color: var(--candy-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.8rem;
}

.team-look-title {
  font-size: clamp(1.15rem, 3vw, 1.8rem) !important;
  font-weight: 800 !important;
  letter-spacing: 0.11em !important;
}

.roster-big-title {
  font-size: clamp(1.2rem, 3.4vw, 2.1rem) !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-shadow:
    0 0 6px #ffffff,
    0 0 12px #00f5ff,
    0 0 20px #ff2bd6;
}

.section-head h2 {
  margin-top: 0.35rem;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.roster-grid,
.countdown-grid,
.stats-grid,
.wishes-grid,
.trashtalk-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.jersey-showcase {
  margin-top: 1rem;
  border: 1px solid var(--stroke);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem;
  cursor: pointer;
}

.jersey-showcase img {
  width: 100%;
  display: block;
  border-radius: 0.6rem;
}

.jersey-stats-action {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
}

.jersey-stats-action button {
  border: 1px solid #000;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, #00f5ff, #ff2bd6, #39ff14);
}

#locker-room {
  background:
    linear-gradient(145deg, rgba(8, 10, 18, 0.92), rgba(20, 24, 36, 0.9)),
    radial-gradient(circle at 10% 20%, rgba(0, 245, 255, 0.2), transparent 30%),
    radial-gradient(circle at 90% 25%, rgba(255, 43, 214, 0.2), transparent 30%);
}

.locker-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.locker-grid article {
  border: 1px solid var(--stroke);
  border-radius: 0.8rem;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
}

.locker-actions {
  margin-top: 0.6rem;
}

.locker-actions button {
  border: 1px solid #000;
  border-radius: 0.7rem;
  padding: 0.4rem 0.8rem;
  background: #ffe600;
  font-weight: 700;
  cursor: pointer;
}

.video-wrap {
  margin-top: 1rem;
  border: 1px solid var(--stroke);
  border-radius: 0.9rem;
  background: linear-gradient(
    140deg,
    rgba(0, 245, 255, 0.2),
    rgba(255, 43, 214, 0.2),
    rgba(57, 255, 20, 0.2)
  );
  padding: 0.75rem;
  box-shadow:
    0 0 10px rgba(0, 245, 255, 0.45),
    0 0 18px rgba(255, 43, 214, 0.35);
}

.video-wrap video {
  width: 100%;
  max-height: 70vh;
  border-radius: 0.65rem;
  display: block;
  background: #000;
}

.jail-cell-wrap {
  margin-top: 1rem;
  border: 2px solid #000;
  border-radius: 0.9rem;
  padding: 1rem;
  height: 460px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 43, 214, 0.2), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(0, 245, 255, 0.2), transparent 35%),
    rgba(20, 22, 30, 0.7);
}

.jail-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}


.jail-bars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0 14px,
      transparent 14px 36px
    );
  opacity: 0.85;
}

.jail-warning {
  margin: 0;
  position: relative;
  z-index: 4;
  pointer-events: none;
  text-align: center;
  font-family: "Bungee", cursive;
  font-size: clamp(1.5rem, 4.8vw, 3.1rem);
  letter-spacing: 0.08em;
  line-height: 1.2;
  padding-top: 2.6rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.45);
  border-radius: 0.6rem;
  text-shadow:
    0 0 2px #fff,
    0 0 7px #ff2bd6,
    0 0 12px #00f5ff;
}

.open-jail-btn {
  position: relative;
  z-index: 6;
  margin-top: 1rem;
  border: 1px solid #000;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-weight: 800;
  cursor: pointer;
  background: #ffe600;
  display: inline-block;
}

.jail-controls {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.close-jail-btn {
  display: none;
}

.warning-sign {
  display: none;
  position: relative;
  z-index: 5;
  margin: 1.2rem auto 0;
  width: min(720px, 92%);
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0.2rem 0.2rem 0.6rem;
  text-align: center;
}

.jail-toggle:checked ~ .warning-sign {
  display: block;
}

.warning-sign::before,
.warning-sign::after {
  content: none;
}

.warning-sign::before {
  left: 18%;
}

.warning-sign::after {
  right: 20%;
}

.drip-text {
  margin: 0;
  display: inline-block;
  position: relative;
  font-family: "Bungee", cursive;
  font-size: clamp(1.1rem, 2.9vw, 1.95rem);
  letter-spacing: 0.05em;
  font-weight: 900;
  color: #ff3a3a !important;
  background: linear-gradient(180deg, #ffb1b1 0%, #ff5656 34%, #ea1212 68%, #8a0000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.35px rgba(255, 215, 215, 0.7);
  text-shadow:
    0 1px 0 #4a0000,
    0 2px 0 #5a0000,
    0 4px 0 #690000,
    0 7px 7px rgba(55, 0, 0, 0.45),
    0 10px 10px rgba(30, 0, 0, 0.4);
}

.drip-text::before,
.drip-text::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  border-radius: 999px;
  background: linear-gradient(180deg, #cc0000 0%, #770000 100%);
  filter: drop-shadow(0 3px 2px rgba(40, 0, 0, 0.6));
}

.drip-text::before {
  width: 0.4rem;
  height: 0.95rem;
  bottom: -0.88rem;
  margin-left: -2.2rem;
}

.drip-text::after {
  width: 0.32rem;
  height: 0.72rem;
  bottom: -0.66rem;
  margin-left: 2.4rem;
}

#goFartherBtn {
  margin-top: 0.7rem;
  border: 1px solid #000;
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font-weight: 800;
  cursor: pointer;
  background: #ffe600;
}


.gummy-form-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.gummy-form-grid article {
  border: 1px solid var(--stroke);
  border-radius: 0.8rem;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
}


.jail-toggle:checked ~ .jail-bars {
  opacity: 0;
}

.jail-toggle:checked ~ .jail-warning {
  display: none;
}

.jail-toggle:checked ~ .jail-controls .open-jail-btn {
  display: none;
}

.jail-toggle:checked ~ .jail-controls .close-jail-btn {
  display: inline-block;
}

#gummy-team-form {
  background: linear-gradient(160deg, #0a0a0f, #11131c 45%, #0b0b10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 16px rgba(0, 245, 255, 0.25),
    0 0 28px rgba(161, 0, 255, 0.24),
    inset 0 0 55px rgba(0, 0, 0, 0.55);
}

.dark-room-pics {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.dark-room-pics .neon-logo {
  width: min(240px, 30%);
  min-width: 180px;
  height: auto;
  border-radius: 0.7rem;
  display: block;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.45),
    0 0 18px rgba(0, 245, 255, 0.4);
}

.neon-logo-blue {
  filter: saturate(1.35) brightness(1.06) hue-rotate(0deg);
}

.neon-logo-pink {
  filter: saturate(1.6) brightness(1.06) hue-rotate(130deg);
}

.neon-logo-lime {
  filter: saturate(1.55) brightness(1.08) hue-rotate(55deg);
}

.roster-grid article,
.countdown-grid article,
.stats-grid article,
.wishes-grid article,
.trashtalk-grid article {
  border: 1px solid var(--stroke);
  border-radius: 0.8rem;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
}

.roster-grid p,
.countdown-grid p,
.stats-grid p,
.wishes-grid p,
.trashtalk-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

#countdownStatus {
  margin-top: 0.85rem;
  font-weight: 700;
}

.player-week-card {
  margin-top: 1rem;
  border: 1px solid var(--stroke);
  border-radius: 0.8rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
}

.player-week-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.roster-grid h3 {
  text-shadow:
    0 0 4px #ffffff,
    0 0 10px #00f5ff,
    0 0 16px #ff2bd6;
}

.wish-editor {
  margin-top: 1rem;
}

.wish-editor label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.wish-controls {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.wish-controls input {
  flex: 1;
  min-width: 220px;
  border: 1px solid var(--stroke);
  border-radius: 0.7rem;
  padding: 0.6rem 0.75rem;
  background: rgba(255, 255, 255, 0.85);
}

.wish-controls button,
.wish-actions button {
  border: 1px solid #000;
  border-radius: 0.7rem;
  padding: 0.45rem 0.7rem;
  background: #ffe37a;
  font-weight: 700;
  cursor: pointer;
}

.score-editor {
  margin-top: 1rem;
}

.score-editor label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.score-controls {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.score-controls input {
  min-width: 140px;
  flex: 1;
  border: 1px solid var(--stroke);
  border-radius: 0.7rem;
  padding: 0.6rem 0.75rem;
  background: rgba(255, 255, 255, 0.85);
}

.score-controls button,
.score-actions button {
  border: 1px solid #000;
  border-radius: 0.7rem;
  padding: 0.45rem 0.7rem;
  background: #ffe37a;
  font-weight: 700;
  cursor: pointer;
}

.score-actions {
  display: flex;
  gap: 0.45rem;
}

.wish-actions {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.admin-controls {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.footer-admin-controls {
  margin-top: 0;
  margin-left: auto;
}

.admin-controls button {
  border: 1px solid #000;
  border-radius: 0.7rem;
  padding: 0.45rem 0.7rem;
  background: #ffe37a;
  font-weight: 700;
  cursor: pointer;
}

.admin-deletable-box {
  position: relative;
}

.admin-delete-anything-btn {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  z-index: 3;
  border: 1px solid #000;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  background: #ff4b4b;
  color: #000;
  cursor: pointer;
}

.stats-grid h3 {
  margin-top: 0.35rem;
  font-size: 2rem;
  color: #ffe37a;
}

.table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

th,
td {
  text-align: left;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--stroke);
}

th {
  color: var(--candy-blue);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 6px rgba(0, 245, 255, 0.75),
    0 0 10px rgba(255, 43, 214, 0.55);
}

footer {
  width: min(1100px, 92vw);
  margin: 0 auto 2.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-photo-card {
    min-height: 460px;
  }

  nav {
    gap: 0.85rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .quick-nav-wrap {
    top: 114px;
  }

  main > section.panel:hover,
  .hero-copy-wrap:hover,
  .roster-grid article:hover,
  .countdown-grid article:hover,
  .stats-grid article:hover,
  .wishes-grid article:hover,
  .trashtalk-grid article:hover,
  .player-week-card:hover,
  .locker-grid article:hover,
  .video-wrap:hover,
  .jail-cell-wrap:hover,
  .warning-sign:hover,
  .jersey-showcase:hover,
  .gummy-form-grid article:hover {
    transform: translateZ(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::after {
    animation: none;
  }
}

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

  main {
    margin-top: 1.2rem;
  }

  .hero-photo-card {
    min-height: 420px;
  }
}
