:root {
  --bg-main: #070709;
  --bg-card: #0c0c12;
  --bg-surface: #12121a;
  --border-subtle: #1c1c28;
  --border-strong: #2d2d40;
  --text-pure: #ffffff;
  --text-muted: #94a3b8;
  --accent-crimson: #ff2d55;
  --accent-cyan: #00f0ff;
  --accent-gold: #ffd700;
}

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

body {
  background-color: #08080d;
  background-image: 
    radial-gradient(#1c1c2e 0.9px, transparent 0.9px),
    radial-gradient(#1c1c2e 0.9px, #08080d 0.9px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  color: #f1f5f9;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ========================================================
   RESPONSIVE HEADER & NAVIGATION
   ======================================================== */
.anime-header {
  position: sticky;
  top: 0px;
  z-index: 1000;
  background: rgba(7, 8, 13, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  gap: 12px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: 900;
  user-select: none;
  text-decoration: none;
}

.logo-slash {
  color: #00f0ff;
  font-size: 20px;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

.logo-text {
  color: #ffffff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.logo-badge {
  background: rgba(0, 240, 255, 0.1);
  color: #00f0ff;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 800;
  border: 1px solid rgba(0, 240, 255, 0.3);
  letter-spacing: 0.5px;
}

/* DESKTOP NAV */
.main-nav {
  display: flex;
  gap: 6px;
  align-items: center;
  background: rgba(18, 20, 32, 0.6);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-link {
  background: transparent;
  border: 1px solid transparent;
  color: #94a3b8;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 6px 14px;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: #00f0ff;
  background: rgba(0, 240, 255, 0.12);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
  font-weight: 800;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.db-sync-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  user-select: none;
}

.db-sync-badge.connecting {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
  color: #fbbf24;
}

.db-sync-badge.offline {
  background: rgba(148, 163, 184, 0.1);
  border-color: rgba(148, 163, 184, 0.25);
  color: #94a3b8;
}

.btn-auth-pill {
  background: #14141e;
  border: 1px solid #28283a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-auth-pill:hover {
  border-color: #00f0ff;
  color: #00f0ff;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.25);
}

.user-profile-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #12121b;
  border: 1px solid #222232;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  color: #f8fafc;
}

.avatar-dot {
  color: #00f0ff;
  font-size: 10px;
}

/* HAMBURGER TOGGLE BUTTON */
.btn-mobile-toggle {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.btn-mobile-toggle:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: rgba(0, 240, 255, 0.4);
}

.hamburger-bar {
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.btn-mobile-toggle.open .hamburger-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  background: #00f0ff;
}

.btn-mobile-toggle.open .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.btn-mobile-toggle.open .hamburger-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  background: #00f0ff;
}

/* MOBILE DROPDOWN DRAWER */
.mobile-nav-drawer {
  display: none;
  background: #090b12;
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}

.mobile-nav-drawer.show {
  display: block;
  max-height: 400px;
  padding: 16px 20px 20px 20px;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.mobile-drawer-link {
  background: #111420;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #cbd5e1;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  width: 100%;
}

.mobile-drawer-link:hover,
.mobile-drawer-link.active {
  background: rgba(0, 240, 255, 0.08);
  border-color: rgba(0, 240, 255, 0.4);
  color: #ffffff;
}

.mobile-drawer-link.active .mob-arrow {
  color: #00f0ff;
}

.mob-icon {
  font-size: 20px;
}

.mob-text strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.mob-text small {
  font-size: 11px;
  color: #94a3b8;
}

.mob-arrow {
  margin-left: auto;
  font-size: 14px;
  color: #64748b;
  font-weight: 800;
}

.mobile-drawer-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}

/* MOBILE BOTTOM NAV (1-THUMB APP-LIKE BAR) */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 10, 16, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px)) 8px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #94a3b8;
  padding: 6px 4px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.15s ease;
}

.bottom-nav-item .bnav-icon {
  font-size: 18px;
  margin-bottom: 2px;
}

.bottom-nav-item .bnav-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.bottom-nav-item.active {
  color: #00f0ff;
}

.bottom-nav-item.active .bnav-icon {
  filter: drop-shadow(0 0 6px #00f0ff);
}

/* UTILITY CLASSES */
.mobile-only {
  display: none !important;
}

.desktop-only,
.desktop-only-nav {
  display: flex !important;
}

.btn-logout {
  background: transparent;
  border: none;
  color: #ff2d55;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  margin-left: 6px;
}

.app-viewport {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px;
  min-height: calc(100vh - 140px);
}

.view-section {
  display: none;
}

.view-section.active {
  display: block;
}

/* ========================================================
   OFFICIAL RUNNING MARQUEE TICKER
   ======================================================== */
.official-ticker-strip {
  background: #06070a;
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 8px;
  padding: 8px 0;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.official-ticker-strip::before,
.official-ticker-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.official-ticker-strip::before {
  left: 0;
  background: linear-gradient(90deg, #06070a 0%, transparent 100%);
}

.official-ticker-strip::after {
  right: 0;
  background: linear-gradient(270deg, #06070a 0%, transparent 100%);
}

.ticker-content {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: tickerMarquee 28s linear infinite;
  white-space: nowrap;
}

.official-ticker-strip:hover .ticker-content {
  animation-play-state: paused;
}

.ticker-item {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #cbd5e1;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ticker-dot {
  color: #00f0ff;
  font-size: 10px;
  animation: radarPulse 1.5s infinite;
}

@keyframes tickerMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================================
   OFFICIAL 2-COLUMN 3D HERO SECTION
   ======================================================== */
.hero-official-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
  background: radial-gradient(circle at 75% 30%, rgba(0, 240, 255, 0.08) 0%, transparent 60%),
              linear-gradient(180deg, #0d0f18 0%, #07080d 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 44px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.badge-live-radar {
  width: 8px;
  height: 8px;
  background: #00f0ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00f0ff;
  animation: radarPulse 1.8s infinite;
}

.hero-pill-badge .badge-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #00f0ff;
  letter-spacing: 1px;
}

.hero-headline-modern {
  font-family: 'Rajdhani', sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.headline-gradient {
  background: linear-gradient(135deg, #00f0ff 0%, #38bdf8 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.hero-desc-modern {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 28px;
}

/* HERO ACTION BUTTONS */
.hero-action-buttons-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 28px;
}

.btn-hero-primary {
  flex: 1;
  min-width: 220px;
  background: linear-gradient(135deg, #00f0ff 0%, #0284c7 100%);
  color: #000000;
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 240, 255, 0.55);
}

.btn-hero-primary .btn-hero-icon {
  font-size: 24px;
}

.btn-hero-primary .btn-hero-text strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #000000;
}

.btn-hero-primary .btn-hero-text small {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.75);
}

.btn-hero-primary .btn-hero-arrow {
  margin-left: auto;
  font-size: 14px;
  font-weight: 900;
}

.btn-hero-secondary {
  flex: 1;
  min-width: 220px;
  background: rgba(20, 24, 38, 0.7);
  backdrop-filter: blur(12px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.btn-hero-secondary:hover {
  background: rgba(30, 36, 56, 0.85);
  border-color: rgba(0, 240, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-hero-secondary .btn-hero-icon {
  font-size: 24px;
}

.btn-hero-secondary .btn-hero-text strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.btn-hero-secondary .btn-hero-text small {
  font-size: 11px;
  color: #94a3b8;
}

.btn-hero-secondary .btn-hero-arrow {
  margin-left: auto;
  font-size: 14px;
  color: #00f0ff;
  font-weight: 900;
}

/* HERO STATS STRIP */
.hero-stats-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

.stat-pill {
  background: rgba(10, 12, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 16px;
  border-radius: 8px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.stat-pill .stat-val {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #ffd700;
}

.stat-pill .stat-lbl {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 3D FLOATING CHARACTER CONTAINER */
.hero-right-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-combat-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 998;
  display: block;
}

.hero-3d-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  transform-style: preserve-3d;
  transform: translateZ(0);
  will-change: transform;
}

.hero-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  transform: translateZ(0);
}

.hero-glow-backdrop {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.3) 0%, rgba(56, 189, 248, 0.12) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(35px);
  z-index: 0;
  pointer-events: none;
  transform: translateZ(0);
  will-change: transform;
}

.hero-3d-character {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 15px rgba(0, 240, 255, 0.35));
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  pointer-events: auto;
  cursor: grab;
}

.hero-3d-character:active {
  cursor: grabbing;
}

@keyframes glowPulse {
  0% { transform: scale(0.92); opacity: 0.7; }
  100% { transform: scale(1.18); opacity: 1; }
}

@keyframes radarPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* FLOATING GLASS CHIPS WITH 3D DEPTH */
.floating-chip {
  position: absolute;
  background: rgba(14, 17, 26, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 240, 255, 0.35);
  padding: 8px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 240, 255, 0.2);
  z-index: 3;
  pointer-events: none;
  transform-style: preserve-3d;
  will-change: transform;
}

.floating-chip .chip-icon {
  font-size: 18px;
}

.floating-chip strong {
  display: block;
  font-size: 11px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.floating-chip small {
  font-size: 9px;
  color: #38bdf8;
  font-weight: 600;
}

.chip-top-right {
  top: 10px;
  right: -10px;
  animation-delay: 0.2s;
}

.chip-bottom-left {
  bottom: 20px;
  left: -20px;
  animation-delay: 1.2s;
  border-color: rgba(255, 215, 0, 0.3);
}

.chip-bottom-left small {
  color: #ffd700;
}

.chip-bottom-right {
  bottom: -10px;
  right: 15px;
  animation-delay: 2.2s;
  border-color: rgba(52, 211, 153, 0.3);
}

.chip-bottom-right small {
  color: #34d399;
}

@keyframes floatChip {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

@media (max-width: 900px) {
  .hero-official-container {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    text-align: center;
  }
  .hero-left-col {
    align-items: center;
  }
  .hero-headline-modern {
    font-size: 38px;
  }
  .hero-action-buttons-group {
    flex-direction: column;
  }
  .hero-stats-strip {
    justify-content: center;
  }
  .floating-chip {
    display: none;
  }
}

.view-header-strip {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 2px solid #202032;
  padding-bottom: 20px;
  margin-bottom: 24px;
  gap: 16px;
}

.page-title {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
}

.page-sub {
  font-size: 14px;
  color: #94a3b8;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.section-title {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
}

.section-sub {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 2px;
}

.btn-back-link {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  width: max-content;
  margin-bottom: 4px;
}

.btn-back-link:hover {
  color: #ff2d55;
}

.btn-action-primary {
  background: #ff2d55;
  color: #ffffff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.5px;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0px #000000;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-action-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px #000000, 0 0 16px rgba(255, 45, 85, 0.4);
  background: #ff4770;
}

.btn-action-primary-sm {
  background: #ff2d55;
  color: #ffffff;
  font-weight: 900;
  font-size: 11px;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0px #000000;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-action-primary-sm:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0px #000000;
  background: #ff4770;
}

.btn-secondary-sm {
  background: #141420;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0px #000000;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-secondary-sm:hover {
  background: #242436;
  border-color: #000000;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0px #000000;
}

.btn-revert-sm {
  background: #241018;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0px #000000;
  color: #ff2d55;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-revert-sm:hover {
  background: #ff2d55;
  color: #ffffff;
  transform: translate(-1px, -1px);
}

.btn-row-del {
  background: #201014;
  border: 1.5px solid #000000;
  box-shadow: 2px 2px 0px #000000;
  color: #ff2d55;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-row-del:hover {
  background: #ff2d55;
  color: #ffffff;
}

.btn-link-action {
  background: transparent;
  border: none;
  color: #00f0ff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.btn-link-action:hover {
  text-decoration: underline;
  color: #ffd700;
}

.tourney-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.tourney-card-item {
  background: #0d0d16;
  border: 2px solid #202032;
  border-radius: 12px;
  box-shadow: 4px 4px 0px #000000;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.tourney-card-item:hover {
  border-color: #ff2d55;
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0px #000000, 0 0 20px rgba(255, 45, 85, 0.25);
}

.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.badge-tag {
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  border: 1.5px solid #000000;
  box-shadow: 2px 2px 0px #000000;
}

.badge-tag.live {
  background: #ff2d55;
  color: #ffffff;
}

.badge-tag.open {
  background: #ffde59;
  color: #000000;
}

.badge-tag.completed {
  background: #64748b;
  color: #ffffff;
}

.t-card-title {
  font-size: 17px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 4px;
}

.t-card-meta {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 16px;
}

.t-card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #141420;
  padding: 12px;
  border-radius: 8px;
  border: 1.5px solid #000000;
  box-shadow: 2px 2px 0px #000000;
  margin-bottom: 16px;
}

.t-metric {
  display: flex;
  flex-direction: column;
}

.tm-label {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 800;
}

.tm-val {
  font-size: 14px;
  color: #ffffff;
  font-weight: 900;
}

.tm-val.highlight {
  color: #ff2d55;
}

.create-form-layout {
  max-width: 1000px;
  margin: 0 auto;
}

.form-card {
  background: #0d0d16;
  border: 2px solid #202032;
  box-shadow: 4px 4px 0px #000000;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.card-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.card-form-title {
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 6px;
}

.card-form-sub {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 16px;
}

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

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #94a3b8;
  margin-bottom: 6px;
}

.form-label-inline {
  font-size: 12px;
  font-weight: 800;
  color: #94a3b8;
}

.form-input {
  width: 100%;
  background: #0f0f18;
  border: 2px solid #242436;
  box-shadow: 3px 3px 0px #000000;
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  transition: all 0.15s ease;
}

.form-input:focus {
  border-color: #ff2d55;
  box-shadow: 4px 4px 0px #000000, 0 0 12px rgba(255, 45, 85, 0.35);
  outline: none;
}

.form-select {
  width: 100%;
  background: #0f0f18;
  border: 2px solid #242436;
  box-shadow: 3px 3px 0px #000000;
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
}

.form-select:focus {
  border-color: #ff2d55;
  outline: none;
}

.form-select-sm {
  background: #0f0f18;
  border: 2px solid #242436;
  box-shadow: 2px 2px 0px #000000;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-family: inherit;
}

.placement-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.pt-box {
  background: #141420;
  border: 2px solid #000000;
  box-shadow: 2px 2px 0px #000000;
  padding: 10px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pt-lbl {
  font-size: 11px;
  font-weight: 800;
  color: #94a3b8;
}

.pt-input {
  width: 60px;
  background: #0d0d16;
  border: 1.5px solid #2e2e42;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  padding: 4px 6px;
  border-radius: 4px;
}

.squads-list-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.squad-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #12121c;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0px #000000;
  padding: 10px 14px;
  border-radius: 6px;
}

.squad-slot-tag {
  background: #ffde59;
  color: #000000;
  font-size: 11px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #000000;
}

.squad-name-tag {
  font-weight: 900;
  color: #ffffff;
  font-size: 13px;
}

.squad-roster-summary {
  font-size: 12px;
  color: #94a3b8;
  margin-left: auto;
}

.form-actions-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.workspace-header-card {
  background: #0d0d16;
  border: 2px solid #202032;
  box-shadow: 4px 4px 0px #000000;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.ws-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.ws-status-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ws-badge-status {
  background: #ff2d55;
  border: 1.5px solid #000000;
  box-shadow: 2px 2px 0px #000000;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 4px;
}

.ws-title-row {
  margin-bottom: 20px;
}

.ws-title {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 4px;
  text-shadow: 0 0 16px rgba(255, 45, 85, 0.25);
}

.ws-game-meta {
  font-size: 14px;
  color: #94a3b8;
}

.workspace-nav-tabs {
  display: flex;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 2px 8px 2px;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  -webkit-overflow-scrolling: touch;
}

.workspace-nav-tabs::-webkit-scrollbar {
  display: none !important;
  width: 0px !important;
  height: 0px !important;
}

.ws-tab {
  background: #111422;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ws-tab:hover {
  color: #ffffff;
  background: #191d30;
  border-color: rgba(0, 240, 255, 0.35);
  transform: translateY(-1px);
}

.ws-tab.active {
  background: rgba(0, 240, 255, 0.12);
  color: #00f0ff;
  border: 1px solid rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.2);
  font-weight: 800;
}

.ws-panel {
  display: none;
}

.ws-panel.active {
  display: block;
}

/* EXPORT ACTION CARDS & STUDIO */
.hero-action-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.hero-action-card {
  background: #0d0f18;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease;
}

.hero-action-card:hover {
  border-color: rgba(0, 240, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 240, 255, 0.12);
}

.hero-action-card .card-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.hero-action-card .card-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.hero-action-card .card-desc {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 18px;
  flex: 1;
}

.btn-card-launch {
  background: rgba(0, 240, 255, 0.1);
  color: #00f0ff;
  border: 1px solid rgba(0, 240, 255, 0.35);
  padding: 10px 16px;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: all 0.2s ease;
}

.btn-card-launch:hover {
  background: #00f0ff;
  color: #000000;
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.4);
}

/* STUDIO CONTROLS & TEMPLATES GRID */
.studio-controls-bar {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  background: #111422;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 18px;
}

.template-filter-pills {
  display: flex;
  gap: 6px;
}

.pill-btn {
  background: #181c2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.pill-btn:hover {
  color: #ffffff;
  border-color: rgba(0, 240, 255, 0.4);
}

.pill-btn.active {
  background: #00f0ff;
  color: #000000;
  border-color: #00f0ff;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}

.templates-grid-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.template-item-card {
  background: #111420;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.template-item-card:hover {
  border-color: rgba(0, 240, 255, 0.4);
  transform: translateY(-2px);
}

.template-item-card.active {
  border-color: #00f0ff;
  background: rgba(0, 240, 255, 0.08);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.25);
}

.t-thumb-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 6px;
  display: inline-block;
}

.t-thumb-title {
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  display: block;
}

.stats-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: #0d0d16;
  border: 2px solid #202032;
  box-shadow: 4px 4px 0px #000000;
  padding: 18px 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sc-label {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 800;
}

.sc-val {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
}

.sc-val.highlight {
  color: #ff2d55;
}

.quick-actions-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-quick-act {
  background: #141422;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0px #000000;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-quick-act:hover {
  background: #242436;
  color: #ffd700;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px #000000;
}

.custom-table-wrapper {
  background: #0d0d16;
  border: 2px solid #202032;
  box-shadow: 4px 4px 0px #000000;
  border-radius: 12px;
  overflow-x: auto;
  margin-bottom: 24px;
}

.table-header-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 2px solid #202032;
}

