/* ==========================================================================
   RED DEAD REDEMPTION 2 - STYLE WESTERN FRONTIER EXPERIENCE
   Diegetic UI, Vintage Western Styling, Parchment & Leather Aesthetic
   ========================================================================== */

:root {
  --font-serif: 'Playfair Display', 'Georgia', 'Cinzel', 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --color-gold: #cba86a;
  --color-gold-bright: #ebd292;
  --color-gold-dark: #8c6e32;
  --color-crimson: #a62424;
  --color-blood-red: #821414;
  --color-parchment: #f4ecd8;
  --color-parchment-dark: #d9c8a0;
  --color-leather: #2b1f17;
  --color-leather-dark: #19120e;
  --color-ink: #1f1a14;
  --color-hud-bg: rgba(18, 14, 11, 0.88);
  --color-health: #d33c3c;
  --color-stamina: #e2a838;
  --color-deadeye: #d42222;
  --color-horse: #5ca1e6;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #0d0b09;
  font-family: var(--font-serif);
  color: var(--color-parchment);
  touch-action: none;
}

#canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   CINEMATIC VIGNETTE & ATMOSPHERE OVERLAYS
   ========================================================================== */
#cinematic-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle at center, transparent 55%, rgba(10, 7, 5, 0.65) 100%);
  transition: opacity 0.5s ease;
}

#deadeye-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  background: radial-gradient(circle at center, rgba(230, 180, 110, 0.2) 0%, rgba(160, 40, 20, 0.45) 75%, rgba(30, 5, 5, 0.9) 100%);
  mix-blend-mode: color-burn;
  transition: opacity 0.2s cubic-bezier(0.1, 0.9, 0.2, 1);
}

#damage-flash {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  background: radial-gradient(circle at center, rgba(160, 0, 0, 0.2) 20%, rgba(180, 0, 0, 0.7) 100%);
  transition: opacity 0.1s ease;
}

/* Crosshair Reticle */
#crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.1s ease;
}

#crosshair.active {
  opacity: 1;
}

.reticle-dot {
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.9), 0 0 2px #fff;
  transition: background-color 0.15s ease;
}

.reticle-dot.red {
  background-color: #ff3333;
  box-shadow: 0 0 8px #ff0000, 0 0 2px #fff;
}

.reticle-ring {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   DIEGETIC HUD SYSTEM
   ========================================================================== */
#hud {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 15;
  transition: opacity 0.3s ease;
}

/* Top-Left: Location Banner & Weather */
#top-bar {
  position: absolute;
  top: 24px;
  left: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#location-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-parchment);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

#sub-location {
  font-size: 14px;
  font-style: italic;
  letter-spacing: 1.5px;
  color: var(--color-gold);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

#time-weather {
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(244, 236, 216, 0.85);
  font-family: var(--font-sans);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
  margin-top: 2px;
}

/* Top-Right: Money & Honor */
#top-right-bar {
  position: absolute;
  top: 24px;
  right: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

#wallet-display {
  display: flex;
  align-items: baseline;
  gap: 4px;
  background: var(--color-hud-bg);
  padding: 6px 16px;
  border-radius: 4px;
  border: 1px solid rgba(203, 168, 106, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

#wallet-currency {
  font-size: 18px;
  color: var(--color-gold);
  font-weight: 700;
}

#wallet-amount {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-family: var(--font-sans);
  color: #ffffff;
}

/* Honor Slider */
#honor-container {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-hud-bg);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(203, 168, 106, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.honor-icon {
  font-size: 14px;
  opacity: 0.85;
}

.honor-icon.skull {
  color: #c0392b;
}

.honor-icon.stag {
  color: #ecf0f1;
}

#honor-bar-wrapper {
  position: relative;
  width: 140px;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
}

#honor-bar-fill {
  position: absolute;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, #c0392b 0%, #d4ac0d 50%, #f4f6f7 100%);
  width: 50%;
  left: 0;
}

#honor-slider-pip {
  position: absolute;
  top: -3px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
  transition: left 0.3s ease;
}

