@font-face {
  font-family: 'GFF-Latin';
  src: url('font/GFF-Latin-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'GFF-Latin';
  src: url('font/GFF-Latin-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'GFF-Latin';
  src: url('font/GFF-Latin-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

:root {
  --color-neon-yellow: #FFD700;
  --color-neon-yellow-glow: rgba(255, 215, 0, 0.4);
  --color-dark-bg: #0d0d11;
  --color-panel-bg: rgba(20, 20, 25, 0.85);
  --color-panel-border: rgba(255, 255, 255, 0.1);
  --color-text-main: #FFFFFF;
  --color-text-dim: #8a8a93;
  --color-danger: #ff2a2a;

  --font-gff: 'GFF-Latin', sans-serif;
}

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

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background-color: var(--color-dark-bg);
  background-image:
    linear-gradient(rgba(13, 13, 17, 0.7), rgba(13, 13, 17, 0.95)),
    url('https://dl.dir.freefiremobile.com/common/web_event/official2.ff.garena.all/20266/361b072124e0e479833da4e10834916b.jpg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  color: var(--color-text-main);
  font-family: var(--font-gff);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography Base */
h1,
h2,
h3 {
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.headline-lg {
  font-size: 2.5rem;
  font-weight: 700;
}

.headline-md {
  font-size: 2rem;
  font-weight: 700;
}

.body-md {
  font-size: 1rem;
  font-weight: 400;
}

.text-neon {
  color: var(--color-neon-yellow);
  text-shadow: 0 0 10px var(--color-neon-yellow-glow);
}

.text-small {
  font-size: 0.85rem !important;
}

/* App Layout */
.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Top Bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  background: #000000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 10;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-logo {
  height: 45px;
  object-fit: contain;
  margin-right: 15px;
}

.brand-separator {
  color: #555;
  font-size: 1.5rem;
  font-weight: 300;
}

.head-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: 15px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-family: 'GFF-Latin', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #ffb400;
}

/* Sidebar & Hamburger (Mobile Only) */
.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-neon-yellow);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0 10px;
}

.sidebar-overlay {
  display: none;
}

.search-group {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.mobile-search-group {
  display: none;
}

.desktop-search-group {
  display: flex;
}

.input-tactical {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  color: #FFF;
  font-family: var(--font-gff);
  font-size: 1rem;
  padding: 5px 10px;
  width: 200px;
  outline: none;
  border-radius: 0;
  transition: all 0.2s;
}

.input-tactical:focus {
  border-bottom-color: var(--color-neon-yellow);
}

.btn-tactical {
  background: #ffb400;
  color: #000;
  border: none;
  font-family: var(--font-gff);
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.btn-tactical:hover {
  background: #ffc800;
  transform: scale(1.05);
}

.btn-tactical:active {
  transform: scale(0.95);
}

/* Main Workspace */
.main-workspace {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.system-message {
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 2px;
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.8);
  border-left: 4px solid var(--color-neon-yellow);
  margin-bottom: 20px;
}

.system-message.blink {
  animation: blink 1s infinite alternate;
  color: var(--color-neon-yellow);
}

.system-message.error {
  border-left-color: var(--color-danger);
  color: var(--color-danger);
  display: none;
}

@keyframes blink {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.hero-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 60vh;
  text-align: center;
  position: relative;
  width: 100%;
}

/* Copyable Element Styles */
.copyable-item {
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  position: relative;
}

.copyable-item:hover {
  opacity: 0.8;
}

.copyable-item:active {
  transform: scale(0.98);
}

/* Radar Animation */
.radar-container {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-logo {
  height: 80px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
  animation: float 3s ease-in-out infinite;
}

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

/* Typography Effects */
.typing-text {
  font-style: normal;
  letter-spacing: 2px;
  text-shadow: none;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 15px;
  margin-right: -2px;
}

.typing-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: 
    linear-gradient(to right, #ffb400 0%, #ffb400 calc(100% - 40px), transparent calc(100% - 40px)),
    repeating-linear-gradient(-60deg, transparent, transparent 4px, #ffb400 4px, #ffb400 8px);
}

.cursor-blink {
  animation: blink 1s step-end infinite;
}

.hero-subtext {
  color: var(--color-text-dim);
  max-width: 400px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Crosshairs Decor */
.crosshair {
  display: none;
}

/* Dashboard Layout */
.dashboard-layout {
  display: grid;
  grid-template-columns: 530px 1fr;
  gap: 30px;
  width: 100%;
  max-width: 1400px;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

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

  .top-bar {
    flex-direction: column;
    padding: 15px;
    background: rgba(10, 10, 15, 0.98);
    border-bottom: 2px solid var(--color-neon-yellow);
    gap: 15px;
  }
  
  .brand-group {
    background: transparent;
    border-bottom: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
  }
  
  .hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1.6rem;
    height: 28px;
    width: 28px;
  }
  
  .brand-logo {
    height: 22px;
    flex: 0 0 auto;
  }

  .brand-separator {
    display: none;
  }
  
  /* Sidebar Styles */
  .head-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 250px;
    height: 100vh;
    background: rgba(15, 15, 20, 0.98);
    border-left: 2px solid var(--color-neon-yellow);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 60px 20px;
    gap: 20px;
    z-index: 10000;
    transition: right 0.3s ease;
    margin-left: 0;
  }
  
  .head-nav.active {
    right: 0;
  }

  .sidebar-overlay.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
  }
  
  .nav-link {
    font-size: 1.1rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
    letter-spacing: 1px;
    border: none;
    color: #FFF;
    width: 100%;
    text-align: left;
  }

  .desktop-search-group {
    display: none;
  }

  .mobile-search-group {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    gap: 0;
  }

  .search-group {
    flex-direction: row;
    width: 100%;
    margin: 0;
    gap: 0;
  }

  .input-tactical {
    flex: 1 1 auto;
    width: 0;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    border-radius: 4px 0 0 4px;
    padding: 0 12px;
    font-size: 0.9rem;
  }
  
  .input-tactical:focus {
    border-color: var(--color-neon-yellow);
  }
  
  .btn-tactical {
    flex: 0 0 auto;
    height: 44px;
    border-radius: 0 4px 4px 0;
    padding: 0 16px;
    font-size: 0.9rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .main-workspace {
    padding: 15px;
  }
  
  .inv-row-2, .inv-row-3 {
    flex-wrap: wrap;
  }
  
  .hero-state {
    min-height: 40vh;
  }
  
  .headline-lg {
    font-size: 2rem;
  }
}

@media (max-width: 900px) {
  .main-workspace {
    padding: 8px 4px;
  }
  
  .headline-lg {
    font-size: 1.1rem !important;
  }
  
  .headline-lg.typing-text {
    font-size: 1.2rem !important;
    letter-spacing: 0px;
  }
  
  .typing-text::after {
    height: 2px;
  }
  
  .card-tactical {
    padding: 10px 6px;
  }
  
  .identity-panel {
    gap: 6px;
  }
  
  .tag {
    font-size: 0.65rem !important;
    padding: 2px 6px !important;
  }
  
  .visual-inventory {
    padding: 10px 4px;
    gap: 12px;
  }
  
  .inv-group {
    padding: 14px 4px 6px;
  }
  
  .inv-title {
    font-size: 0.65rem;
    padding: 0 6px;
    top: -6px;
  }
  
  /* Perkecil jarak di slot grid */
  .inv-grid-3x2, .inv-slots, .inv-row-2, .inv-row-3 {
    gap: 5px;
  }
  
  .slot, .slot-large, .slot-wide {
    border-width: 1px;
    transform: scale(0.9);
  }
  
  /* Perbaiki bug spasi transform */
  .slot-large {
    margin: -6px;
  }
  .slot {
    margin: -3px;
  }
}

/* Identity Panel (Left) */
.identity-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

/* Visual Inventory Grid */
.visual-inventory {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--color-panel-border);
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.inv-group {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 22px 12px 15px;
  position: relative;
  margin-top: 5px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.inv-title {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-dark-bg);
  padding: 0 12px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--color-neon-yellow);
}

.inv-slots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.inv-row-2,
.inv-row-3 {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.inv-grid-3x2 {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 8px;
  justify-content: center;
}

.inv-col {
  flex-direction: column;
}

.slot {
  width: var(--slot-w, 60px);
  height: var(--slot-h, 60px);
  background-color: #111;
  background-image: var(--bg-img, none);
  background-size: var(--bg-z, 100%);
  background-position: var(--bg-x, 0) var(--bg-y, 0);
  background-repeat: no-repeat;
  border: 1px solid rgba(255,215,0,0.5);
  box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
  transition: all 0.3s ease;
  position: relative;
  cursor: crosshair;
}

.slot:hover {
  box-shadow: 0 0 20px rgba(255,215,0,0.8), inset 0 0 10px rgba(255,215,0,0.3);
  border-color: #FFF;
  transform: scale(1.08);
  z-index: 10;
}

.slot[data-name]::after {
  content: attr(data-name);
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-bottom: 5px;
  transform: translateX(-50%) scale(0.8);
  transform-origin: bottom center;
  background: rgba(10, 10, 15, 0.95);
  border: 1px solid var(--color-neon-yellow);
  color: var(--color-neon-yellow);
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: normal;
  width: max-content;
  max-width: 180px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease-out;
  z-index: 100;
  box-shadow: 0 5px 15px rgba(0,0,0,0.8);
  border-radius: 4px;
}

.slot[data-name]:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* Fix Tooltip Cropping for 3-Column Grid Edges */
.inv-grid-3x2 .slot:nth-child(3n+1)[data-name]::after {
  left: -10px;
  transform: translateX(0) scale(0.8);
  transform-origin: bottom left;
}
.inv-grid-3x2 .slot:nth-child(3n+1)[data-name]:hover::after {
  transform: translateX(0) scale(1);
}

.inv-grid-3x2 .slot:nth-child(3n+3)[data-name]::after {
  left: auto;
  right: -10px;
  transform: translateX(0) scale(0.8);
  transform-origin: bottom right;
}
.inv-grid-3x2 .slot:nth-child(3n+3)[data-name]:hover::after {
  transform: translateX(0) scale(1);
}

.slot-large {
  width: var(--slot-w, 130px);
  height: var(--slot-h, 130px);
}

.slot-wide {
  width: var(--slot-w, 130px);
  height: var(--slot-h, 60px);
}

/* --- SLOT CALIBRATION DEFAULTS --- */
#slot-profile-1 {
  --slot-w: 60px;
  --slot-h: 60px;
  --bg-z: 1388%;
  --bg-x: -44px;
  --bg-y: -246px;
}

#slot-profile-2 {
  --slot-w: 60px;
  --slot-h: 60px;
  --bg-z: 1250%;
  --bg-x: -117px;
  --bg-y: -219px;
}

#slot-profile-3 {
  --slot-w: 60px;
  --slot-h: 60px;
  --bg-z: 1250%;
  --bg-x: -196px;
  --bg-y: -219px;
}

#slot-character {
  --slot-w: 130px;
  --slot-h: 130px;
  --bg-z: 999%;
  --bg-x: -548px;
  --bg-y: -382px;
}

#slot-pet-1 {
  --slot-w: 60px;
  --slot-h: 60px;
  --bg-z: 1215%;
  --bg-x: -443px;
  --bg-y: -212px;
}

