@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&family=Silkscreen:wght@400;700&display=swap');

:root {
  --bg-dark: #090812;
  --panel-bg: #181428;
  --panel-border: #4d3d75;
  --accent-gold: #ffcc00;
  --accent-gold-dark: #b38600;
  --accent-silver: #c8e0f4;
  --accent-silver-dark: #7292ab;
  --accent-cyan: #00ffcc;
  --accent-green: #25d366;
  --text-main: #f0f0fa;
  --text-dim: #9b98b0;
  --dungeon-floor: #221d30;
  --dungeon-wall: #161224;
  --font-pixel: 'Press Start 2P', monospace;
  --font-sub: 'VT323', monospace;
}

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

html, body {
  width: 100%;
  min-height: 100%;
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-pixel);
  overflow-x: hidden;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: 
    radial-gradient(circle at 50% 30%, #1f1a3a 0%, #08070e 100%);
  padding: 10px;
}

/* CRT Screen Filter Overlay */
.crt-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 0, 0, 0.22) 50%
  ), linear-gradient(
    90deg,
    rgba(255, 0, 0, 0.025),
    rgba(0, 255, 0, 0.01),
    rgba(0, 0, 255, 0.025)
  );
  background-size: 100% 4px, 6px 100%;
  pointer-events: none;
  z-index: 999;
}