.table-title {
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
}

.anime-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}

.anime-table th {
  background: #12121c;
  color: #cbd5e1;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 14px 16px;
  border-bottom: 2px solid #202032;
}

.anime-table td {
  padding: 12px 16px;
  border-bottom: 1.5px solid #161624;
  color: #f1f5f9;
}

.anime-table tr:hover td {
  background: #161624;
}

.rank-badge {
  font-weight: 900;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  border: 1.5px solid #000000;
  box-shadow: 2px 2px 0px #000000;
}

.rank-1 {
  background: #ffd700;
  color: #000000;
}

.rank-2 {
  background: #e2e8f0;
  color: #000000;
}

.rank-3 {
  background: #d97706;
  color: #ffffff;
}

.total-pts-pill {
  background: #00f0ff;
  border: 1.5px solid #000000;
  box-shadow: 2px 2px 0px #000000;
  color: #000000;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
}

.table-edit-input {
  background: #0d0d16;
  border: 2px solid #000000;
  box-shadow: 2px 2px 0px #000000;
  color: #ffffff;
  font-weight: 900;
  font-size: 13px;
  padding: 6px 8px;
  border-radius: 4px;
  width: 60px;
  text-align: center;
}

.table-edit-input:focus {
  border-color: #ff2d55;
  outline: none;
}