#slot-pet-2 {
  --slot-w: 60px;
  --slot-h: 60px;
  --bg-z: 1215%;
  --bg-x: -521px;
  --bg-y: -212px;
}

#slot-pet-3 {
  --slot-w: 60px;
  --slot-h: 60px;
  --bg-z: 1215%;
  --bg-x: -598px;
  --bg-y: -212px;
}

#slot-outfit-1 {
  --slot-w: 60px;
  --slot-h: 60px;
  --bg-z: 1250%;
  --bg-x: -35px;
  --bg-y: -374px;
}

#slot-outfit-2 {
  --slot-w: 60px;
  --slot-h: 60px;
  --bg-z: 1250%;
  --bg-x: -114px;
  --bg-y: -374px;
}

#slot-outfit-3 {
  --slot-w: 60px;
  --slot-h: 60px;
  --bg-z: 1250%;
  --bg-x: -193px;
  --bg-y: -374px;
}

#slot-outfit-4 {
  --slot-w: 60px;
  --slot-h: 60px;
  --bg-z: 1250%;
  --bg-x: -35px;
  --bg-y: -453px;
}

#slot-outfit-5 {
  --slot-w: 60px;
  --slot-h: 60px;
  --bg-z: 1250%;
  --bg-x: -114px;
  --bg-y: -453px;
}