/* App Container - Responsive Mobile Frame */
.game-container {
  width: 100%;
  max-width: 440px;
  height: 92vh;
  max-height: 880px;
  min-height: 580px;
  background: #110e1c;
  border-radius: 24px;
  border: 6px solid #362e54;
  box-shadow: 
    0 15px 40px rgba(0,0,0,0.85),
    inset 0 0 15px rgba(0,0,0,0.7),
    0 0 0 2px #5a4c8a;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Top Header */
.game-header {
  background: #1c1730;
  border-bottom: 4px solid var(--panel-border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.player-info-pill {
  display: flex;
  align-items: center;
  gap: 8px;
}

.player-portrait-mini {
  width: 32px;
  height: 32px;
  border: 2px solid var(--accent-gold);
  border-radius: 6px;
  background: #2a2245;
  object-fit: cover;
  image-rendering: pixelated;
}
.player-portrait-mini.flor-theme {
  border-color: var(--accent-silver);
}

.player-title {
  font-size: 9px;
  color: var(--accent-gold);
  text-shadow: 0 0 6px rgba(255, 204, 0, 0.6);
  letter-spacing: 0.5px;
}
.player-title.flor-theme {
  color: var(--accent-silver);
  text-shadow: 0 0 6px rgba(200, 224, 244, 0.6);
}

.room-title {
  font-size: 7px;
  color: var(--text-dim);
  margin-top: 3px;
}

.header-actions {
  display: flex;
  gap: 6px;
}

.icon-btn {
  background: #282042;
  border: 2px solid #4d3d75;
  color: #ff9999;
  font-family: var(--font-pixel);
  font-size: 8px;
  padding: 6px 8px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 2px 0 #120d20;
  transition: transform 0.1s;
}
.icon-btn:active {
  transform: translateY(2px);
  box-shadow: none;
}

/* Main Interactive Escape Room Canvas */
.room-viewport {
  flex: 1;
  position: relative;
  background: #171324;
  overflow: hidden;
  cursor: crosshair;
  background-image: 
    radial-gradient(circle at 50% 25%, #2a2240 0%, #120e1d 90%);
}

/* Wall & Floor Partition */
.room-wall {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 52%;
  background: #1c172b;
  border-bottom: 6px solid #0f0c18;
  background-image: 
    repeating-linear-gradient(0deg, #241e36, #241e36 18px, #161222 18px, #161222 20px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(0,0,0,0.3) 40px, rgba(0,0,0,0.3) 42px);
}

.room-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48%;
  background: #231c30;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02) 0%, transparent 80%),
    repeating-linear-gradient(45deg, #2b223c 0px, #2b223c 16px, #1c1628 16px, #1c1628 32px);
}

/* Dungeon Torches with Animated Flames */
.wall-torch {
  position: absolute;
  top: 38px;
  width: 16px;
  height: 28px;
  background: #4a301e;
  border: 2px solid #201309;
  z-index: 5;
  box-shadow: 0 4px 6px rgba(0,0,0,0.6);
}
.torch-left { left: 16px; }
.torch-right { right: 16px; }

.torch-flame {
  position: absolute;
  top: -14px;
  left: 1px;
  width: 12px;
  height: 16px;
  background: #ffaa00;
  border-radius: 50% 50% 20% 20%;
  box-shadow: 0 0 14px #ffcc00, 0 0 25px #ff4400;
  animation: torch-glow 0.25s infinite alternate ease-in-out;
}
@keyframes torch-glow {
  0% { transform: scale(0.9) translateY(1px); opacity: 0.85; filter: brightness(1.0); }
  100% { transform: scale(1.15) translateY(-2px); opacity: 1.0; filter: brightness(1.3); }
}

/* Wall Banner Plaque */
.room-banner {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: #2b2044;
  border: 3px solid #634d94;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 7px;
  color: var(--accent-gold);
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  z-index: 6;
  white-space: nowrap;
}

/* Interactive Clue Picture Frame on Wall */
.interactive-painting {
  position: absolute;
  top: 52px;
  left: 52px;
  width: 72px;
  height: 102px;
  border: 4px solid #d4af37;
  border-radius: 3px;
  background: #110e1a;
  box-shadow: 
    0 0 12px rgba(255, 204, 0, 0.4),
    0 6px 12px rgba(0,0,0,0.7),
    inset 0 0 6px #000;
  cursor: pointer;
  z-index: 8;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.interactive-painting:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 
    0 0 20px rgba(255, 204, 0, 0.8),
    0 8px 16px rgba(0,0,0,0.9);
}
.interactive-painting img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
}

.painting-badge {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  border: 1px solid var(--accent-gold);
  color: #fff;
  font-size: 6px;
  padding: 2px 4px;
  border-radius: 3px;
  white-space: nowrap;
  pointer-events: none;
}

/* Interactive Dungeon Door at Floor Level */
.interactive-door {
  position: absolute;
  bottom: 44%;
  right: 36px;
  width: 98px;
  height: 148px;
  background: #241208;
  border: 6px solid #442412;
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  box-shadow: 
    inset 0 0 20px #000,
    0 12px 25px rgba(0,0,0,0.9);
  cursor: pointer;
  z-index: 8;
  overflow: hidden;
  transition: transform 0.2s, filter 0.2s;
}
.interactive-door:hover {
  transform: scale(1.04);
  filter: brightness(1.15);
}

.door-planks {
  width: 100%;
  height: 100%;
  position: relative;
  background: #3a1e0e;
  background-image: 
    repeating-linear-gradient(90deg, #3a1e0e 0px, #3a1e0e 14px, #201007 14px, #201007 16px);
  transition: transform 1.0s ease-in-out;
}

/* Door Hinges */
.door-hinge {
  position: absolute;
  right: 3px;
  width: 9px;
  height: 14px;
  background: #111;
  border: 2px solid #555;
  border-radius: 2px;
  z-index: 3;
}
.hinge-top { top: 25px; }
.hinge-bottom { bottom: 25px; }

/* Door Handle (Picaporte) */
.door-handle {
  position: absolute;
  top: 70px;
  left: 10px;
  width: 24px;
  height: 10px;
  background: #d4af37;
  border: 2px solid #6b530e;
  border-radius: 4px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.85), inset 0 1px 2px #fff;
  z-index: 4;
}
.door-handle::after {
  content: '';
  position: absolute;
  left: -4px;
  top: -3px;
  width: 9px;
  height: 12px;
  background: #997816;
  border-radius: 3px;
}

.door-handle.silver-handle {
  background: #d0e0f0;
  border-color: #557799;
}
.door-handle.silver-handle::after {
  background: #88aacc;
}

/* Keyhole Slot (Cerradura) */
.door-keyhole {
  position: absolute;
  top: 88px;
  left: 13px;
  width: 16px;
  height: 22px;
  background: url('../sprites/brass_keyhole.png') no-repeat center/contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.95));
  z-index: 4;
}
.door-keyhole.silver {
  background-image: url('../sprites/silver_keyhole.png');
}

.interactive-door.unlocked .door-planks {
  transform: translateX(100%);
}

.door-glow-inside {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle, #ffea88 0%, #ff8800 60%, #551100 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #fff;
  text-shadow: 0 0 4px #000;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.interactive-door.unlocked .door-glow-inside {
  opacity: 1;
}

.door-badge {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  border: 1px solid #ffaa44;
  color: #fff;
  font-size: 6px;
  padding: 2px 4px;
  border-radius: 3px;
  white-space: nowrap;
  pointer-events: none;
}

/* Walking Character Avatar on Floor (No text on head) */
.character-avatar {
  position: absolute;
  width: 72px;
  height: 94px;
  z-index: 15;
  transform: translate(-50%, -100%);
  pointer-events: none;
  transition: filter 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatar-sprite-box {
  width: 68px;
  height: 84px;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 6px 6px rgba(0,0,0,0.7));
}

.avatar-shadow {
  width: 44px;
  height: 10px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  margin-top: -4px;
}

/* Click Target Reticle / Feedback */
.click-ripple {
  position: absolute;
  width: 24px;
  height: 16px;
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ripple-anim 0.5s ease-out forwards;
  z-index: 10;
}
@keyframes ripple-anim {
  0% { transform: translate(-50%, -50%) scale(0.3); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

/* Inventory HUD & Tools */
.inventory-container {
  background: #141022;
  border-top: 4px solid var(--panel-border);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.inventory-label {
  font-size: 8px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

.inventory-slots {
  display: flex;
  gap: 10px;
}

.inv-slot {
  width: 46px;
  height: 46px;
  background: #231c38;
  border: 3px solid #3d3159;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.6);
}
.inv-slot.has-item {
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.4), inset 0 0 8px rgba(0,0,0,0.6);
  animation: slot-pulse 2s infinite alternate;
}
.inv-slot.has-item.silver {
  border-color: var(--accent-silver);
  box-shadow: 0 0 10px rgba(200, 224, 244, 0.4), inset 0 0 8px rgba(0,0,0,0.6);
}

@keyframes slot-pulse {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.04); }
}

.inv-key-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  image-rendering: pixelated;
  animation: float-key 1.5s infinite alternate ease-in-out;
}
@keyframes float-key {
  0% { transform: translateY(0); }
  100% { transform: translateY(-3px); }
}

/* System Dialog & Guidance Console */
.dialog-console {
  background: #0b0914;
  border-top: 3px solid #28203c;
  padding: 10px 14px;
  min-height: 58px;
  font-family: var(--font-sub);
  font-size: 15px;
  line-height: 1.4;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  box-shadow: inset 0 3px 10px rgba(0,0,0,0.9);
  z-index: 25;
}
.dialog-console .speaker-tag {
  color: var(--accent-gold);
  font-family: var(--font-pixel);
  font-size: 8px;
  margin-right: 6px;
}

/* Modals (Painting Clue, Door Key, Password, Voucher) */
.modal-backdrop {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8, 6, 15, 0.92);
  z-index: 100;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: modal-fade 0.25s ease-out;
}
.modal-backdrop.show {
  display: flex;
}
@keyframes modal-fade {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1.0); }
}