.match-selector-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0d0d16;
  border: 2px solid #202032;
  box-shadow: 4px 4px 0px #000000;
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.match-actions-inline {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.match-status-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #141420;
  border: 2px solid #000000;
  box-shadow: 2px 2px 0px #000000;
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 13px;
}

.msb-lbl {
  color: #94a3b8;
  font-weight: 700;
}

.msb-val {
  font-weight: 900;
  color: #ffffff;
}

.team-roster-card {
  background: #0d0d16;
  border: 2px solid #202032;
  box-shadow: 4px 4px 0px #000000;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.team-roster-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #202032;
  padding-bottom: 12px;
  margin-bottom: 14px;
}

.team-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-slot-badge {
  background: #ffde59;
  color: #000000;
  font-weight: 900;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1.5px solid #000000;
  box-shadow: 2px 2px 0px #000000;
}

.team-name-text {
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
}

.team-tag-pill {
  background: #181824;
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #000000;
}

.team-actions-group {
  display: flex;
  gap: 8px;
}

.players-table-wrapper {
  background: #101018;
  border: 1.5px solid #202032;
  border-radius: 8px;
  overflow-x: auto;
}

.player-role-badge {
  font-size: 11px;
  font-weight: 900;
  color: #00f0ff;
  background: #161624;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #000000;
}

.modal-overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.show {
  display: flex;
}

.modal-content {
  background: #0c0c14;
  border: 2.5px solid #ff2d55;
  box-shadow: 8px 8px 0px #000000, 0 0 32px rgba(255, 45, 85, 0.3);
  border-radius: 14px;
  width: 100%;
  max-width: 540px;
  overflow: hidden;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 2px solid #202032;
  background: #10101a;
}

.modal-title {
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
}

.btn-close-modal {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 18px;
  cursor: pointer;
}

.btn-close-modal:hover {
  color: #ff2d55;
}

.modal-body {
  padding: 20px;
}

.modal-sub-desc {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 16px;
}

.auth-tabs-row {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  background: #141420;
  padding: 4px;
  border-radius: 8px;
  border: 2px solid #000000;
}

.auth-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #94a3b8;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-tab-btn.active {
  background: #ff2d55;
  color: #ffffff;
  border: 1.5px solid #000000;
  box-shadow: 2px 2px 0px #000000;
}

.auth-error-box {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 14px;
  display: none;
}

.auth-success-box {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 14px;
  display: none;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid #1c1c28;
}

.team-modal-summary-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  background: #12121a;
  border: 1px solid #1c1c28;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin-top: 12px;
}

.tm-stat-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tm-stat-lbl {
  font-size: 10px;
  color: #64748b;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.tm-stat-val {
  font-size: 15px;
  font-weight: 900;
  color: #ffffff;
}

.tm-stat-val.highlight {
  color: #00f0ff;
}

.tm-stat-val.super {
  color: #ffd700;
}

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast-item {
  background: #12121a;
  border: 1px solid #00f0ff;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

.studio-controls-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 20px;
  background: #12121c;
  border: 1px solid #202030;
  padding: 14px 18px;
  border-radius: 10px;
}

.template-filter-pills {
  display: flex;
  gap: 6px;
}

.pill-btn {
  background: #181826;
  border: 1px solid #28283c;
  color: #94a3b8;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pill-btn.active, .pill-btn:hover {
  background: #ff2d55;
  color: #ffffff;
  border-color: #ff2d55;
}

.templates-grid-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 4px;
}

.template-card-choice {
  background: #12121c;
  border: 2px solid #202030;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  position: relative;
}

.template-card-choice:hover {
  border-color: #404060;
  transform: translateY(-2px);
}

.template-card-choice.active {
  border-color: #ff2d55;
  background: #1c1420;
  box-shadow: 0 4px 16px rgba(255, 45, 85, 0.3);
}

.tc-preview-box {
  width: 100%;
  height: 60px;
  border-radius: 6px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tc-title {
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
}

.tc-game-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 4px;
}

.tc-game-badge.ff {
  background: rgba(255, 69, 0, 0.2);
  color: #ff6b35;
  border: 1px solid rgba(255, 69, 0, 0.4);
}

.tc-game-badge.bgmi {
  background: rgba(250, 204, 21, 0.15);
  color: #facc15;
  border: 1px solid rgba(250, 204, 21, 0.4);
}

.ws-social-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #000000;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  border: 1.5px solid #000000;
  box-shadow: 2px 2px 0px #000000;
  transition: all 0.15s ease;
}

.ws-social-link-btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0px #000000;
}

.ws-social-link-btn.discord {
  background: #5865F2;
  color: #ffffff;
}

.card-action-btns-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
}

.btn-card-register {
  background: #00f0ff;
  color: #000000;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0px #000000;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  flex: 1;
  text-align: center;
  transition: all 0.15s ease;
}

.btn-card-register:hover {
  background: #ffde59;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px #000000;
}

.btn-card-del-t {
  background: #201014;
  color: #ff2d55;
  border: 1.5px solid #000000;
  box-shadow: 2px 2px 0px #000000;
  padding: 8px 10px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-card-del-t:hover {
  background: #ff2d55;
  color: #ffffff;
}

.btn-card-share {
  background: #181826;
  color: #ffffff;
  border: 1.5px solid #000000;
  box-shadow: 2px 2px 0px #000000;
  padding: 8px 10px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-card-share:hover {
  background: #00f0ff;
  color: #000000;
  transform: translate(-1px, -1px);
}

.ws-registered-banner {
  animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0px rgba(52, 211, 153, 0); }
  50% { box-shadow: 0 0 14px rgba(52, 211, 153, 0.35); }
}

/* ==========================================================================
   THEME TOGGLE BUTTON
   ========================================================================== */
.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #181826;
  border: 1px solid #303046;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.theme-toggle-btn:hover {
  background: #242436;
  border-color: #ffd700;
  color: #ffd700;
  transform: translateY(-1px);
}

