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

body, html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
  background-color: #0b0f19;
  font-family: 'Trebuchet MS', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #fff;
  touch-action: none;
}

#app-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* Universal Floating Back Button */
.hub-floating-back {
  position: absolute;
  top: env(safe-area-inset-top, 10px);
  margin-top: 8px;
  right: 12px;
  background: rgba(15, 23, 42, 0.9);
  border: 1.5px solid #fbbf24;
  color: #fbbf24;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  touch-action: manipulation;
  transition: transform 0.1s, box-shadow 0.1s;
}

.hub-floating-back:active {
  transform: scale(0.93);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.9);
}

.hidden {
  display: none !important;
}

/* Master Hub Screen (Sảnh Chọn Game) */
.hub-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, #1e1b4b 0%, #090d16 80%);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  padding: env(safe-area-inset-top, 24px) 16px env(safe-area-inset-bottom, 24px) 16px;
  touch-action: pan-y;
}

.hub-hero {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 24px;
}

.arcade-badge {
  display: inline-block;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.5);
  color: #fbbf24;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.hub-title {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 1.5px;
  background: linear-gradient(90deg, #fbbf24, #f97316, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.hub-sub {
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

/* 4 Game Cards Grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  width: 100%;
  max-width: 960px;
  margin-bottom: 24px;
}

.game-card {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.92) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.2s, box-shadow 0.2s;
  touch-action: manipulation;
  overflow: hidden;
  position: relative;
}

.game-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.game-card:active {
  transform: scale(0.97);
}

.card-cover {
  width: 100%;
  height: 125px;
  border-radius: 12px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.7);
}

.ci-cover {
  background: radial-gradient(circle at center, #1e1b4b 0%, #030712 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.cover-chicken {
  height: 85px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
  animation: ciFlap 0.8s infinite alternate ease-in-out;
}

.cover-ship {
  height: 48px;
  object-fit: contain;
  position: absolute;
  bottom: 8px;
  right: 18px;
  filter: drop-shadow(0 2px 8px rgba(56, 189, 248, 0.6));
}

.cover-drumstick {
  height: 34px;
  object-fit: contain;
  position: absolute;
  top: 10px;
  left: 18px;
  transform: rotate(-25deg);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

@keyframes ciFlap {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-4px) scale(1.04); }
}

.pvz-cover {
  background: url('../assets/pvz/background1.jpg') center/cover no-repeat;
  border: 1px solid rgba(132, 204, 22, 0.4);
  position: relative;
}

.pvz-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}

.cover-sunflower {
  height: 72px;
  object-fit: contain;
  position: absolute;
  bottom: 8px;
  left: 14px;
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}

.cover-pea {
  height: 64px;
  object-fit: contain;
  position: absolute;
  bottom: 8px;
  left: 80px;
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}

.cover-zombie {
  height: 96px;
  object-fit: contain;
  position: absolute;
  bottom: 2px;
  right: 14px;
  z-index: 2;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.7));
}

.garden-cover {
  background: radial-gradient(circle at center, #0284c7 0%, #0c4a6e 100%);
  border: 1px solid rgba(56, 189, 248, 0.4);
}

.farm-cover {
  background: radial-gradient(circle at center, #15803d 0%, #14532d 100%);
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.cover-emoji-lg {
  font-size: 42px;
  letter-spacing: 8px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.chicken-theme {
  border-color: rgba(249, 115, 22, 0.6);
}
.chicken-theme:hover {
  box-shadow: 0 0 35px rgba(249, 115, 22, 0.45);
}

.garden-theme {
  border-color: rgba(56, 189, 248, 0.6);
}
.garden-theme:hover {
  box-shadow: 0 0 35px rgba(56, 189, 248, 0.45);
}

.farm-theme {
  border-color: rgba(34, 197, 94, 0.6);
}
.farm-theme:hover {
  box-shadow: 0 0 35px rgba(34, 197, 94, 0.45);
}

.pvz-theme {
  border-color: rgba(168, 85, 247, 0.6);
}
.pvz-theme:hover {
  box-shadow: 0 0 35px rgba(168, 85, 247, 0.45);
}

.card-title {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 2px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.card-subtitle {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: #fbbf24;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.card-desc {
  font-size: 12px;
  line-height: 1.5;
  color: #94a3b8;
  margin-bottom: 14px;
  min-height: 48px;
}

.play-card-btn {
  width: 100%;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 10px 0;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.45);
  transition: transform 0.1s, filter 0.1s;
}

.play-card-btn:hover {
  filter: brightness(1.1);
}

.play-card-btn:active {
  transform: scale(0.97);
}

.hub-footer {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-align: center;
  margin-bottom: 16px;
}

/* Active Game Container */
.active-game-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.game-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* =======================================================
   1. CHICKEN INVADERS AUTHENTIC STYLING
======================================================= */
.game-hud {
  position: absolute;
  top: env(safe-area-inset-top, 6px);
  margin-top: 6px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
  z-index: 20;
}

.hud-col {
  background: rgba(15, 23, 42, 0.88);
  border: 1.5px solid rgba(251, 191, 36, 0.4);
  border-radius: 8px;
  padding: 5px 12px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
}

.left-col { align-items: flex-start; min-width: 110px; }
.center-col { align-items: center; border-color: rgba(56, 189, 248, 0.6); padding: 6px 20px; }
.right-col { align-items: flex-end; min-width: 110px; }

.hud-label { font-size: 10px; font-weight: 900; letter-spacing: 1px; color: #94a3b8; }
.hud-val { font-size: 17px; font-weight: 900; letter-spacing: 1.5px; }
.score-val { color: #fbbf24; text-shadow: 0 0 10px rgba(251, 191, 36, 0.8); }
.wave-tag { font-size: 17px; font-weight: 900; color: #38bdf8; text-shadow: 0 0 10px rgba(56, 189, 248, 0.8); }
.wave-detail { font-size: 9px; font-weight: 800; color: #cbd5e1; }

.lives-row, .missiles-row { display: flex; gap: 4px; margin-top: 3px; }
.mini-ship-icon {
  display: inline-block;
  width: 15px; height: 15px;
  background: #ef4444;
  clip-path: polygon(50% 0%, 0% 100%, 50% 75%, 100% 100%);
  filter: drop-shadow(0 0 4px #ef4444);
}
.mini-missile-icon {
  display: inline-block;
  width: 9px; height: 16px;
  background: #f97316;
  border-radius: 4px 4px 1px 1px;
  border: 1px solid #fed7aa;
}

.roast-meter-box { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.roast-icon { font-size: 13px; }
.roast-track {
  width: 55px; height: 7px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.5);
}
.roast-fill {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.heat-gauge-box {
  position: absolute;
  top: 100px;
  right: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 22;
}
.heat-meter-track {
  position: relative;
  width: 14px;
  height: 110px;
  background: rgba(15, 23, 42, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.heat-fill {
  width: 100%;
  background: linear-gradient(180deg, #ef4444 0%, #f59e0b 50%, #38bdf8 100%);
}
.heat-icon { font-size: 14px; margin-top: 4px; }
.overheat-alert {
  position: absolute;
  top: -24px; right: 0;
  background: #ef4444; color: #fff;
  font-size: 10px; font-weight: 900;
  padding: 2px 6px; border-radius: 4px;
  animation: overheatPulse 0.4s infinite alternate;
}
@keyframes overheatPulse {
  0% { transform: scale(0.95); }
  100% { transform: scale(1.1); box-shadow: 0 0 12px #ef4444; }
}

.weapon-hud-box {
  position: absolute;
  bottom: env(safe-area-inset-bottom, 12px);
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(52, 211, 153, 0.4);
  padding: 4px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  z-index: 20;
}
.weapon-name { font-size: 11px; font-weight: 900; color: #34d399; }
.weapon-level-badge { background: #059669; font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 4px; }

.boss-hud {
  position: absolute;
  top: 72px; left: 50%;
  transform: translateX(-50%);
  width: 86%; max-width: 440px;
  background: rgba(30, 10, 15, 0.94);
  border: 2px solid #ef4444;
  border-radius: 8px;
  padding: 6px 14px;
  text-align: center;
  z-index: 22;
  pointer-events: none;
}
.boss-name { font-size: 13px; font-weight: 900; color: #fbbf24; margin-bottom: 4px; }
.boss-hp-track { width: 100%; height: 12px; background: rgba(0, 0, 0, 0.8); border-radius: 6px; overflow: hidden; }
.boss-hp-fill { height: 100%; background: linear-gradient(90deg, #ef4444, #f59e0b); }

.mobile-missile-btn {
  position: absolute;
  bottom: env(safe-area-inset-bottom, 16px);
  right: 16px;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, #ea580c 30%, #991b1b 100%);
  border: 3px solid #f97316;
  color: #fff;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  box-shadow: 0 0 25px rgba(234, 88, 12, 0.8);
  cursor: pointer;
  z-index: 30;
  touch-action: manipulation;
}
.missile-icon { font-size: 24px; line-height: 1; }
.missile-label { font-size: 9px; font-weight: 900; }
.missile-count {
  position: absolute; top: -3px; right: -3px;
  background: #fbbf24; color: #000;
  font-size: 11px; font-weight: 900;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
}

/* Authentic Chicken Invaders Classic Menu */
.ci-classic-menu {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 45;
  padding: 16px;
}

.ci-menu-frame {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 4px solid #b45309;
  box-shadow: 0 0 45px rgba(245, 158, 11, 0.4), inset 0 0 20px rgba(0,0,0,0.8);
  border-radius: 20px;
  padding: 30px 24px;
  max-width: 440px;
  width: 92%;
  text-align: center;
}

.ci-hero-chicken { font-size: 46px; display: inline-block; margin-bottom: 6px; }
.ci-retro-title {
  font-size: 28px; font-weight: 900;
  color: #fbbf24;
  letter-spacing: 2px;
  text-shadow: 0 3px 0 #b45309, 0 0 15px rgba(251, 191, 36, 0.6);
  margin-bottom: 4px;
}
.ci-retro-sub { font-size: 10px; font-weight: 800; color: #94a3b8; letter-spacing: 1px; margin-bottom: 24px; }

.ci-menu-buttons { display: flex; flex-direction: column; gap: 12px; }
.ci-wood-btn {
  background: linear-gradient(180deg, #d97706 0%, #92400e 100%);
  border: 2px solid #fbbf24;
  color: #fff;
  font-size: 15px; font-weight: 900;
  letter-spacing: 1px;
  padding: 14px 20px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  touch-action: manipulation;
  transition: transform 0.1s;
}
.ci-wood-btn:active { transform: scale(0.96); }
.ci-wood-btn.secondary {
  background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
  border-color: #64748b;
  font-size: 13px;
  padding: 10px 18px;
}

/* Generic Modal */
.modal-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(6px);
  display: flex; justify-content: center; align-items: center;
  z-index: 60; padding: 16px;
}
.modal-card {
  background: #0f172a; border: 2px solid #fbbf24;
  border-radius: 16px; padding: 24px; max-width: 420px; width: 92%;
  text-align: center;
}
.ci-launch-btn {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  border: none; color: #fff; font-size: 15px; font-weight: 900;
  padding: 12px 30px; border-radius: 8px; cursor: pointer;
}

/* =======================================================
   2. KHU VƯỜN TRÊN MÂY STYLING
======================================================= */
.kvtm-hud {
  position: absolute;
  top: env(safe-area-inset-top, 8px);
  left: 12px;
  display: flex;
  gap: 10px;
  z-index: 20;
}
.kvtm-stat-badge {
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid #38bdf8;
  border-radius: 20px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}
.stat-icon { font-size: 16px; }
.stat-val { font-size: 14px; font-weight: 900; color: #0369a1; }
.kvtm-xp-bar { width: 50px; height: 6px; background: rgba(0,0,0,0.15); border-radius: 3px; overflow: hidden; }
.kvtm-xp-fill { height: 100%; background: #38bdf8; }

.kvtm-seed-bar {
  position: absolute;
  bottom: env(safe-area-inset-bottom, 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid #38bdf8;
  border-radius: 18px;
  padding: 10px 14px;
  width: 94%;
  max-width: 520px;
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.35);
  z-index: 25;
}
.seed-bar-title { font-size: 10px; font-weight: 900; color: #0284c7; text-align: center; margin-bottom: 6px; }
.seed-items { display: flex; gap: 8px; justify-content: center; }
.seed-btn {
  background: #f0f9ff;
  border: 2px solid #bae6fd;
  border-radius: 12px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  touch-action: manipulation;
}
.seed-btn.active {
  background: #e0f2fe;
  border-color: #0284c7;
  box-shadow: 0 0 10px rgba(2, 132, 199, 0.4);
}
.seed-icon { font-size: 22px; }
.seed-info { display: flex; flex-direction: column; text-align: left; }
.seed-name { font-size: 11px; font-weight: 900; color: #0f172a; }
.seed-cost { font-size: 10px; font-weight: 800; color: #d97706; }

/* =======================================================
   3. NÔNG TRẠI VUI VẺ STYLING
======================================================= */
.farm-hud {
  position: absolute;
  top: env(safe-area-inset-top, 8px);
  left: 12px;
  display: flex;
  gap: 10px;
  z-index: 20;
}
.farm-stat-badge {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #16a34a;
  border-radius: 20px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
  cursor: pointer;
}
#farm-truck-btn {
  background: #fee2e2;
  border-color: #ef4444;
}
#farm-truck-btn .stat-val { color: #dc2626; }

.farm-bottom-bar {
  position: absolute;
  bottom: env(safe-area-inset-bottom, 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid #16a34a;
  border-radius: 18px;
  padding: 10px 14px;
  width: 94%;
  max-width: 520px;
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.35);
  z-index: 25;
}
.crop-bar-title { font-size: 10px; font-weight: 900; color: #15803d; text-align: center; margin-bottom: 6px; }
.crop-items { display: flex; gap: 8px; justify-content: center; }
.crop-btn {
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
  border-radius: 12px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.crop-btn.active {
  background: #dcfce7;
  border-color: #16a34a;
  box-shadow: 0 0 10px rgba(22, 163, 74, 0.4);
}
.crop-icon { font-size: 22px; }
.crop-info { display: flex; flex-direction: column; text-align: left; }
.crop-name { font-size: 11px; font-weight: 900; color: #0f172a; }
.crop-cost { font-size: 10px; font-weight: 800; color: #d97706; }

/* =======================================================
   4. PLANTS VS ZOMBIES STYLING
======================================================= */
.pvz-top-hud {
  position: absolute;
  top: env(safe-area-inset-top, 6px);
  left: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 20;
}
.pvz-sun-badge {
  background: #78350f;
  border: 2px solid #fbbf24;
  border-radius: 12px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.sun-icon { font-size: 18px; }
.sun-val { font-size: 15px; font-weight: 900; color: #fbbf24; }

.pvz-seed-bank {
  display: flex;
  gap: 6px;
}
.pvz-card {
  background: #451a03;
  border: 2px solid #a16207;
  border-radius: 10px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  touch-action: manipulation;
}
.pvz-card.active {
  border-color: #22c55e;
  background: #14532d;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}
.pvz-card-icon { font-size: 20px; }
.pvz-card-info { display: flex; flex-direction: column; text-align: left; }
.pvz-card-name { font-size: 10px; font-weight: 900; color: #fff; }
.pvz-card-cost { font-size: 9px; font-weight: 800; color: #fbbf24; }

.pvz-wave-banner {
  position: absolute;
  top: 45%; left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  background: rgba(15, 23, 42, 0.95);
  border: 3px solid #ef4444;
  color: #ef4444;
  font-size: 24px; font-weight: 900;
  letter-spacing: 2px;
  padding: 16px 28px;
  border-radius: 14px;
  box-shadow: 0 0 35px rgba(239, 68, 68, 0.7);
  z-index: 35;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s, opacity 0.25s;
}
.pvz-wave-banner.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 640px) {
  .hub-title { font-size: 26px; }
  .game-grid { grid-template-columns: 1fr; }
  .seed-btn, .crop-btn { padding: 4px 8px; }
  .seed-name, .crop-name { font-size: 10px; }
  .pvz-card { padding: 3px 6px; }
  .pvz-card-name { font-size: 9px; }
}