#slot-outfit-6 {
  --slot-w: 60px;
  --slot-h: 60px;
  --bg-z: 1250%;
  --bg-x: -193px;
  --bg-y: -453px;
}

#slot-skin-1 {
  --slot-w: 60px;
  --slot-h: 60px;
  --bg-z: 1250%;
  --bg-x: -318px;
  --bg-y: -394px;
}

#slot-skin-2 {
  --slot-w: 60px;
  --slot-h: 60px;
  --bg-z: 1250%;
  --bg-x: -329px;
  --bg-y: -497px;
}

#slot-skin-3 {
  --slot-w: 60px;
  --slot-h: 60px;
  --bg-z: 1223%;
  --bg-x: -316px;
  --bg-y: -571px;
}


.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.tag {
  background: rgba(255,215,0,0.1);
  color: var(--color-neon-yellow);
  border: 1px solid rgba(255,215,0,0.3);
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.bio-section {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  padding: 25px 15px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  margin-top: 10px;
  text-align: left;
  position: relative;
}

.player-header-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

/* Booyah Popup Overlay */
.booyah-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.booyah-overlay.show {
  opacity: 1;
}

.booyah-popup-img {
  width: 80vw;
  max-width: 600px;
  transform: scale(0.5);
  filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.8));
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.booyah-overlay.show .booyah-popup-img {
  transform: scale(1);
}