/* ==========================================================================
   🖋️ ANIME / MANGA SKETCHED LIGHT THEME (Full Hand-Drawn Inked Aesthetic)
   ========================================================================== */
body.theme-anime-sketch {
  background-color: #fcf9f2;
  background-image: 
    radial-gradient(#c8c2b5 0.8px, transparent 0.8px),
    radial-gradient(#c8c2b5 0.8px, #fcf9f2 0.8px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  color: #121214;
}

/* Header in Manga Mode */
body.theme-anime-sketch .anime-header {
  background: rgba(252, 249, 242, 0.95);
  border-bottom: 2.5px solid #141414;
  box-shadow: 0 4px 0px #141414;
}

body.theme-anime-sketch .logo-text {
  color: #141414;
}

body.theme-anime-sketch .logo-slash {
  color: #ff2a5f;
}

body.theme-anime-sketch .logo-badge {
  background: #ffde59;
  color: #141414;
  border: 2px solid #141414;
  box-shadow: 2px 2px 0px #141414;
}

body.theme-anime-sketch .nav-link {
  color: #4a4a55;
  border: 2px solid transparent;
}

body.theme-anime-sketch .nav-link:hover {
  color: #141414;
  background: #f0eae1;
}

body.theme-anime-sketch .nav-link.active {
  color: #141414;
  background: #ffde59;
  border: 2px solid #141414;
  box-shadow: 3px 3px 0px #141414;
}

body.theme-anime-sketch .theme-toggle-btn {
  background: #141414;
  color: #ffde59;
  border: 2px solid #141414;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

body.theme-anime-sketch .btn-auth-pill {
  background: #ffffff;
  color: #141414;
  border: 2.5px solid #141414;
  box-shadow: 3px 3px 0px #141414;
}

body.theme-anime-sketch .btn-auth-pill:hover {
  background: #ff2a5f;
  color: #ffffff;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0px #141414;
}

body.theme-anime-sketch .user-profile-badge {
  background: #ffffff;
  color: #141414;
  border: 2px solid #141414;
  box-shadow: 2px 2px 0px #141414;
}

body.theme-anime-sketch .db-sync-badge {
  background: #dcfce7;
  color: #15803d;
  border: 2px solid #141414;
  box-shadow: 2px 2px 0px #141414;
}

body.theme-anime-sketch .db-sync-badge.connecting {
  background: #fef08a;
  color: #854d0e;
}

body.theme-anime-sketch .db-sync-badge.offline {
  background: #f4f4f5;
  color: #52525b;
}

/* Manga Hero Section */
body.theme-anime-sketch .hero-banner {
  background: #ffffff;
  border: 3px solid #141414;
  box-shadow: 6px 6px 0px #141414;
}

body.theme-anime-sketch .hero-tag {
  background: #ff2a5f;
  color: #ffffff;
  border: 2px solid #141414;
  box-shadow: 3px 3px 0px #141414;
}

body.theme-anime-sketch .hero-headline {
  color: #141414;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.15);
}

body.theme-anime-sketch .hero-tagline {
  color: #4b5563;
}

/* Manga Sketched Action Cards */
body.theme-anime-sketch .hero-action-card,
body.theme-anime-sketch .tourney-card-item,
body.theme-anime-sketch .form-card,
body.theme-anime-sketch .team-roster-card {
  background: #ffffff;
  border: 2.5px solid #141414;
  box-shadow: 4px 4px 0px #141414;
}

body.theme-anime-sketch .hero-action-card:hover,
body.theme-anime-sketch .tourney-card-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0px #141414;
  border-color: #141414;
}

body.theme-anime-sketch .card-heading,
body.theme-anime-sketch .t-card-title,
body.theme-anime-sketch .team-name-text,
body.theme-anime-sketch .section-title,
body.theme-anime-sketch .ws-title-large {
  color: #141414;
}

body.theme-anime-sketch .card-desc,
body.theme-anime-sketch .t-card-meta,
body.theme-anime-sketch .section-sub,
body.theme-anime-sketch .ws-game-meta {
  color: #4b5563;
}

body.theme-anime-sketch .badge-tag.live {
  background: #ff2a5f;
  color: #ffffff;
  border: 1.5px solid #141414;
  box-shadow: 2px 2px 0px #141414;
}

body.theme-anime-sketch .badge-tag.open,
body.theme-anime-sketch .badge-tag.completed {
  background: #ffde59;
  color: #141414;
  border: 1.5px solid #141414;
  box-shadow: 2px 2px 0px #141414;
}

body.theme-anime-sketch .t-card-metrics,
body.theme-anime-sketch .t-metric-grid,
body.theme-anime-sketch .t-metric {
  background: #f7f4ed;
  border: 1.5px solid #141414;
}

body.theme-anime-sketch .tm-val {
  color: #141414;
}

body.theme-anime-sketch .tm-val.highlight {
  color: #ff2a5f;
}

/* Manga Buttons */
body.theme-anime-sketch .btn-card-launch,
body.theme-anime-sketch .btn-action-primary,
body.theme-anime-sketch .btn-action-primary-sm {
  background: #ff2a5f;
  color: #ffffff;
  border: 2px solid #141414;
  box-shadow: 3px 3px 0px #141414;
  font-weight: 900;
}

body.theme-anime-sketch .btn-card-launch:hover,
body.theme-anime-sketch .btn-action-primary:hover,
body.theme-anime-sketch .btn-action-primary-sm:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px #141414;
  background: #e11d48;
}

body.theme-anime-sketch .btn-secondary-sm {
  background: #ffffff;
  color: #141414;
  border: 2px solid #141414;
  box-shadow: 3px 3px 0px #141414;
  font-weight: 900;
}

body.theme-anime-sketch .btn-secondary-sm:hover {
  background: #ffde59;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px #141414;
}

body.theme-anime-sketch .btn-row-del {
  background: #fee2e2;
  color: #b91c1c;
  border: 1.5px solid #141414;
  box-shadow: 2px 2px 0px #141414;
}

/* Manga Workspace Navigation */
body.theme-anime-sketch .ws-subnav {
  border-bottom: 2.5px solid #141414;
}

body.theme-anime-sketch .ws-tab-btn {
  color: #52525b;
  border: 2px solid transparent;
}

body.theme-anime-sketch .ws-tab-btn:hover {
  color: #141414;
  background: #f0eae1;
}

body.theme-anime-sketch .ws-tab-btn.active {
  color: #141414;
  background: #ffde59;
  border: 2.5px solid #141414;
  box-shadow: 4px 4px 0px #141414;
}

/* Manga Sketched Tables */
body.theme-anime-sketch .anime-table {
  background: #ffffff;
  border: 2.5px solid #141414;
  box-shadow: 4px 4px 0px #141414;
}

body.theme-anime-sketch .anime-table th {
  background: #f4efe6;
  color: #141414;
  border-bottom: 2.5px solid #141414;
  font-weight: 900;
}

body.theme-anime-sketch .anime-table td {
  border-bottom: 1.5px solid #e4dfd5;
  color: #141414;
}

body.theme-anime-sketch .anime-table tr:hover td {
  background: #fefce8;
}

body.theme-anime-sketch .rank-badge {
  background: #ffffff;
  color: #141414;
  border: 2px solid #141414;
  box-shadow: 2px 2px 0px #141414;
}

body.theme-anime-sketch .rank-badge.rank-1 {
  background: #ffde59;
  color: #141414;
}

body.theme-anime-sketch .rank-badge.rank-2 {
  background: #e4e4e7;
  color: #141414;
}

body.theme-anime-sketch .rank-badge.rank-3 {
  background: #fed7aa;
  color: #141414;
}

body.theme-anime-sketch .total-pts-pill {
  background: #ffde59;
  color: #141414;
  border: 1.5px solid #141414;
  box-shadow: 2px 2px 0px #141414;
}

body.theme-anime-sketch .player-role-badge,
body.theme-anime-sketch .team-slot-badge {
  background: #dbeafe;
  color: #1e40af;
  border: 1.5px solid #141414;
  box-shadow: 2px 2px 0px #141414;
}

body.theme-anime-sketch .team-tag-pill {
  background: #f4f4f5;
  color: #141414;
  border: 1.5px solid #141414;
}

/* Manga Form Controls & Inputs */
body.theme-anime-sketch .form-input,
body.theme-anime-sketch .form-select,
body.theme-anime-sketch .table-edit-input,
body.theme-anime-sketch .pt-input {
  background: #ffffff;
  color: #141414;
  border: 2px solid #141414;
  box-shadow: 3px 3px 0px #141414;
}

body.theme-anime-sketch .form-input:focus,
body.theme-anime-sketch .form-select:focus,
body.theme-anime-sketch .table-edit-input:focus {
  border-color: #ff2a5f;
  outline: none;
  background: #fffdf5;
}

body.theme-anime-sketch .form-label,
body.theme-anime-sketch .tm-label {
  color: #4a4a55;
  font-weight: 800;
}

/* Manga Modals */
body.theme-anime-sketch .modal-content {
  background: #ffffff;
  border: 3px solid #141414;
  box-shadow: 8px 8px 0px #141414;
}

body.theme-anime-sketch .modal-header,
body.theme-anime-sketch .modal-footer {
  border-color: #141414;
  background: #fbf8f2;
}

body.theme-anime-sketch .modal-title {
  color: #141414;
}

body.theme-anime-sketch .auth-tabs-row {
  background: #f4efe6;
  border: 2px solid #141414;
}

body.theme-anime-sketch .auth-tab-btn {
  color: #52525b;
}

body.theme-anime-sketch .auth-tab-btn.active {
  background: #ff2a5f;
  color: #ffffff;
  border: 1.5px solid #141414;
  box-shadow: 2px 2px 0px #141414;
}

/* Manga Studio Controls & Template Cards */
body.theme-anime-sketch .studio-controls-bar {
  background: #f7f4ed;
  border: 2.5px solid #141414;
  box-shadow: 4px 4px 0px #141414;
}

body.theme-anime-sketch .pill-btn {
  background: #ffffff;
  color: #141414;
  border: 2px solid #141414;
  box-shadow: 2px 2px 0px #141414;
}

body.theme-anime-sketch .pill-btn.active {
  background: #ff2a5f;
  color: #ffffff;
}

body.theme-anime-sketch .template-card-choice {
  background: #ffffff;
  border: 2.5px solid #141414;
  box-shadow: 3px 3px 0px #141414;
}

body.theme-anime-sketch .template-card-choice.active {
  border-color: #ff2a5f;
  background: #fef2f4;
  box-shadow: 5px 5px 0px #141414;
}

body.theme-anime-sketch .template-card-choice .tc-title {
  color: #141414;
}

body.theme-anime-sketch .canvas-preview-wrapper {
  background: #f7f4ed;
  border: 2.5px solid #141414;
  box-shadow: 4px 4px 0px #141414;
}

body.theme-anime-sketch .canvas-container-responsive {
  border: 3px solid #141414;
  box-shadow: 6px 6px 0px #141414;
}

/* ==========================================================================
   📱 ULTRA-CLEAN MOBILE RESPONSIVENESS (All Screen Sizes)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-action-cards {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .anime-header {
    padding: 10px 14px;
  }

  .nav-container {
    flex-wrap: wrap;
    gap: 10px;
  }

  .brand-logo {
    font-size: 16px;
  }

  .logo-text {
    font-size: 18px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding: 4px 0;
    gap: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .nav-link {
    font-size: 11px;
    padding: 6px 12px;
    flex-shrink: 0;
  }

  .nav-actions {
    margin-left: auto;
    gap: 8px;
  }

  .theme-toggle-btn {
    font-size: 10px;
    padding: 5px 10px;
  }

  .db-sync-badge {
    font-size: 10px;
    padding: 4px 8px;
  }

  .btn-auth-pill {
    font-size: 11px;
    padding: 6px 12px;
  }

  .app-viewport {
    padding: 16px 12px;
  }

  .hero-banner {
    padding: 24px 16px;
    margin-bottom: 20px;
  }

  .hero-headline {
    font-size: 26px;
    line-height: 1.2;
  }

  .hero-tagline {
    font-size: 13px;
  }

  .hero-action-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ws-header-card {
    padding: 16px;
  }

  .ws-title-large {
    font-size: 20px;
  }

  .ws-subnav {
    overflow-x: auto;
    white-space: nowrap;
    gap: 4px;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .ws-tab-btn {
    font-size: 11px;
    padding: 6px 12px;
    flex-shrink: 0;
  }

  .overview-metric-strip {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .form-row-2,
  .form-row-3 {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .studio-controls-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
  }

  .templates-grid-selector {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 8px;
    max-height: 240px;
  }

  .template-card-choice {
    padding: 8px;
  }

  .tc-preview-box {
    height: 48px;
    font-size: 9px;
  }

  .tc-title {
    font-size: 11px;
  }

  .modal-overlay {
    padding: 8px;
  }

  .modal-content {
    max-width: 100%;
    max-height: 92vh;
    overflow-y: auto;
  }

  .modal-body {
    padding: 14px;
  }

  .modal-header,
  .modal-footer {
    padding: 12px 14px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 22px;
  }

  .card-icon {
    font-size: 24px;
  }

  .t-metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .anime-table th,
  .anime-table td {
    padding: 8px 10px;
    font-size: 12px;
  }

  .team-actions-group {
    flex-wrap: wrap;
    gap: 6px;
  }

  .toast-container {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }
}

/* SLOT PRESET BUTTONS */
.btn-slot-preset {
  background: #141422;
  color: #cbd5e1;
  border: 1.5px solid #28283c;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 2px 2px 0px #000000;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-slot-preset:hover {
  border-color: #00f0ff;
  color: #00f0ff;
  transform: translate(-1px, -1px);
}

.btn-slot-preset.active {
  background: #00f0ff;
  color: #000000;
  border-color: #000000;
}

[data-theme="sketch"] .btn-slot-preset {
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  box-shadow: 2px 2px 0px #000000;
}

[data-theme="sketch"] .btn-slot-preset.active {
  background: #00f0ff;
  color: #000000;
}

/* POOLS & GROUPS SYSTEM STYLING */
.pools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.pool-card {
  background: #12121e;
  border: 1.5px solid #28283c;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 3px 3px 0px #000000;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.pool-card:hover {
  border-color: #3e3e5e;
}

.pool-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #28283c;
}