.pixel-card {
  width: 95%;
  max-width: 380px;
  background: #1d1830;
  border: 4px solid var(--panel-border);
  box-shadow: 0 10px 0 #0d0a17, 0 0 25px rgba(0,0,0,0.9);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  background: #4a1525;
  border: 2px solid #a82e4e;
  color: #fff;
  font-family: var(--font-pixel);
  font-size: 9px;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 4px;
}

.modal-title {
  font-size: 11px;
  color: var(--accent-gold);
  margin-bottom: 10px;
  line-height: 1.4;
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
}
.modal-title.silver {
  color: var(--accent-silver);
  text-shadow: 0 0 8px rgba(200, 224, 244, 0.5);
}

.clue-image-container {
  max-width: 170px;
  max-height: 240px;
  margin: 6px auto 14px;
  border: 4px solid #d4af37;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.3), 0 6px 12px rgba(0,0,0,0.8);
}
.clue-image-container img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.modal-desc {
  font-family: var(--font-sub);
  font-size: 14px;
  color: #ccc;
  line-height: 1.4;
  margin-bottom: 12px;
}

/* Number Dials for Juli's Puzzle */
.number-dials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 12px 0;
}

.dial-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.dial-step-btn {
  background: #352a54;
  border: 2px solid #5d4a8f;
  color: #fff;
  font-family: var(--font-pixel);
  font-size: 9px;
  width: 36px;
  height: 26px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 2px 0 #181328;
}
.dial-step-btn:active {
  transform: translateY(2px);
  box-shadow: none;
}

.dial-digit-box {
  width: 44px;
  height: 50px;
  background: #0d0a17;
  border: 3px solid var(--accent-gold);
  color: var(--accent-gold);
  font-family: var(--font-pixel);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  box-shadow: inset 0 0 10px rgba(255, 204, 0, 0.3);
}

/* Rune Slots for Flor's Puzzle */
.rune-slots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 12px 0;
}

.rune-btn {
  width: 58px;
  height: 62px;
  background: #1c2a44;
  border: 3px solid #4a75a0;
  border-radius: 8px;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 0 #0d1524, 0 0 10px rgba(74, 117, 160, 0.4);
  transition: transform 0.1s, border-color 0.2s;
}
.rune-btn:hover {
  border-color: var(--accent-silver);
}
.rune-btn:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #0d1524;
}