/* Wanted Banner */
#wanted-banner {
  position: absolute;
  top: 90px;
  right: 32px;
  background: linear-gradient(135deg, rgba(166, 36, 36, 0.95), rgba(120, 15, 15, 0.95));
  border: 2px solid #ff4d4d;
  padding: 8px 20px;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#wanted-banner.active {
  opacity: 1;
  transform: translateY(0);
}

#wanted-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

#wanted-bounty {
  font-size: 13px;
  letter-spacing: 2px;
  color: #ffcccc;
  font-family: var(--font-sans);
  margin-top: 2px;
}

/* Bottom-Left: Radar & Cores */
#radar-container {
  position: absolute;
  bottom: 28px;
  left: 28px;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#radar-canvas {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(15, 12, 10, 0.85);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.95), 0 4px 18px rgba(0, 0, 0, 0.85);
  border: 2px solid rgba(203, 168, 106, 0.35);
}

/* Circular Cores surrounding the radar */
.core-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.core-badge {
  position: absolute;
  width: 26px;
  height: 26px;
  background: rgba(18, 14, 11, 0.9);
  border: 1.5px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

#core-health {
  bottom: 4px;
  left: 10px;
  color: var(--color-health);
}

#core-stamina {
  bottom: 4px;
  right: 10px;
  color: var(--color-stamina);
}

#core-deadeye {
  top: 4px;
  right: 10px;
  color: var(--color-deadeye);
}

#core-horse {
  top: 4px;
  left: 10px;
  color: var(--color-horse);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#core-horse.active {
  opacity: 1;
}

/* Bottom-Right: Weapons & Ammo */
#weapon-hud {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-hud-bg);
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid rgba(203, 168, 106, 0.3);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.8);
}

#weapon-icon {
  font-size: 28px;
  color: var(--color-gold);
}

#weapon-details {
  display: flex;
  flex-direction: column;
}

#weapon-name {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-parchment);
}

#ammo-counter {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: var(--font-sans);
  color: #ffffff;
}

#ammo-reserve {
  font-size: 14px;
  color: rgba(244, 236, 216, 0.6);
}

/* Bottom-Center: Interactive Context Prompt Bar */
#interaction-bar {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  pointer-events: auto;
}

.prompt-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(18, 14, 11, 0.92);
  border: 1px solid rgba(203, 168, 106, 0.35);
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.7);
  font-size: 13px;
  color: var(--color-parchment);
  letter-spacing: 0.8px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.prompt-pill:hover {
  background: rgba(43, 31, 23, 0.95);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.prompt-key {
  display: inline-block;
  background: #2a221a;
  border: 1px solid var(--color-gold);
  color: var(--color-gold-bright);
  font-weight: 700;
  font-family: var(--font-sans);
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Toast Notification (Honors, Harvest, Crimes) */
#toast-notification {
  position: absolute;
  top: 140px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: rgba(18, 14, 11, 0.95);
  border: 1px solid var(--color-gold);
  padding: 10px 24px;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.9);
  color: var(--color-parchment);
  font-size: 15px;
  letter-spacing: 1.5px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 20;
}

#toast-notification.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   MODAL OVERLAYS (Poker, Store, Wanted Board, Camp, Map, Journal, Wheel)
   ========================================================================== */
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 6, 5, 0.85);
  backdrop-filter: blur(4px);
  pointer-events: auto;
}

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

/* General Modal Window with Leather & Parchment Styling */
.vintage-window {
  position: relative;
  background: var(--color-parchment);
  color: var(--color-ink);
  border: 4px solid var(--color-leather);
  box-shadow: 0 0 0 2px var(--color-gold), 0 16px 40px rgba(0, 0, 0, 0.95);
  border-radius: 4px;
  padding: 24px;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  background-image: radial-gradient(rgba(0,0,0,0.03) 1px, transparent 0);
  background-size: 12px 12px;
}

.vintage-header {
  border-bottom: 2px solid var(--color-leather);
  padding-bottom: 12px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vintage-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-leather);
}

.close-btn {
  background: #2a221a;
  color: var(--color-parchment);
  border: 1px solid var(--color-gold);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.2s;
}

.close-btn:hover {
  background: var(--color-crimson);
  color: #ffffff;
}