.pool-card-title {
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pool-card-slots {
  font-size: 12px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  background: #1c1c2e;
  border: 1px solid #3b3b54;
  color: #00f0ff;
}

.pool-squads-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-height: 120px;
}

.pool-squad-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #181826;
  border: 1px solid #2c2c40;
  border-radius: 8px;
  font-size: 13px;
  transition: background 0.15s ease;
}

.pool-squad-item:hover {
  background: #202034;
}

.pool-squad-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pool-slot-badge {
  background: #28283c;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
}

.pool-squad-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-pool-squad-move {
  background: #242438;
  border: 1px solid #3c3c54;
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-pool-squad-move:hover {
  background: #00f0ff;
  color: #000000;
  border-color: #000000;
}

.btn-pool-del {
  background: transparent;
  border: none;
  color: #ff2d55;
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.15s ease;
}

.btn-pool-del:hover {
  background: rgba(255, 45, 85, 0.15);
}

.pool-filter-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.pool-filter-pill {
  background: #141422;
  border: 1.5px solid #28283c;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.pool-filter-pill:hover {
  border-color: #00f0ff;
  color: #00f0ff;
}

.pool-filter-pill.active {
  background: #00f0ff;
  color: #000000;
  border-color: #000000;
  box-shadow: 2px 2px 0px #000000;
}

[data-theme="sketch"] .pool-card {
  background: #ffffff;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0px #000000;
}

[data-theme="sketch"] .pool-card-title {
  color: #000000;
}

[data-theme="sketch"] .pool-squad-item {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  color: #000000;
}

[data-theme="sketch"] .pool-filter-pill {
  background: #ffffff;
  border: 2px solid #000000;
  color: #000000;
}

[data-theme="sketch"] .pool-filter-pill.active {
  background: #ffde59;
  color: #000000;
}

.vtx-code-badge {
  font-family: monospace;
  font-weight: 900;
  color: #00f0ff;
  background: #141422;
  border: 1px dashed #00f0ff;
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 1px;
}

.payment-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

/* ========================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS & TOUCH OPTIMIZATION
   ======================================================== */

@media (max-width: 992px) {
  .app-viewport {
    padding: 14px 12px 80px 12px;
  }
}

@media (max-width: 860px) {
  /* NAVBAR & HEADER */
  .desktop-only-nav,
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: flex !important;
  }

  .anime-header {
    padding: 8px 12px;
  }

  .nav-container {
    gap: 6px;
  }

  .logo-slash {
    font-size: 18px;
  }

  .logo-text {
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  .logo-badge {
    display: none;
  }

  .db-sync-badge {
    padding: 3px 8px;
    font-size: 10px;
    letter-spacing: 0px;
  }

  .btn-auth-pill {
    padding: 5px 10px;
    font-size: 11px;
    border-radius: 14px;
  }

  .user-profile-badge {
    padding: 4px 8px;
    font-size: 11px;
  }

  /* BODY BOTTOM PADDING FOR MOBILE BOTTOM NAV */
  body {
    padding-bottom: 76px;
  }

  /* RUNNING TICKER STRIP */
  .official-ticker-strip {
    margin-bottom: 14px;
    padding: 6px 0;
    border-radius: 6px;
  }

  .ticker-item {
    font-size: 11.5px;
    gap: 6px;
  }

  /* HERO SECTION */
  .hero-official-container {
    grid-template-columns: 1fr;
    padding: 20px 14px;
    gap: 20px;
    text-align: center;
    border-radius: 16px;
    margin-bottom: 20px;
  }

  .hero-left-col {
    align-items: center;
  }

  .hero-pill-badge {
    padding: 4px 12px;
    margin-bottom: 14px;
  }

  .hero-pill-badge .badge-text {
    font-size: 10px;
    letter-spacing: 0.8px;
  }

  .hero-headline-modern {
    font-size: clamp(28px, 7.5vw, 40px);
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .hero-desc-modern {
    font-size: 12.5px;
    line-height: 1.55;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .hero-action-buttons-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 20px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    min-width: 100%;
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .btn-hero-primary .btn-hero-text strong,
  .btn-hero-secondary .btn-hero-text strong {
    font-size: 14px;
  }

  .btn-hero-primary .btn-hero-text small,
  .btn-hero-secondary .btn-hero-text small {
    font-size: 10.5px;
  }

  .hero-stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 6px;
  }

  .stat-pill {
    padding: 6px 4px;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    border-radius: 6px;
  }

  .stat-pill .stat-val {
    font-size: 15px;
    line-height: 1;
  }

  .stat-pill .stat-lbl {
    font-size: 9.5px;
    letter-spacing: 0px;
  }

  .hero-3d-wrapper {
    max-width: 240px;
    margin: 8px auto 0 auto;
  }

  .hero-glow-backdrop {
    width: 200px;
    height: 200px;
  }

  .hero-3d-character {
    border-radius: 14px;
    max-height: 240px;
  }

  .floating-chip {
    display: none;
  }

  /* TOURNAMENT CARDS & GRID */
  .tourney-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
  }

  .tourney-card-item {
    padding: 16px 12px;
    border-radius: 12px;
  }

  .card-top-row {
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
  }

  .t-card-title {
    font-size: 15.5px;
    line-height: 1.3;
    margin-bottom: 4px;
  }

  .t-card-meta {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .t-card-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
    margin-bottom: 12px;
  }

  .tm-label {
    font-size: 9.5px;
  }

  .tm-val {
    font-size: 13px;
  }

  .card-action-btns-row {
    display: flex;
    gap: 6px;
    align-items: stretch;
    width: 100%;
  }

  .btn-card-register {
    flex: 1.4;
    font-size: 11.5px;
    padding: 10px 8px;
    text-align: center;
    border-radius: 6px;
  }

  .btn-action-primary-sm {
    flex: 1;
    font-size: 11.5px;
    padding: 10px 8px;
    text-align: center;
    border-radius: 6px;
  }

  .btn-card-share,
  .btn-card-del-t {
    width: 38px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 6px;
  }

  /* WORKSPACE RESPONSIVENESS */
  .ws-header {
    padding: 14px 12px;
    border-radius: 12px;
    margin-bottom: 14px;
  }

  .ws-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  #ws-tourney-title {
    font-size: 18px;
  }

  .ws-tab-navigation {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 6px;
    padding: 4px 0 10px 0;
    margin-bottom: 14px;
    width: 100%;
  }

  .ws-tab-navigation::-webkit-scrollbar {
    display: none;
  }

  .ws-tab-btn {
    flex-shrink: 0;
    padding: 8px 12px;
    font-size: 11.5px;
    border-radius: 8px;
  }

  .stats-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .stat-card {
    padding: 12px 10px;
    border-radius: 8px;
  }

  .stat-card .stat-val {
    font-size: 16px;
  }

  /* FORMS & INPUTS (PREVENT IOS ZOOM ON FOCUS) */
  .form-row-2,
  .form-row-3 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-input,
  .form-select {
    font-size: 15px;
    padding: 10px;
    border-radius: 8px;
  }

  .form-card {
    padding: 16px 12px;
    border-radius: 12px;
  }

  /* MODALS ON MOBILE */
  .modal-overlay {
    padding: 8px;
    display: none;
    align-items: center;
    justify-content: center;
  }

  .modal-overlay.show {
    display: flex;
  }

  .modal-content {
    width: 100% !important;
    max-width: 100% !important;
    max-height: 88vh;
    border-radius: 14px;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .modal-header {
    padding: 12px 14px;
    position: sticky;
    top: 0;
    background: #0d0f18;
    z-index: 10;
    border-bottom: 1px solid #242436;
  }

  .modal-title {
    font-size: 15px;
  }

  .modal-body {
    padding: 14px 12px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1;
  }

  .modal-footer {
    padding: 10px 12px;
    position: sticky;
    bottom: 0;
    background: #0d0f18;
    z-index: 10;
    border-top: 1px solid #242436;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .modal-footer button {
    flex: 1;
    min-height: 38px;
    font-size: 12px;
  }

  /* TABLES & LEADERBOARD */
  .custom-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
  }

  .anime-table th,
  .anime-table td {
    padding: 8px 6px;
    font-size: 11px;
    white-space: nowrap;
  }

  /* STANDINGS GRAPHIC STUDIO CANVAS ON MOBILE */
  .canvas-container-responsive {
    border-radius: 8px;
    width: 100%;
  }

  #esports-standings-canvas {
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .nav-container {
    gap: 4px;
  }

  .logo-text {
    font-size: 14px;
  }

  .db-sync-badge {
    display: none;
  }

  .hero-headline-modern {
    font-size: 26px;
  }

  .stats-cards-grid {
    grid-template-columns: 1fr;
  }

  .stat-pill .stat-val {
    font-size: 13.5px;
  }

  .stat-pill .stat-lbl {
    font-size: 8.5px;
  }
}