/* Action & Solve Buttons */
.action-btn-retro {
  background: #00aa44;
  border: 3px solid #00ff66;
  color: #fff;
  font-family: var(--font-pixel);
  font-size: 10px;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 0 #005522, 0 0 12px rgba(0, 255, 102, 0.4);
  margin-top: 8px;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.1s;
}
.action-btn-retro:hover {
  background: #00cc55;
}
.action-btn-retro:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #005522;
}

.action-btn-retro.whatsapp-btn {
  background: var(--accent-green);
  border-color: #5ef598;
  box-shadow: 0 4px 0 #128c3e, 0 0 12px rgba(37, 211, 102, 0.4);
}

.action-btn-retro.copy-btn {
  background: #2b4570;
  border-color: #5a8bd8;
  box-shadow: 0 4px 0 #15243b;
}

/* Password Input Box for Juli */
.code-input-box {
  width: 90%;
  background: #0a0714;
  border: 3px solid var(--accent-gold);
  border-radius: 6px;
  padding: 12px;
  color: #fff;
  font-family: var(--font-pixel);
  font-size: 12px;
  text-align: center;
  margin: 12px auto;
  outline: none;
  letter-spacing: 2px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}
.code-input-box:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 12px var(--accent-cyan), inset 0 0 10px rgba(0,0,0,0.8);
}

/* Secret Key Reveal Badge (Flor) */
.secret-key-display {
  background: #0a0714;
  border: 3px dashed var(--accent-cyan);
  border-radius: 8px;
  padding: 14px;
  margin: 14px 0;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
}

.secret-key-text {
  font-size: 18px;
  color: var(--accent-cyan);
  letter-spacing: 3px;
  text-shadow: 0 0 10px var(--accent-cyan);
  margin-bottom: 6px;
}

/* Final Voucher Modal Styling */
.voucher-showcase {
  width: 96%;
  max-width: 390px;
  max-height: 86vh;
  overflow-y: auto;
  background: #1a142c;
  border: 5px solid var(--accent-gold);
  box-shadow: 0 0 35px rgba(255, 204, 0, 0.7);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  position: relative;
}

.voucher-image-full {
  width: 100%;
  max-width: 320px;
  border: 3px solid #ffdd44;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.8);
  margin: 8px 0 12px;
}

/* Toast Message */
.retro-toast {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: #00aa44;
  border: 2px solid #00ff66;
  color: #fff;
  font-size: 8px;
  padding: 6px 12px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.8);
  z-index: 150;
  display: none;
  white-space: nowrap;
}

/* Admin Dashboard Styles */
.admin-container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

.admin-header {
  text-align: center;
  margin-bottom: 24px;
}

.admin-title {
  font-size: 16px;
  color: var(--accent-gold);
  text-shadow: 0 0 12px rgba(255, 204, 0, 0.6);
  margin-bottom: 8px;
}

.admin-subtitle {
  font-family: var(--font-sub);
  font-size: 18px;
  color: var(--text-dim);
}

.admin-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.admin-card {
  background: #1b162d;
  border: 4px solid var(--panel-border);
  box-shadow: 0 8px 0 #0f0c1b;
  border-radius: 8px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.admin-card.juli-card {
  border-color: var(--accent-gold);
}
.admin-card.flor-card {
  border-color: var(--accent-silver);
}

.admin-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.admin-card-portrait {
  width: 50px;
  height: 50px;
  border: 2px solid #555;
  border-radius: 6px;
  background: #251f38;
}

.admin-card-title {
  font-size: 12px;
  color: #fff;
}

.admin-card-details {
  font-family: var(--font-sub);
  font-size: 16px;
  color: #bbb;
  line-height: 1.5;
  margin-bottom: 16px;
}

.admin-link-box {
  background: #0d0a17;
  border: 1px solid #3a2e54;
  padding: 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 10px;
  color: var(--accent-cyan);
  word-break: break-all;
  margin-bottom: 12px;
}

.admin-btn-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-split-preview {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.preview-frame-box {
  flex: 1;
  min-width: 320px;
  max-width: 440px;
}

.preview-iframe {
  width: 100%;
  height: 680px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.9);
}

/* Responsive adjustments for phones */
@media (max-width: 480px) {
  body {
    padding: 0;
    background: #000;
  }
  .game-container {
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    border: none;
  }
  .interactive-painting {
    left: 20px;
    width: 66px;
    height: 94px;
  }
  .interactive-door {
    right: 20px;
    width: 90px;
    height: 135px;
    bottom: 44%;
  }
  .character-avatar {
    width: 64px;
    height: 84px;
  }
  .avatar-sprite-box {
    width: 60px;
    height: 74px;
  }
}
