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

body {
  background: #0a0a0a;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 3px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.6); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
  20%, 40%, 60%, 80% { transform: translateX(4px); }
}

@keyframes confettiFall {
  0% { transform: translateY(-100vh) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

@keyframes policeLights {
  0%, 100% { background: rgba(255,0,0,0.15); }
  50% { background: rgba(0,0,255,0.15); }
}

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

@keyframes cigarBurn {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes smokeRise {
  0% { opacity: 0.8; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-60px) scale(2); }
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(212,175,55,0.5), 0 0 20px rgba(212,175,55,0.3); }
  50% { text-shadow: 0 0 20px rgba(212,175,55,0.8), 0 0 40px rgba(212,175,55,0.5), 0 0 60px rgba(212,175,55,0.3); }
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slideUp {
  animation: slideUp 0.5s ease-out forwards;
}

.animate-shake {
  animation: shake 0.5s ease-in-out;
}

.animate-pulse-gold {
  animation: pulse-gold 2s ease-in-out infinite;
}

.animate-glow {
  animation: glowPulse 3s ease-in-out infinite;
}

.ticker-scroll {
  animation: tickerScroll 30s linear infinite;
}

.police-lights {
  animation: policeLights 0.5s ease-in-out infinite;
}

.confetti-piece {
  animation: confettiFall 3s linear forwards;
}

.business-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #111111 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.business-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.business-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.card-cinema::before { background: linear-gradient(90deg, #8b0000, #cc0000); }
.card-stadium::before { background: linear-gradient(90deg, #2d5a27, #3d7a37); }
.card-coffee::before { background: linear-gradient(90deg, #8B4513, #A0522D); }
.card-club::before { background: linear-gradient(90deg, #ff69b4, #da70d6); }

.btn-brass {
  background: linear-gradient(145deg, #d4af37, #b8960f);
  color: #0a0a0a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  border: 2px solid #d4af37;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.btn-brass:hover {
  background: linear-gradient(145deg, #e4bf47, #c8a61f);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transform: scale(1.02);
}

.btn-action {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
  transition: all 0.2s ease;
  font-size: 0.75rem;
}

.btn-action:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
}

.btn-risky {
  background: rgba(139, 0, 0, 0.15);
  border: 1px solid rgba(139, 0, 0, 0.4);
  color: #ff4444;
  transition: all 0.2s ease;
  font-size: 0.75rem;
}

.btn-risky:hover {
  background: rgba(139, 0, 0, 0.3);
  border-color: rgba(139, 0, 0, 0.6);
}

.btn-recruit {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-schmooze {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
}

.btn-intimidate {
  background: rgba(139, 0, 0, 0.2);
  border: 1px solid rgba(139, 0, 0, 0.4);
  color: #ff4444;
}

.btn-bribe {
  background: rgba(45, 90, 39, 0.2);
  border: 1px solid rgba(45, 90, 39, 0.4);
  color: #4ade80;
}

.news-ticker {
  background: linear-gradient(180deg, #2a2317, #1a1710);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-overlay {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.stat-bar-bg {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.splash-bg {
  background: radial-gradient(ellipse at 50% 30%, #1a1520 0%, #0a0a0a 70%);
}

.cityscape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, #0a0a0a 0%, transparent 100%);
  opacity: 0.5;
}