/* ===== DEEPWORLD WIKI — Game-Accurate Steampunk Theme ===== */
/* Fonts: Telegrama Render (actual Deepworld in-game font), */
/* Press Start 2P as fallback, Inter for readable body text */
@import url('https://fonts.cdnfonts.com/css/telegrama');
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* === DEEPWORLD GAME-ACCURATE PALETTE === */
  /* Extracted from the actual game title screen UI */
  
  /* Backgrounds — dark brown leather/wood panels from game UI */
  --bg-page: #1a0e04;           /* Dark brown — matches game panel bg */
  --bg-content: #231408;        /* Warm brown — like leather panel */
  --bg-card: #2a1a0a;           /* Panel brown — game card bg */
  --bg-sidebar: #1a0e04;        /* Sidebar — same as page */
  --border: #c8952a;            /* GOLD BORDER — matches ornate game frames */
  --border-light: #d4a830;      /* Bright gold accent border */
  --border-dim: #6b5020;        /* Subdued gold for table lines */
  
  /* Text — from game UI */
  --heading: #e8a020;           /* AMBER GOLD — "Learn More" / "News" headers */
  --heading-alt: #e8a020;       /* Same warm amber for all headings */
  --text: #ffffff;              /* Pure white — matches in-game body text */
  --text-dim: #c8b898;          /* Warm parchment for secondary text */
  --text-bright: #ffffff;       /* White */
  
  /* Links & accents — from game UI */
  --link: #e8a020;              /* Gold links — matches game heading color */
  --link-hover: #ffcc44;        /* Brighter gold on hover */
  --accent: #50c8c8;            /* TEAL — matches game Play button */
  --accent-dim: #50c8c830;      /* Teal glow */
  --accent2: #e8a020;           /* Amber gold */
  --accent2-dim: #e8a02030;     /* Gold glow */
  --green-text: #60b830;        /* Green — matches "12th August 2025" date text */
  
  /* Game-specific colors */
  --brass: #c8952a;             /* Brass — ornate frame gold */
  --copper: #b87333;            /* Copper ore */
  --earth: #6B4226;             /* Earth/dirt blocks */
  --wood: #a07840;              /* Wood panel mid-tone */
  --lantern: #FFB840;           /* Warm lantern glow */
  --lava: #FF6020;              /* Lava/fire */
  --ice: #80C0D8;               /* Ice blue */
  --electric: #4060FF;          /* Electric/energy blue */
  --sky: #586898;               /* Game sky — blue-purple atmosphere */
  
  /* Rarity colors */
  --common: #c8b898;
  --uncommon: #60b830;
  --rare: #4488ff;
  --epic: #aa55ff;
  --legendary: #FFB840;
  --danger: #cc3344;
  
  /* Layout */
  --sidebar-w: 200px;
  --topbar-h: 44px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-page);
  color: var(--text);
  line-height: 1.65;
  font-size: 14px;
  min-height: 100vh;
  background-image: 
    radial-gradient(ellipse at 0% 0%, rgba(107, 66, 38, 0.06), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(107, 66, 38, 0.04), transparent 50%);
}

/* ===== SCROLLBAR — brass accent ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-page); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--earth), var(--border)); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--brass); }

/* ===== ITEM ICON (inline in tables) ===== */
.item-icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  border: 2px solid var(--earth);
  border-radius: 0; /* Sharp corners — pixel art aesthetic */
  background: #1a0e06;
  box-shadow: 0 0 4px rgba(200, 160, 48, 0.15);
}

.item-icon-sm {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  border: 1px solid var(--earth);
  border-radius: 0;
  background: #1a0e06;
}

.item-icon-lg {
  width: 36px;
  height: 36px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  border: 2px solid var(--brass);
  border-radius: 0;
  background: #1a0e06;
  box-shadow: 0 0 6px rgba(200, 160, 48, 0.2);
}