/* Data Grid (Right) */
.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  align-content: start;
}

/* Tactical Cards */
.card-tactical {
  background: linear-gradient(135deg, rgba(25, 25, 30, 0.95) 0%, rgba(10, 10, 15, 0.95) 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 215, 0, 0.15);
  padding: 20px;
  position: relative;
  clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 25px);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s;
}

.card-tactical::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 25px;
  width: 50px;
  height: 4px;
  background: var(--color-neon-yellow);
}

.card-tactical::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25px;
  width: calc(100% - 25px);
  height: 4px;
  background: repeating-linear-gradient(
    45deg,
    var(--color-neon-yellow),
    var(--color-neon-yellow) 8px,
    #000 8px,
    #000 16px
  );
  z-index: 1;
}

.card-tactical:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, 0.4);
}

.card-title {
  color: #000;
  background: var(--color-neon-yellow);
  font-size: 1.2rem;
  margin-top: 5px;
  margin-bottom: 20px;
  margin-left: -20px;
  padding: 6px 30px 6px 20px;
  display: inline-block;
  font-weight: 800;
  letter-spacing: 1px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-row:last-child {
  border-bottom: none;
}

.label {
  color: #aaaaaa;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.label::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--color-neon-yellow);
  transform: rotate(45deg);
  box-shadow: 0 0 5px var(--color-neon-yellow-glow);
}

.value {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  text-shadow: 1px 1px 0 #000;
  text-align: right;
  max-width: 65%;
  word-wrap: break-word;
}

.card-tactical .text-neon {
  color: var(--color-neon-yellow);
  text-shadow: 0 0 10px var(--color-neon-yellow-glow);
}

/* --- LIVE CONSOLE --- */
.live-console {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  background: rgba(10, 10, 15, 0.95);
  border: 2px solid var(--color-neon-yellow);
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  font-family: 'Rajdhani', sans-serif;
  color: #FFF;
  transition: transform 0.3s ease;
}

.console-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: var(--color-neon-yellow);
  color: #000;
  font-weight: 800;
}

.console-body {
  padding: 15px;
}

.console-body .form-group {
  margin-bottom: 12px;
}

.console-body .form-group-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.console-body label {
  display: block;
  font-size: 0.85rem;
  color: #AAA;
  margin-bottom: 4px;
}

.console-body .num-input {
  width: 100%;
  padding: 5px;
  height: 30px;
  font-family: monospace;
}

.btn-small {
  padding: 2px 8px;
  font-size: 0.8rem;
  height: auto;
  border: 1px solid #000;
  color: #000;
}

.btn-small:hover {
  background: #000;
  color: var(--color-neon-yellow);
}