/* ========================================================
   ULTRA-CLEAN PREMIUM ANIME BLACK & MANGA WHITE THEME
   - High-Contrast Inked Typography (Pitch Black #09090b)
   - Studio Manga White Surfaces (#ffffff)
   - Clean Hand-Inked Comic Outlines (2.5px solid #09090b)
   - Punchy Brutalist Black Shadows (4px - 6px solid #09090b)
   - Zero Goofy Colors: Pure Black & White Mastery
   ======================================================== */
body.theme-anime-sketch {
  background-color: #fafbfc !important;
  background-image: 
    radial-gradient(#94a3b8 1px, transparent 1px),
    radial-gradient(#94a3b8 1px, #fafbfc 1px) !important;
  background-size: 20px 20px !important;
  background-position: 0 0, 10px 10px !important;
  color: #09090b !important;
}

/* NAVBAR IN MANGA MODE */
body.theme-anime-sketch .anime-header {
  background: rgba(255, 255, 255, 0.98) !important;
  border-bottom: 2.5px solid #09090b !important;
  box-shadow: 0 4px 0px #09090b !important;
}

body.theme-anime-sketch .brand-logo .logo-slash {
  color: #dc2626 !important;
  text-shadow: none !important;
  font-weight: 900 !important;
}

body.theme-anime-sketch .logo-text {
  color: #09090b !important;
  font-family: "Space Grotesk", "Outfit", sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: 1.2px !important;
  text-shadow: none !important;
}

body.theme-anime-sketch .main-nav {
  background: #ffffff !important;
  border: 2px solid #09090b !important;
  box-shadow: 3px 3px 0px #09090b !important;
  padding: 4px 6px !important;
}

body.theme-anime-sketch .nav-link {
  color: #334155 !important;
  font-family: "Outfit", sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

body.theme-anime-sketch .nav-link:hover {
  color: #09090b !important;
  background: #f1f5f9 !important;
}

body.theme-anime-sketch .nav-link.active {
  background: #09090b !important;
  color: #ffffff !important;
  border-radius: 6px !important;
  box-shadow: 2px 2px 0px #09090b !important;
}

body.theme-anime-sketch .btn-auth-pill {
  background: #ffffff !important;
  color: #09090b !important;
  border: 2px solid #09090b !important;
  box-shadow: 3px 3px 0px #09090b !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

body.theme-anime-sketch .btn-auth-pill:hover,
body.theme-anime-sketch .btn-auth-pill:active {
  background: #09090b !important;
  color: #ffffff !important;
  transform: translate(2px, 2px) !important;
  box-shadow: 1px 1px 0px #09090b !important;
}

body.theme-anime-sketch .theme-toggle-btn {
  background: #09090b !important;
  color: #ffffff !important;
  border: 2px solid #09090b !important;
  box-shadow: 3px 3px 0px #dc2626 !important;
  font-weight: 900 !important;
  letter-spacing: 0.5px !important;
}

body.theme-anime-sketch .theme-toggle-btn:active {
  transform: translate(2px, 2px) !important;
  box-shadow: 1px 1px 0px #dc2626 !important;
}

body.theme-anime-sketch .user-profile-badge {
  background: #ffffff !important;
  border: 2px solid #09090b !important;
  color: #09090b !important;
  box-shadow: 3px 3px 0px #09090b !important;
}

body.theme-anime-sketch .user-name {
  color: #09090b !important;
  font-weight: 800 !important;
}

body.theme-anime-sketch .db-sync-badge {
  background: #f0fdf4 !important;
  border: 1.5px solid #16a34a !important;
  color: #15803d !important;
  box-shadow: 2px 2px 0px #16a34a !important;
}

/* MARQUEE TICKER IN MANGA MODE */
body.theme-anime-sketch .official-ticker-strip {
  background: #ffffff !important;
  border: 2px solid #09090b !important;
  box-shadow: 4px 4px 0px #09090b !important;
}

body.theme-anime-sketch .ticker-item {
  color: #09090b !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

body.theme-anime-sketch .ticker-dot {
  color: #dc2626 !important;
}

/* HERO CONTAINER IN MANGA MODE */
body.theme-anime-sketch .hero-official-container {
  background: #ffffff !important;
  border: 2.5px solid #09090b !important;
  box-shadow: 6px 6px 0px #09090b !important;
  border-radius: 16px !important;
  position: relative !important;
}

body.theme-anime-sketch .hero-official-container::before {
  content: "⚡ MANGA EDITION // 公式エディション" !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  background: #09090b !important;
  color: #ffffff !important;
  font-size: 9.5px !important;
  font-weight: 900 !important;
  letter-spacing: 1px !important;
  padding: 4px 14px !important;
  border-bottom-left-radius: 8px !important;
  z-index: 10 !important;
}

body.theme-anime-sketch .hero-pill-badge {
  background: #f1f5f9 !important;
  border: 1.5px solid #09090b !important;
  box-shadow: 2px 2px 0px #09090b !important;
}

body.theme-anime-sketch .hero-pill-badge .badge-text {
  color: #09090b !important;
  font-weight: 900 !important;
  letter-spacing: 0.5px !important;
}

body.theme-anime-sketch .badge-live-radar {
  background: #dc2626 !important;
  box-shadow: 0 0 8px #dc2626 !important;
}

body.theme-anime-sketch .hero-headline-modern {
  font-family: "Bebas Neue", "Outfit", sans-serif !important;
  font-size: 58px !important;
  line-height: 0.95 !important;
  letter-spacing: 1.5px !important;
  color: #09090b !important;
  text-shadow: none !important;
}

body.theme-anime-sketch .headline-gradient {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #09090b !important;
  color: #09090b !important;
  text-decoration: underline 4px #dc2626 !important;
  text-underline-offset: 4px !important;
}

body.theme-anime-sketch .hero-desc-modern {
  color: #334155 !important;
  font-weight: 600 !important;
  line-height: 1.6 !important;
}

body.theme-anime-sketch .btn-hero-primary {
  background: #09090b !important;
  color: #ffffff !important;
  border: 2.5px solid #09090b !important;
  box-shadow: 5px 5px 0px #09090b !important;
  transition: transform 0.08s ease, box-shadow 0.08s ease !important;
}

body.theme-anime-sketch .btn-hero-primary:active {
  transform: translate(2px, 2px) !important;
  box-shadow: 2px 2px 0px #09090b !important;
}

body.theme-anime-sketch .btn-hero-primary .btn-hero-text strong {
  color: #ffffff !important;
  font-family: "Space Grotesk", sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: 0.5px !important;
}

body.theme-anime-sketch .btn-hero-primary .btn-hero-text small {
  color: #cbd5e1 !important;
  font-weight: 600 !important;
}

body.theme-anime-sketch .btn-hero-primary .btn-hero-arrow {
  color: #ffffff !important;
}

body.theme-anime-sketch .btn-hero-secondary {
  background: #ffffff !important;
  color: #09090b !important;
  border: 2.5px solid #09090b !important;
  box-shadow: 5px 5px 0px #09090b !important;
  transition: transform 0.08s ease, box-shadow 0.08s ease !important;
}

body.theme-anime-sketch .btn-hero-secondary:active {
  transform: translate(2px, 2px) !important;
  box-shadow: 2px 2px 0px #09090b !important;
}

body.theme-anime-sketch .btn-hero-secondary .btn-hero-text strong {
  color: #09090b !important;
  font-family: "Space Grotesk", sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: 0.5px !important;
}

body.theme-anime-sketch .btn-hero-secondary .btn-hero-text small {
  color: #475569 !important;
  font-weight: 600 !important;
}

body.theme-anime-sketch .stat-pill {
  background: #f8fafc !important;
  border: 2px solid #09090b !important;
  box-shadow: 3px 3px 0px #09090b !important;
}

body.theme-anime-sketch .stat-pill .stat-val {
  color: #09090b !important;
  font-family: "Space Grotesk", sans-serif !important;
  font-weight: 900 !important;
}

body.theme-anime-sketch .stat-pill .stat-lbl {
  color: #475569 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

/* SHONEN RADIAL SPEEDLINE BURST AURA */
body.theme-anime-sketch .hero-glow-backdrop {
  background: 
    radial-gradient(circle, rgba(0, 0, 0, 0.08) 0%, rgba(220, 38, 38, 0.06) 45%, transparent 70%),
    repeating-conic-gradient(from 0deg, rgba(9, 9, 11, 0.04) 0deg 2.5deg, transparent 2.5deg 8deg) !important;
  filter: blur(12px) !important;
  border-radius: 50% !important;
}

/* MANGA COMIC FLOATING CHIPS */
body.theme-anime-sketch .floating-chip {
  background: #ffffff !important;
  border: 2px solid #09090b !important;
  box-shadow: 4px 4px 0px #09090b !important;
  border-radius: 10px !important;
}

body.theme-anime-sketch .floating-chip strong {
  color: #09090b !important;
  font-family: "Space Grotesk", sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: 0.3px !important;
}

body.theme-anime-sketch .floating-chip small {
  color: #475569 !important;
  font-weight: 700 !important;
}

/* CARDS & PANELS IN MANGA MODE */
body.theme-anime-sketch .hero-action-card,
body.theme-anime-sketch .tourney-card-item,
body.theme-anime-sketch .form-card,
body.theme-anime-sketch .manage-card-box,
body.theme-anime-sketch .ws-panel-box,
body.theme-anime-sketch .section-block {
  background: #ffffff !important;
  border: 2.5px solid #09090b !important;
  box-shadow: 5px 5px 0px #09090b !important;
  border-radius: 12px !important;
}

body.theme-anime-sketch .hero-action-card .card-heading,
body.theme-anime-sketch .t-card-title,
body.theme-anime-sketch .section-title-modern,
body.theme-anime-sketch .form-card-title,
body.theme-anime-sketch .section-block h2 {
  color: #09090b !important;
  font-family: "Space Grotesk", sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: 0.5px !important;
}

body.theme-anime-sketch .hero-action-card .card-desc,
body.theme-anime-sketch .t-card-meta,
body.theme-anime-sketch .section-desc-modern,
body.theme-anime-sketch .section-block p,
body.theme-anime-sketch .section-block li {
  color: #334155 !important;
  font-weight: 500 !important;
}

body.theme-anime-sketch .t-card-metrics {
  background: #f8fafc !important;
  border: 1.5px solid #09090b !important;
  box-shadow: 2px 2px 0px #09090b !important;
}

body.theme-anime-sketch .tm-label {
  color: #64748b !important;
  font-weight: 700 !important;
}

body.theme-anime-sketch .tm-val {
  color: #09090b !important;
  font-family: "Space Grotesk", sans-serif !important;
  font-weight: 900 !important;
}

body.theme-anime-sketch .btn-card-launch,
body.theme-anime-sketch .btn-submit-action,
body.theme-anime-sketch .btn-primary-action {
  background: #09090b !important;
  color: #ffffff !important;
  border: 2px solid #09090b !important;
  box-shadow: 3px 3px 0px #09090b !important;
  font-weight: 900 !important;
}

body.theme-anime-sketch .btn-card-launch:hover,
body.theme-anime-sketch .btn-submit-action:hover {
  background: #18181b !important;
  color: #ffffff !important;
}

body.theme-anime-sketch .btn-card-launch:active,
body.theme-anime-sketch .btn-submit-action:active {
  transform: translate(2px, 2px) !important;
  box-shadow: 1px 1px 0px #09090b !important;
}

/* WORKSPACE IN MANGA MODE */
body.theme-anime-sketch .workspace-header-card {
  background: #ffffff !important;
  border: 3px solid #09090b !important;
  box-shadow: 6px 6px 0px #09090b !important;
  border-radius: 16px !important;
}

body.theme-anime-sketch .ws-title,
body.theme-anime-sketch #ws-tourney-title {
  color: #09090b !important;
  font-family: "Space Grotesk", "Outfit", sans-serif !important;
  font-weight: 900 !important;
  text-shadow: none !important;
}

body.theme-anime-sketch .ws-game-meta,
body.theme-anime-sketch #ws-game-meta {
  color: #334155 !important;
  font-weight: 700 !important;
}

body.theme-anime-sketch .btn-back-link {
  color: #09090b !important;
  font-weight: 800 !important;
}

body.theme-anime-sketch .ws-badge-status {
  background: #09090b !important;
  color: #ffffff !important;
  border: 1.5px solid #09090b !important;
  font-weight: 900 !important;
}

body.theme-anime-sketch .btn-secondary-sm {
  background: #ffffff !important;
  color: #09090b !important;
  border: 1.5px solid #09090b !important;
  box-shadow: 2px 2px 0px #09090b !important;
  font-weight: 800 !important;
}

body.theme-anime-sketch .ws-tab {
  background: #ffffff !important;
  border: 2px solid #09090b !important;
  color: #334155 !important;
  font-weight: 800 !important;
}

body.theme-anime-sketch .ws-tab:hover {
  background: #f1f5f9 !important;
  color: #09090b !important;
}

body.theme-anime-sketch .ws-tab.active {
  background: #09090b !important;
  color: #ffffff !important;
  border-color: #09090b !important;
  box-shadow: 3px 3px 0px #09090b !important;
}

/* WORKSPACE STAT CARDS */
body.theme-anime-sketch .stat-card {
  background: #ffffff !important;
  border: 2.5px solid #09090b !important;
  box-shadow: 4px 4px 0px #09090b !important;
  border-radius: 12px !important;
}

body.theme-anime-sketch .sc-label {
  color: #475569 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

body.theme-anime-sketch .sc-val {
  color: #09090b !important;
  font-family: "Space Grotesk", sans-serif !important;
  font-weight: 900 !important;
}

body.theme-anime-sketch .sc-val.highlight {
  color: #dc2626 !important;
}

/* WORKSPACE QUICK ACTION BUTTONS */
body.theme-anime-sketch .btn-quick-act {
  background: #ffffff !important;
  color: #09090b !important;
  border: 2px solid #09090b !important;
  box-shadow: 3px 3px 0px #09090b !important;
  font-weight: 900 !important;
}

body.theme-anime-sketch .btn-quick-act:hover {
  background: #09090b !important;
  color: #ffffff !important;
}

body.theme-anime-sketch .btn-quick-act:active {
  transform: translate(2px, 2px) !important;
  box-shadow: 1px 1px 0px #09090b !important;
}

/* STANDINGS TABLE & WRAPPER IN MANGA MODE */
body.theme-anime-sketch .custom-table-wrapper {
  background: #ffffff !important;
  border: 3px solid #09090b !important;
  box-shadow: 6px 6px 0px #09090b !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}

body.theme-anime-sketch .table-header-strip {
  background: #ffffff !important;
  border-bottom: 2px solid #09090b !important;
}

body.theme-anime-sketch .table-title {
  color: #09090b !important;
  font-family: "Space Grotesk", sans-serif !important;
  font-weight: 900 !important;
}

body.theme-anime-sketch .btn-link-action {
  color: #09090b !important;
  font-weight: 900 !important;
}

body.theme-anime-sketch .btn-action-primary-sm,
body.theme-anime-sketch .btn-action-sm {
  background: #09090b !important;
  color: #ffffff !important;
  border: 1.5px solid #09090b !important;
  box-shadow: 2px 2px 0px #09090b !important;
  font-weight: 900 !important;
}

body.theme-anime-sketch .btn-action-primary-sm:hover {
  background: #27272a !important;
}

/* TABLES IN MANGA MODE */
body.theme-anime-sketch .anime-table {
  background: #ffffff !important;
  border: 2px solid #09090b !important;
  box-shadow: 4px 4px 0px #09090b !important;
}

body.theme-anime-sketch .anime-table th {
  background: #09090b !important;
  color: #ffffff !important;
  font-family: "Space Grotesk", sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: 0.5px !important;
  border-color: #09090b !important;
}

body.theme-anime-sketch .anime-table td {
  border-bottom: 1.5px solid #e2e8f0 !important;
  color: #09090b !important;
  font-weight: 700 !important;
}

body.theme-anime-sketch .anime-table tr:hover td {
  background: #f1f5f9 !important;
}

/* CARDS, MATCHES, SLOTS & ROSTERS */
body.theme-anime-sketch .match-card,
body.theme-anime-sketch .slot-card,
body.theme-anime-sketch .team-card,
body.theme-anime-sketch .roster-card,
body.theme-anime-sketch .payment-verify-card,
body.theme-anime-sketch .tourney-card {
  background: #ffffff !important;
  border: 2.5px solid #09090b !important;
  box-shadow: 4px 4px 0px #09090b !important;
  border-radius: 12px !important;
  color: #09090b !important;
}

body.theme-anime-sketch .tc-title,
body.theme-anime-sketch .card-title {
  color: #09090b !important;
  font-family: "Space Grotesk", sans-serif !important;
  font-weight: 900 !important;
}

body.theme-anime-sketch .tc-meta,
body.theme-anime-sketch .card-meta {
  color: #475569 !important;
  font-weight: 600 !important;
}

/* FORMS & INPUTS IN MANGA MODE */
body.theme-anime-sketch .form-input,
body.theme-anime-sketch .form-select,
body.theme-anime-sketch .form-textarea {
  background: #ffffff !important;
  border: 2px solid #09090b !important;
  color: #09090b !important;
  font-weight: 800 !important;
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.08) !important;
  border-radius: 8px !important;
}

body.theme-anime-sketch .form-input:focus,
body.theme-anime-sketch .form-select:focus {
  border-color: #09090b !important;
  box-shadow: 3px 3px 0px #09090b !important;
  outline: none !important;
}

body.theme-anime-sketch .form-label {
  color: #09090b !important;
  font-weight: 900 !important;
  letter-spacing: 0.5px !important;
}

/* MODALS IN MANGA MODE */
body.theme-anime-sketch .modal-content {
  background: #ffffff !important;
  border: 3px solid #09090b !important;
  box-shadow: 8px 8px 0px #09090b !important;
  color: #09090b !important;
  border-radius: 14px !important;
}

body.theme-anime-sketch .modal-header,
body.theme-anime-sketch .modal-footer {
  background: #f8fafc !important;
  border-color: #09090b !important;
}

body.theme-anime-sketch .modal-title {
  color: #09090b !important;
  font-family: "Space Grotesk", sans-serif !important;
  font-weight: 900 !important;
}

body.theme-anime-sketch .modal-sub-desc {
  color: #475569 !important;
  font-weight: 600 !important;
}

/* MOBILE BOTTOM NAV IN MANGA MODE */
body.theme-anime-sketch .mobile-bottom-nav {
  background: rgba(255, 255, 255, 0.98) !important;
  border-top: 2.5px solid #09090b !important;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.08) !important;
}

body.theme-anime-sketch .bottom-nav-item {
  color: #64748b !important;
  font-weight: 800 !important;
}

body.theme-anime-sketch .bottom-nav-item.active {
  color: #09090b !important;
}

body.theme-anime-sketch .app-footer {
  background: #f8fafc !important;
  border-top: 2px solid #09090b !important;
  color: #475569 !important;
}