/* ===== TOPBAR ===== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  background: var(--bg-sidebar);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 1000;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--heading);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
}

.topbar-title {
  font-family: 'Telegrama', 'Press Start 2P', monospace;
  color: var(--heading);
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 0 12px rgba(232, 160, 32, 0.5);
}

.topbar-title .logo-icon {
  width: 28px;
  height: 28px;
  image-rendering: pixelated;
}

.topbar-title:hover { color: var(--link-hover); text-shadow: 0 0 16px rgba(255, 204, 68, 0.6); }

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-box input {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  color: var(--text);
  padding: 5px 12px;
  font-size: 20px;
  width: 220px;
  outline: none;
  font-family: 'Inter', sans-serif;
  border-radius: 2px;
}

.search-box input:focus { border-color: var(--link-hover); box-shadow: 0 0 6px rgba(125, 200, 32, 0.2); }
.search-box input::placeholder { color: var(--text-dim); }

.search-results-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  max-height: 420px;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  display: none;
  z-index: 1001;
  margin-top: 4px;
}

.search-results-dropdown.active { display: block; }

.search-result-item {
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  font-size: 20px;
}

.search-result-item:hover { background: var(--bg-sidebar); }
.search-result-item .sr-title { color: var(--link); font-weight: 600; }
.search-result-item .sr-section { color: var(--text-dim); font-size: 11px; text-transform: capitalize; }

/* ===== SIDEBAR ===== */
.sidebar {
  position: fixed;
  top: var(--topbar-h);
  left: 0; bottom: 0;
  width: var(--sidebar-w);
  background: var(--bg-sidebar);
  border-right: 2px solid var(--border);
  overflow-y: auto;
  padding: 12px 0;
  z-index: 999;
}

.sidebar-logo {
  text-align: center;
  padding: 8px 12px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.sidebar-logo img {
  width: 64px;
  height: 64px;
  image-rendering: pixelated;
  display: block;
  margin: 0 auto 4px;
}

.sidebar-logo span {
  display: block;
  font-family: 'Telegrama', 'Press Start 2P', monospace;
  color: var(--heading);
  font-size: 24px;
  letter-spacing: 3px;
}

.nav-group { padding: 4px 0; }

.nav-group-title {
  font-family: 'Telegrama', 'Press Start 2P', monospace;
  color: var(--heading);
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px 2px;
  opacity: 0.7;
}

.nav-link {
  display: block;
  padding: 4px 14px 4px 20px;
  color: var(--link);
  text-decoration: none;
  font-size: 20px;
  transition: background 0.15s, color 0.15s;
  border-left: 2px solid transparent;
}

.nav-link:hover {
  color: var(--link-hover);
  background: rgba(221,184,64,0.08);
  border-left-color: var(--heading);
}

.nav-link.active {
  color: var(--link-hover);
  background: linear-gradient(90deg, rgba(232,160,32,0.15), transparent);
  border-left-color: var(--link-hover);
  font-weight: 600;
  text-shadow: 0 0 6px rgba(232, 160, 32, 0.4);
}

.sidebar-discord {
  margin: 16px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #5865F2;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  justify-content: center;
  transition: opacity 0.15s;
  border-radius: 2px;
}

.sidebar-discord:hover { opacity: 0.85; color: #fff; }

/* ===== MAIN CONTENT ===== */
.main {
  margin-left: var(--sidebar-w);
  margin-top: var(--topbar-h);
  padding: 24px 32px 60px;
  max-width: 1060px;
  background: rgba(26, 14, 4, 0.88);
  border-left: 1px solid var(--border-dim);
  border-right: 1px solid var(--border-dim);
  min-height: calc(100vh - var(--topbar-h));
}

/* ===== HEADINGS ===== */
/* Headings use Telegrama — the actual Deepworld in-game font */
h1, h2, h3, h4 {
  font-family: 'Telegrama', 'Press Start 2P', monospace;
  color: var(--heading);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(232, 160, 32, 0.35), 0 0 20px rgba(232, 160, 32, 0.15);
}

h1 {
  font-size: 26px;
  letter-spacing: 3px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

h2 {
  font-size: 22px;
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-dim);
}

h3 { font-size: 18px; margin: 20px 0 8px; }
h4 { font-size: 16px; margin: 14px 0 6px; }

p { margin-bottom: 10px; }
a { color: var(--link); text-decoration: none; transition: color 0.15s, text-shadow 0.15s; }
a:hover { color: var(--link-hover); text-shadow: 0 0 8px rgba(255, 204, 68, 0.4); }

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  margin-bottom: 16px;
}

.card-header {
  background: linear-gradient(135deg, rgba(232,160,32,0.2), rgba(200,148,42,0.15), rgba(107,80,32,0.1));
  border-bottom: 1px solid var(--border);
  padding: 8px 14px;
  font-family: 'Telegrama', 'Press Start 2P', monospace;
  color: var(--heading);
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-body { padding: 14px; }

/* ===== WELCOME BANNER ===== */
.welcome-banner {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  padding: 0;
  margin-bottom: 24px;
}

.welcome-banner .banner-header {
  background: linear-gradient(135deg, rgba(125,200,32,0.15), rgba(200,160,48,0.06), rgba(107,66,38,0.1));
  border-bottom: 2px solid var(--earth);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.welcome-banner .banner-header h1 {
  margin: 0; padding: 0; border: none; font-size: 24px;
  text-shadow: 0 0 16px rgba(125, 200, 32, 0.4), 2px 2px 0 rgba(0,0,0,0.5);
}

.welcome-banner .banner-body { padding: 16px 20px; }

/* ===== BIOME HEADER IMAGE ===== */
.biome-header-img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  border: 2px solid var(--border);
  margin-bottom: 16px;
  display: block;
}

/* ===== CATEGORY GRID ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  padding: 16px 10px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.cat-card:hover {
  border-color: var(--heading);
  background: rgba(221,184,64,0.08);
  color: var(--link-hover);
}

.cat-card .cat-icon {
  width: 48px;
  height: 48px;
  image-rendering: pixelated;
  margin-bottom: 8px;
}

.cat-card .cat-label {
  font-family: 'Telegrama', 'Press Start 2P', monospace;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--heading);
}

/* ===== TABLES ===== */
.wiki-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 20px;
}

.wiki-table th {
  background: rgba(212,152,44,0.12);
  color: var(--heading);
  font-family: 'Telegrama', 'Press Start 2P', monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 10px;
  text-align: left;
  border: 1px solid var(--border-dim);
  font-size: 15px;
}

.wiki-table td {
  padding: 6px 10px;
  border: 1px solid var(--border-dim);
  vertical-align: middle;
}

.wiki-table tr:nth-child(even) { background: rgba(212,152,44,0.03); }
.wiki-table tr:hover { background: rgba(212,152,44,0.07); }

/* ===== INFOBOX ===== */
.infobox {
  float: right;
  width: 260px;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  margin: 0 0 16px 20px;
}

.infobox-header {
  background: linear-gradient(135deg, rgba(125,200,32,0.2), rgba(200,160,48,0.08));
  border-bottom: 1px solid var(--border);
  padding: 8px 12px;
  font-family: 'Telegrama', 'Press Start 2P', monospace;
  color: var(--heading);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

.infobox-img {
  width: 100%;
  border-bottom: 1px solid var(--border);
  display: block;
}

.infobox-row {
  display: flex;
  border-bottom: 1px solid var(--border);
  font-size: 20px;
}

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

.infobox-label {
  width: 90px;
  flex-shrink: 0;
  padding: 5px 8px;
  background: rgba(221,184,64,0.08);
  color: var(--text-dim);
  font-weight: 600;
  font-size: 12px;
}

.infobox-value { padding: 5px 8px; flex: 1; }

/* ===== BIOME SECTIONS ===== */
.biome-section {
  margin-bottom: 32px;
  overflow: hidden;
}

.biome-section::after {
  content: '';
  display: table;
  clear: both;
}

/* ===== MOB ENTRY ===== */
.mob-family { margin-bottom: 28px; }

/* ===== SKILL GRID ===== */
.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.skill-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
}

.skill-card .card-body { font-size: 13px; }

/* ===== ACC/BOMB/KEY/MACHINE GRID ===== */
.acc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin: 12px 0;
}