/* 1. TEXAS HOLD'EM POKER TABLE */
#poker-modal .vintage-window {
  width: 860px;
  background: #194d27; /* Green Baize Felt */
  color: #ffffff;
  border: 12px solid #3d2817; /* Polished Mahogany Rim */
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.8), 0 16px 50px rgba(0, 0, 0, 0.95);
  padding: 30px;
  border-radius: 80px;
}

.poker-felt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.poker-pot-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.poker-pot-label {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--color-gold-bright);
  text-transform: uppercase;
}

.poker-pot-value {
  font-size: 28px;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.community-cards {
  display: flex;
  gap: 12px;
  min-height: 90px;
}

.poker-opponents {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 10px;
}

.opponent-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.poker-player-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.player-hole-cards {
  display: flex;
  gap: 10px;
}

/* Playing Card Component */
.card-item {
  width: 58px;
  height: 84px;
  background: #ffffff;
  color: #111111;
  border-radius: 5px;
  border: 1px solid #999999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  user-select: none;
}

.card-item.red {
  color: #c0392b;
}

.card-item.back {
  background: repeating-linear-gradient(45deg, #821414, #821414 6px, #a62424 6px, #a62424 12px);
  border: 2px solid #ffffff;
}

.card-corner {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.card-center-suit {
  font-size: 22px;
  align-self: center;
}

.poker-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.poker-btn {
  background: linear-gradient(180deg, #443224, #261b12);
  color: var(--color-parchment);
  border: 1px solid var(--color-gold);
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  transition: all 0.2s;
}

.poker-btn:hover {
  background: linear-gradient(180deg, #5c4431, #38271a);
  border-color: var(--color-gold-bright);
  transform: translateY(-2px);
}

.poker-status-text {
  font-size: 16px;
  color: #f7e4b2;
  font-style: italic;
  min-height: 24px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* 2. GENERAL STORE CATALOG */
#store-modal .vintage-window {
  width: 780px;
}

.store-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid var(--color-leather);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.tab-btn {
  background: rgba(43, 31, 23, 0.1);
  border: 1px solid transparent;
  padding: 8px 18px;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  color: var(--color-leather);
}

.tab-btn.active {
  background: var(--color-leather);
  color: var(--color-parchment);
}

.store-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 6px;
}

.store-item-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(43, 31, 23, 0.3);
  padding: 12px 16px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.store-item-card:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--color-gold-dark);
}

.item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.item-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-leather);
}

.item-desc {
  font-size: 12px;
  color: #665;
  font-style: italic;
}

.item-price {
  font-size: 14px;
  font-weight: 700;
  color: #1a6d2c;
  font-family: var(--font-sans);
}

.buy-btn, .sell-btn {
  background: var(--color-leather);
  color: var(--color-parchment);
  border: 1px solid var(--color-gold);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.buy-btn:hover, .sell-btn:hover {
  background: var(--color-gold-dark);
  color: #ffffff;
}

/* 3. WANTED BOUNTY POSTERS */
#bounty-modal .vintage-window {
  width: 720px;
  background: #efe4ca;
}

.posters-container {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.wanted-poster {
  width: 280px;
  background: #fbf5e6;
  border: 3px solid #3d2f24;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.poster-top {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 3px;
  color: #8b0000;
  border-bottom: 2px solid #3d2f24;
  width: 100%;
  padding-bottom: 4px;
}

.poster-sub {
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 4px;
}

.poster-portrait {
  width: 150px;
  height: 140px;
  margin: 14px 0;
  background: #2a221a;
  border: 2px solid #3d2f24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--color-gold);
}

.poster-name {
  font-size: 20px;
  font-weight: 700;
  color: #1a1510;
  letter-spacing: 1px;
}

.poster-crime {
  font-size: 12px;
  font-style: italic;
  color: #555;
  margin: 6px 0;
}

.poster-reward {
  font-size: 22px;
  font-weight: 800;
  color: #8b0000;
  margin-bottom: 12px;
}

.accept-bounty-btn {
  background: #8b0000;
  color: #ffffff;
  border: 1px solid #3d2f24;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.2s;
}

.accept-bounty-btn:hover {
  background: #b30000;
  transform: scale(1.03);
}

/* 4. CAMPFIRE & SURVIVAL */
#camp-modal .vintage-window {
  width: 650px;
  background: #201712;
  color: var(--color-parchment);
  border-color: var(--color-gold);
}

