:root {
  --gold: #ffd700;
  --neon-blue: #00ccff;
  --neon-red: #ff3366;
  --glass: rgba(0, 0, 0, 0.8);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: #121212; color: #fff;
  overflow: hidden; height: 100vh;
}

#game-container {
  width: 100vw; height: 100vh;
  display: flex; justify-content: center; align-items: center;
  background: url('bg.png') center/cover no-repeat;
}

#ui-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 10;
}

.back-link {
  position: absolute; top: 20px; left: 20px;
  background: var(--gold); color: #000; pointer-events: auto;
  padding: 8px 15px; border-radius: 20px; font-weight: 800;
  text-decoration: none; font-size: 0.9rem;
}

.controls {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 20px; pointer-events: auto;
}

.btn {
  border: none; padding: 15px 30px; border-radius: 12px; font-weight: 900;
  cursor: pointer; font-size: 1.1rem; transition: 0.2s; min-width: 120px;
}

.fold { background: #333; color: #fff; border: 1px solid #555; }
.check { background: var(--neon-blue); color: #000; box-shadow: 0 0 15px var(--neon-blue); }
.raise { background: var(--gold); color: #000; box-shadow: 0 0 15px var(--gold); }

.btn:active { transform: scale(0.95); }
.hidden { display: none !important; }

/* Custom Animations */
@keyframes glow {
  0% { text-shadow: 0 0 10px var(--gold); }
  50% { text-shadow: 0 0 20px var(--gold), 0 0 30px var(--gold); }
  100% { text-shadow: 0 0 10px var(--gold); }
}


/* --- GLOBAL NYANTREPRENEUR OVERRIDES --- */
.back-link, .hub-btn {
  position: absolute !important; top: 15px !important; left: 15px !important; z-index: 9999 !important;
  background: rgba(18, 18, 18, 0.8) !important; color: #ffd700 !important;
  padding: 8px 16px !important; border-radius: 20px !important; font-weight: 800 !important;
  text-decoration: none !important; font-size: 0.8rem !important;
  border: 1px solid rgba(255, 215, 0, 0.3) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3) !important;
  transition: all 0.2s ease !important;
}