.acc-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  padding: 10px;
  font-size: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.acc-item .acc-name {
  font-family: 'Telegrama', 'Press Start 2P', monospace;
  color: var(--heading);
  font-size: 16px;
  letter-spacing: 1px;
}

.acc-item .acc-desc { color: var(--text-dim); margin-top: 4px; }

.bomb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin: 12px 0;
}

.bomb-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  padding: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bomb-card .bomb-info .bomb-name {
  font-family: 'Telegrama', 'Press Start 2P', monospace;
  color: var(--heading);
  font-size: 15px;
}

.bomb-card .bomb-info .bomb-desc {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

.key-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin: 12px 0;
}

.key-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.key-item .key-info .key-name {
  font-family: 'Telegrama', 'Press Start 2P', monospace;
  color: var(--legendary);
  font-size: 16px;
  letter-spacing: 1px;
}

.key-item .key-info .key-desc {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
}

.machine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin: 12px 0;
}

/* ===== GUIDE ===== */
.guide-step {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  padding: 14px;
  margin-bottom: 12px;
}

.guide-step h3 { margin-top: 0; }

/* ===== SPRITE VIEWER ===== */
.sprite-viewer {
  width: 100%;
  overflow: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  padding: 12px;
  margin: 16px 0;
  cursor: grab;
}