.camp-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 14px;
}

.camp-card {
  background: rgba(43, 31, 23, 0.8);
  border: 1px solid rgba(203, 168, 106, 0.3);
  padding: 16px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.camp-card-title {
  font-size: 18px;
  color: var(--color-gold);
  font-weight: 700;
}

.camp-btn-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.camp-action-btn {
  background: #36261b;
  color: var(--color-parchment);
  border: 1px solid var(--color-gold);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.camp-action-btn:hover {
  background: var(--color-gold);
  color: #1a120b;
}

/* 5. HAND-DRAWN WORLD MAP */
#map-modal .vintage-window {
  width: 900px;
  height: 650px;
  background: #eddcb5;
  border: 8px solid #2e1e14;
  box-shadow: 0 0 0 2px var(--color-gold), 0 20px 60px rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  padding: 16px;
}

#map-canvas-container {
  flex: 1;
  position: relative;
  background: #eddcb5;
  border: 2px solid #5a422e;
  border-radius: 4px;
  overflow: hidden;
  cursor: crosshair;
}

#map-canvas {
  width: 100%;
  height: 100%;
}

.map-controls-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  font-size: 13px;
  color: #3b2a1c;
}

/* 6. ARTHUR'S LEATHER-BOUND JOURNAL */
#journal-modal .vintage-window {
  width: 820px;
  height: 560px;
  background: #f1e6cc;
  border: 12px solid #382417;
  display: flex;
  flex-direction: column;
  padding: 24px 32px;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.2), 0 20px 60px rgba(0,0,0,0.95);
}

.journal-spread {
  display: flex;
  flex: 1;
  gap: 36px;
}

.journal-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px;
}

.journal-sketch-box {
  width: 100%;
  height: 220px;
  border: 1px dashed #7a6349;
  background: rgba(255, 255, 255, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
}

.journal-sketch-icon {
  font-size: 64px;
  color: #3b2a1c;
}

.journal-text-entry {
  font-family: 'Georgia', serif;
  font-size: 15px;
  line-height: 1.6;
  color: #2b1f17;
  font-style: italic;
}

.journal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #7a6349;
  padding-top: 12px;
}

/* 7. RADIAL WEAPON WHEEL */
#weapon-wheel-modal {
  background: rgba(10, 8, 6, 0.7);
}

#wheel-container {
  position: relative;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wheel-slot {
  position: absolute;
  width: 84px;
  height: 84px;
  background: rgba(26, 20, 15, 0.9);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.8);
  transition: all 0.15s ease;
  color: var(--color-parchment);
}

.wheel-slot:hover, .wheel-slot.selected {
  background: var(--color-gold);
  color: #1a120b;
  transform: scale(1.12);
}

.wheel-slot-icon {
  font-size: 26px;
}

.wheel-slot-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 2px;
}

#wheel-center-info {
  position: absolute;
  width: 110px;
  height: 110px;
  background: #19120e;
  border: 2px solid var(--color-gold-bright);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.9);
}

#wheel-info-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold-bright);
  text-transform: uppercase;
}

#wheel-info-ammo {
  font-size: 12px;
  color: var(--color-parchment);
  font-family: var(--font-sans);
}

/* 8. PAUSE MENU & SETTINGS */
#pause-modal .vintage-window {
  width: 500px;
  background: #19120e;
  color: var(--color-parchment);
  border-color: var(--color-gold);
}

.pause-menu-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.pause-btn {
  background: #2b1f17;
  color: var(--color-parchment);
  border: 1px solid rgba(203, 168, 106, 0.4);
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  text-align: left;
  transition: all 0.2s;
}

.pause-btn:hover {
  background: var(--color-gold);
  color: #19120e;
  border-color: var(--color-gold-bright);
  padding-left: 28px;
}

.settings-slider-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}