.sprite-viewer img {
  image-rendering: pixelated;
  max-width: none;
}

.zoom-controls {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.zoom-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  color: var(--heading);
  padding: 6px 14px;
  cursor: pointer;
  font-family: 'Telegrama', 'Press Start 2P', monospace;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 2px;
}

.zoom-btn:hover {
  background: rgba(125,200,32,0.15);
  border-color: var(--heading);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  color: var(--heading);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  z-index: 900;
  transition: opacity 0.2s;
  border-radius: 2px;
}

.back-to-top.visible { display: flex; }
.back-to-top:hover { border-color: var(--heading); background: rgba(125,200,32,0.15); }

/* ===== BADGES & RARITY ===== */
.rarity-common { color: var(--text); }
.rarity-rare { color: var(--rare); }
.rarity-epic { color: var(--epic); }
.rarity-legendary { color: var(--legendary); }

/* ===== DISCORD BUTTON ===== */
.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #5865F2;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin: 12px 0;
  transition: opacity 0.15s;
  border-radius: 2px;
}

.discord-btn:hover { opacity: 0.85; color: #fff; }

/* ===== WIKI IMAGES ===== */
.wiki-img {
  max-width: 100%;
  border: 2px solid var(--border);
  display: block;
  margin: 12px 0;
}

.wiki-img-caption {
  font-size: 12px;
  color: var(--text-dim);
  font-style: italic;
  margin-top: -8px;
  margin-bottom: 12px;
}

.machine-img {
  width: 100%;
  max-width: 400px;
  border: 2px solid var(--border);
  display: block;
  margin: 8px 0;
}

/* ===== RECIPE INLINE ===== */
.recipe {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-dim);
  flex-wrap: wrap;
}

.recipe .mat {
  background: rgba(200,160,48,0.08);
  border: 1px solid var(--border-dim);
  padding: 1px 5px;
  color: var(--text);
  font-size: 11px;
  border-radius: 2px;
}

.recipe .plus { color: var(--text-dim); }

/* ===== DAMAGE TAGS ===== */
.dmg { font-weight: 600; font-size: 12px; }
.dmg-fire { color: #ff8844; }
.dmg-cold { color: #6ab8ff; }
.dmg-acid { color: #88ff44; }
.dmg-energy { color: #cc88ff; }
.dmg-piercing { color: var(--heading); }
.dmg-steam { color: #88bbdd; }
.dmg-slash { color: #ddbb88; }
.dmg-crush { color: #cccccc; }
.dmg-shadow { color: #bb88cc; }

/* ===== CLEARFIX ===== */
.clearfix::after { content: ''; display: table; clear: both; }

/* ===== HIDE PAGES ===== */
.page { display: none; }
.page.active { display: block; }

/* ===== SIDEBAR OVERLAY ===== */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
}

/* ===== FOOTER ===== */
.wiki-footer {
  margin-top: 40px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
}

/* ===== FOSSIL GRID ===== */
.fossil-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin: 12px 0;
}

.fossil-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  padding: 10px;
  text-align: center;
}

.fossil-card .fossil-name {
  font-family: 'Telegrama', 'Press Start 2P', monospace;
  color: var(--heading);
  font-size: 14px;
  margin-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.25s;
    z-index: 999;
  }

  .sidebar.open { transform: translateX(0); }
  .sidebar-overlay.active { display: block; }
  .hamburger { display: block; }

  .main {
    margin-left: 0;
    padding: 16px 14px 60px;
  }

  .search-box input { width: 140px; }

  .infobox {
    float: none;
    width: 100%;
    margin: 0 0 16px 0;
  }

  .cat-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
  }

  h1 { font-size: 24px; }
  h2 { font-size: 20px; }

  .search-results-dropdown {
    width: calc(100% - 32px);
    left: 16px;
    right: 16px;
  }

  .wiki-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .biome-header-img { max-height: 160px; }
}

/* ===== PLAY DEEPWORLD BUTTON ===== */
.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #308888, #50c8c8);
  color: #fff !important;
  text-decoration: none;
  font-family: 'Telegrama', 'Press Start 2P', monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  border: 2px solid #50c8c8;
  transition: all 0.2s;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  box-shadow: 0 0 12px rgba(80, 200, 200, 0.3);
}
.play-btn:hover {
  background: linear-gradient(135deg, #50c8c8, #70e8e8);
  border-color: #70e8e8;
  box-shadow: 0 0 20px rgba(80, 200, 200, 0.4);
  color: #fff !important;
  transform: translateY(-1px);
}
