/* CHRONO SIGNAL - styles.css */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: #000;
  color: #d6f5ff;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  overflow: hidden;
  width: 100%; height: 100%;
  user-select: none;
}

.hidden { display: none !important; }

#gameCanvas {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  display: block;
  background: #000;
}

.screen {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 50;
}

/* === LOADING === */
#loadingScreen {
  background: radial-gradient(ellipse at center, #0a1e26 0%, #000 70%);
}
.loadingInner {
  width: 540px; max-width: 92vw;
  text-align: center;
}
.logoTitle {
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: 64px; letter-spacing: 8px;
  background: linear-gradient(180deg, #c7faff 0%, #7ef7ff 50%, #2a8aa0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(126,247,255,0.4);
}
.logoSub {
  font-size: 14px; letter-spacing: 6px;
  opacity: 0.7; margin-top: 6px;
}
.loadBar {
  margin: 36px auto 12px;
  width: 80%; height: 8px;
  background: rgba(126,247,255,0.1);
  border: 1px solid rgba(126,247,255,0.3);
  border-radius: 4px;
  overflow: hidden;
}
#loadBarFill {
  width: 0%; height: 100%;
  background: linear-gradient(90deg, #2a8aa0, #7ef7ff);
  box-shadow: 0 0 14px #7ef7ff;
  transition: width 0.25s ease;
}
#loadText {
  font-size: 12px; letter-spacing: 2px; opacity: 0.7;
}

/* === MENU === */
.menuBg, .pauseBg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(40,180,210,0.15), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(180,40,50,0.08), transparent 60%),
    linear-gradient(180deg, #04090c 0%, #000 100%);
  z-index: 0;
}
.menuBg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 0, transparent calc(100% - 1px), rgba(126,247,255,0.05) 100%),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(126,247,255,0.05) 100%);
  background-size: 40px 40px;
  pointer-events: none;
  animation: gridFloat 25s linear infinite;
}
@keyframes gridFloat {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 0 200px, 200px 0; }
}
.pauseBg {
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
}

.menuPanel {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,30,40,0.85), rgba(5,15,20,0.92));
  border: 1px solid rgba(126,247,255,0.35);
  border-radius: 10px;
  padding: 36px 48px;
  min-width: 460px;
  max-width: 92vw;
  box-shadow: 0 0 50px rgba(126,247,255,0.15), inset 0 0 30px rgba(0,0,0,0.6);
  text-align: center;
}
.menuPanel.wide { min-width: 720px; }

.mainTitle {
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: 56px; letter-spacing: 8px;
  background: linear-gradient(180deg, #d4faff, #7ef7ff 60%, #1a6c80);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 32px rgba(126,247,255,0.35);
  margin-bottom: 4px;
}
.mainTagline {
  font-size: 13px; letter-spacing: 4px; opacity: 0.7;
  margin-bottom: 28px;
}
.panelTitle {
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: 34px; letter-spacing: 6px;
  color: #c7faff;
  margin-bottom: 22px;
  text-shadow: 0 0 14px rgba(126,247,255,0.4);
}

.menuButtons { display: flex; flex-direction: column; gap: 12px; }
.menuBtn {
  font-family: inherit;
  font-size: 16px; letter-spacing: 4px;
  padding: 14px 22px;
  background: linear-gradient(180deg, rgba(20,60,75,0.7), rgba(8,24,30,0.7));
  border: 1px solid rgba(126,247,255,0.4);
  color: #d6f5ff;
  cursor: pointer;
  transition: all 0.18s ease;
  letter-spacing: 4px;
  border-radius: 4px;
}
.menuBtn:hover {
  background: linear-gradient(180deg, rgba(40,140,170,0.7), rgba(15,50,65,0.85));
  border-color: #7ef7ff;
  color: #fff;
  box-shadow: 0 0 18px rgba(126,247,255,0.4), inset 0 0 12px rgba(126,247,255,0.2);
  transform: translateY(-1px);
}
.menuBtn:active { transform: translateY(0); }
.menuBtn.small { width: 160px; }
.menuBtn.back { margin-top: 22px; min-width: 160px; }

.menuFooter {
  margin-top: 24px; font-size: 11px; opacity: 0.4; letter-spacing: 3px;
}

/* === HOWTO === */
.howtoContent { text-align: left; }
.howtoRow {
  display: flex; align-items: center; gap: 14px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(126,247,255,0.08);
}
.howtoRow .key {
  display: inline-block;
  min-width: 110px;
  padding: 4px 10px;
  background: rgba(126,247,255,0.1);
  border: 1px solid rgba(126,247,255,0.35);
  border-radius: 4px;
  font-family: "Consolas", monospace;
  font-size: 13px;
  text-align: center;
  color: #c7faff;
}
.howtoRow .desc { font-size: 14px; opacity: 0.85; }
.howtoHeader {
  margin-top: 22px; font-size: 16px; letter-spacing: 4px;
  color: #7ef7ff; font-weight: bold;
}
.howtoText {
  margin-top: 10px; font-size: 13px; line-height: 1.6; opacity: 0.85;
}
.howtoText.warn { color: #ff8e8e; }

/* === CREDITS === */
.creditsContent { padding: 10px 0 0; }
.creditsBig {
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: 36px; letter-spacing: 6px;
  color: #c7faff; margin-bottom: 6px;
}
.creditsLine { font-size: 13px; opacity: 0.6; letter-spacing: 3px; }
.creditsStudio {
  font-size: 22px; color: #ffd97a;
  margin: 4px 0 22px;
  letter-spacing: 3px;
  text-shadow: 0 0 14px rgba(255,217,122,0.35);
}
.creditsSection {
  margin-top: 14px; font-size: 11px;
  letter-spacing: 4px; opacity: 0.55;
}
.creditsName { font-size: 14px; color: #d6f5ff; }

/* === CONFIRM === */
.confirmText { font-size: 14px; opacity: 0.85; margin: 6px 0 20px; }
.confirmButtons { display: flex; gap: 14px; justify-content: center; }

/* === GOODBYE === */
#goodbyeScreen { background: #000; }
.goodbyeInner { text-align: center; }
.goodbyeTitle {
  font-family: "Impact", sans-serif; font-size: 44px;
  letter-spacing: 8px; color: #7ef7ff;
  text-shadow: 0 0 24px rgba(126,247,255,0.6);
}
.goodbyeSub { margin-top: 14px; font-size: 14px; letter-spacing: 3px; opacity: 0.8; }
.goodbyeSub.small { font-size: 11px; opacity: 0.5; }
.goodbyeSub.fade { margin-top: 30px; }

/* === HUD === */
#hud {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 20;
  color: #d6f5ff;
  font-family: "Segoe UI", sans-serif;
}
#crosshair {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
}
#interactPrompt {
  position: absolute; left: 50%; top: 60%;
  transform: translate(-50%, 0);
  display: flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(126,247,255,0.5);
  padding: 8px 14px;
  border-radius: 6px;
  box-shadow: 0 0 14px rgba(126,247,255,0.25);
}
#interactPrompt .iKey {
  background: rgba(126,247,255,0.18);
  border: 1px solid rgba(126,247,255,0.6);
  padding: 2px 10px; border-radius: 4px;
  font-family: "Consolas", monospace; font-size: 16px;
  color: #c7faff;
}
#interactPrompt .iLabel { font-size: 13px; letter-spacing: 3px; }

#topBar {
  position: absolute; top: 20px; left: 0; right: 0;
  display: flex; justify-content: space-between;
  padding: 0 28px;
}
.hudLabel { font-size: 10px; letter-spacing: 3px; opacity: 0.6; margin-bottom: 4px; }
#instabilityWrap { width: 240px; }
.hudBar {
  height: 8px; background: rgba(126,247,255,0.1);
  border: 1px solid rgba(126,247,255,0.3);
  border-radius: 4px; overflow: hidden;
}
#instabilityFill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #2dd07a 0%, #ffd166 60%, #ff4444 100%);
  transition: width 0.4s ease;
}
#timelineNameWrap { text-align: right; }
#timelineName {
  font-size: 13px; letter-spacing: 3px; color: #c7faff;
  text-shadow: 0 0 10px rgba(126,247,255,0.4);
}

#bottomBar {
  position: absolute; bottom: 18px; left: 28px;
}
#locText {
  font-size: 11px; letter-spacing: 4px; opacity: 0.65;
}

#subtitle {
  position: absolute; bottom: 70px; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  border-left: 3px solid #7ef7ff;
  padding: 8px 18px;
  font-size: 14px; max-width: 70vw;
  border-radius: 0 4px 4px 0;
}

/* === CONSOLE OVERLAY === */
#consoleOverlay {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  z-index: 80;
}
.consoleFrame {
  width: 880px; max-width: 96vw;
  background:
    linear-gradient(180deg, rgba(10,30,40,0.96), rgba(4,12,18,0.98));
  border: 1px solid rgba(126,247,255,0.45);
  border-radius: 10px;
  box-shadow: 0 0 80px rgba(126,247,255,0.18), inset 0 0 40px rgba(0,0,0,0.6);
  overflow: hidden;
}
.consoleHeader {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px;
  background: linear-gradient(180deg, rgba(20,60,75,0.7), rgba(10,30,40,0.7));
  border-bottom: 1px solid rgba(126,247,255,0.3);
}
.consoleTitleRow { display: flex; align-items: center; gap: 14px; }
.consoleIcon { filter: drop-shadow(0 0 6px rgba(126,247,255,0.5)); }
.consoleTitle {
  font-size: 18px; letter-spacing: 4px; color: #c7faff;
  text-shadow: 0 0 8px rgba(126,247,255,0.4);
}
.consoleSub { font-size: 10px; letter-spacing: 3px; opacity: 0.55; }
.closeBtn {
  background: rgba(180,40,50,0.2);
  border: 1px solid rgba(255,80,80,0.5);
  color: #ffb3b3;
  padding: 6px 14px; cursor: pointer; border-radius: 4px;
  font-family: inherit; letter-spacing: 2px;
}
.closeBtn:hover { background: rgba(255,80,80,0.35); color: #fff; }

.consoleBody {
  display: flex; gap: 20px; padding: 22px;
}
.consoleColumn { display: flex; flex-direction: column; gap: 8px; flex: 0 0 240px; }
.consoleColumn.grow { flex: 1; }
.consoleLabel {
  font-size: 10px; letter-spacing: 3px; opacity: 0.6;
  margin-top: 6px;
}
#eraSelect, #prioSelect {
  font-family: inherit; font-size: 13px;
  padding: 8px 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color-scheme: dark;
  background: linear-gradient(180deg, rgba(18,48,62,0.92), rgba(5,14,20,0.96));
  border: 1px solid rgba(126,247,255,0.35);
  color: #d6f5ff;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(126,247,255,0.08);
}
#eraSelect:focus, #prioSelect:focus {
  outline: none;
  border-color: #7ef7ff;
  box-shadow: 0 0 12px rgba(126,247,255,0.2), inset 0 0 0 1px rgba(126,247,255,0.14);
}
#eraSelect option, #prioSelect option {
  background: #071017;
  color: #dff7ff;
}
#eraSelect option:checked, #prioSelect option:checked {
  background: #1f8ba8;
  color: #ffffff;
}
.signalBox {
  padding: 8px 12px;
  background: rgba(126,247,255,0.08);
  border: 1px solid rgba(126,247,255,0.3);
  border-radius: 4px;
  font-family: "Consolas", monospace;
  font-size: 13px; color: #7ef7ff;
  letter-spacing: 2px;
}
.signalBox.alt { color: #ffd97a; border-color: rgba(255,217,122,0.4); background: rgba(255,217,122,0.05); }

#msgInput {
  width: 100%; min-height: 200px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(126,247,255,0.4);
  color: #d6f5ff;
  font-family: "Consolas", monospace;
  font-size: 14px; line-height: 1.55;
  padding: 12px;
  border-radius: 4px;
  resize: vertical;
}
#msgInput:focus { outline: none; border-color: #7ef7ff; box-shadow: 0 0 14px rgba(126,247,255,0.25); }
#msgInput::placeholder { color: rgba(214,245,255,0.36); }

.consoleRow {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 10px;
}
.charCount { font-size: 11px; opacity: 0.55; }
.sendBtn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(180deg, rgba(40,140,170,0.7), rgba(15,50,65,0.85));
  border: 1px solid #7ef7ff;
  color: #fff;
  font-family: inherit; font-size: 14px; letter-spacing: 4px;
  padding: 10px 20px;
  cursor: pointer; border-radius: 4px;
  box-shadow: 0 0 18px rgba(126,247,255,0.25);
}
.sendBtn:hover { background: linear-gradient(180deg, #2aa8c8, #145269); }
.sendBtn:disabled { opacity: 0.5; cursor: not-allowed; }

.feedbackBox {
  margin-top: 12px;
  min-height: 36px;
  font-size: 13px; line-height: 1.5;
  color: #ffd97a;
  border-left: 2px solid rgba(255,217,122,0.5);
  padding-left: 10px;
}

/* === TV OVERLAY === */
#tvOverlay {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.85);
  z-index: 80;
}
.tvFrame { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.tvBezel {
  width: 960px; max-width: 94vw;
  aspect-ratio: 16/9;
  background: linear-gradient(180deg, #1a1a1a, #050505);
  border: 12px solid #0e0e0e;
  border-radius: 18px;
  padding: 6px;
  box-shadow:
    0 0 80px rgba(126,247,255,0.1),
    inset 0 0 20px #000,
    0 20px 60px #000;
  position: relative;
}
.tvScreen {
  width: 100%; height: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #1a2230 0%, #050810 80%);
}
.tvAnchor {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.tvVideo,
.tvAnchorCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.tvVideo {
  object-fit: cover;
  filter: saturate(0.95) contrast(1.08) brightness(0.82);
  opacity: 0.96;
}
.tvChannelBug { position: absolute; top: 14px; left: 14px; z-index: 5; opacity: 0.9; filter: drop-shadow(0 2px 4px #000); }
.tvLive { position: absolute; top: 14px; right: 14px; z-index: 5; background: rgba(0,0,0,0.5); padding: 3px 8px; border-radius: 3px; }
.tvLive svg circle { animation: livePulse 1.2s infinite; }
.tvDateline,
.tvTimecode {
  position: absolute;
  top: 48px;
  z-index: 5;
  background: rgba(2, 9, 16, 0.76);
  border: 1px solid rgba(126,247,255,0.32);
  box-shadow: 0 0 18px rgba(0,0,0,0.28);
  color: #dffaff;
  font-size: 12px;
  letter-spacing: 1.6px;
  font-variant-numeric: tabular-nums;
  padding: 7px 12px;
  text-transform: uppercase;
}
.tvDateline {
  left: 14px;
  max-width: 50%;
}
.tvTimecode {
  right: 14px;
  max-width: 40%;
  text-align: right;
}
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.tvBreaking {
  position: absolute;
  bottom: 80px; left: 0;
  background: linear-gradient(90deg, #b00020 0%, #6a0010 100%);
  color: #fff;
  padding: 8px 22px;
  font-family: "Impact", sans-serif;
  font-size: 22px; letter-spacing: 3px;
  z-index: 5;
  border-right: 4px solid #ffd166;
  text-shadow: 0 1px 2px #000;
}
.tvLowerThird {
  position: absolute;
  bottom: 44px; left: 0; right: 0;
  background: linear-gradient(90deg, rgba(20,40,60,0.95), rgba(10,20,30,0.92));
  color: #fff;
  padding: 10px 22px;
  font-size: 18px; font-weight: bold;
  z-index: 5;
  border-top: 2px solid #7ef7ff;
  text-shadow: 0 1px 2px #000;
}
.tvTicker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, #050810, #0a1622);
  border-top: 1px solid rgba(126,247,255,0.3);
  height: 36px;
  overflow: hidden;
  z-index: 5;
}
#tvTickerInner {
  display: inline-block;
  white-space: nowrap;
  font-size: 14px; color: #c7faff;
  padding: 9px 0;
  letter-spacing: 1.5px;
  will-change: transform;
  animation: tickerScroll 46s linear infinite;
  padding-left: 100%;
}
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }

.tvScanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    180deg,
    rgba(255,255,255,0.02) 0,
    rgba(255,255,255,0.02) 1px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 3px
  );
  pointer-events: none;
  z-index: 7;
  mix-blend-mode: overlay;
}
.tvVignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 6;
}
.tvButtons { display: flex; gap: 12px; }
.tvBtn {
  background: linear-gradient(180deg, rgba(20,60,75,0.85), rgba(10,30,40,0.95));
  border: 1px solid rgba(126,247,255,0.5);
  color: #d6f5ff;
  padding: 10px 22px;
  letter-spacing: 3px; cursor: pointer;
  font-family: inherit; border-radius: 4px;
}
.tvBtn:hover { background: linear-gradient(180deg, #2aa8c8, #145269); }

/* === RADIO OVERLAY === */
#radioOverlay {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.85);
  z-index: 80;
}
.radioFrame { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.radioBody {
  width: 680px; max-width: 92vw;
  background: linear-gradient(180deg, #4a3416 0%, #2a1d08 100%);
  border: 2px solid #1a1208;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 0 30px rgba(0,0,0,0.6);
}
.radioTopRow { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; }
.radioTitle { color: #ffd9a0; }
.radioTitle div:first-child { font-size: 16px; letter-spacing: 3px; }
.radioSub { font-size: 11px; opacity: 0.7; letter-spacing: 2px; }
.radioDisplay {
  background: #050810;
  border: 1px solid #1a2530;
  border-radius: 6px;
  padding: 16px;
  color: #ffaa30;
  font-family: "Consolas", monospace;
}
.radioStation {
  font-size: 13px; letter-spacing: 3px;
  margin-bottom: 8px;
  text-shadow: 0 0 6px rgba(255,170,48,0.5);
}
.radioWave {
  height: 30px;
  background: #02050a;
  border: 1px solid #1a2530;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}
.radioWaveInner {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      rgba(255,170,48,0.6) 2px,
      transparent 4px,
      rgba(255,170,48,0.3) 8px,
      transparent 12px
    );
  animation: radioWave 1.2s linear infinite;
}
@keyframes radioWave { from { transform: translateX(0); } to { transform: translateX(-24px); } }
.radioText { font-size: 13px; line-height: 1.55; color: #ffd9a0; }
.radioButtons { display: flex; gap: 10px; margin-top: 14px; }

/* === TIMELINE LOG === */
#timelineLog {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.75);
  z-index: 80;
}
.logFrame {
  width: 760px; max-width: 92vw; height: 70vh;
  background: linear-gradient(180deg, rgba(10,30,40,0.95), rgba(4,12,18,0.97));
  border: 1px solid rgba(126,247,255,0.4);
  border-radius: 10px;
  display: flex; flex-direction: column;
}
.logHeader {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(126,247,255,0.25);
}
.logTitle { font-size: 18px; letter-spacing: 4px; color: #c7faff; }
#logBody {
  flex: 1; overflow-y: auto;
  padding: 14px 22px;
}
.logEntry {
  border-left: 2px solid #7ef7ff;
  padding: 10px 14px;
  margin-bottom: 12px;
  background: rgba(126,247,255,0.04);
}
.logEra { font-size: 11px; letter-spacing: 3px; opacity: 0.6; }
.logMsg { font-size: 13px; color: #d6f5ff; margin: 4px 0; }
.logOutcome { font-size: 12px; color: #ffd97a; font-style: italic; }

/* === FLASH (transmission) === */
#flashOverlay {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at center, rgba(180,240,255,0.9), rgba(126,247,255,0.2) 40%, transparent 80%);
  mix-blend-mode: screen;
  z-index: 95;
  pointer-events: none;
  animation: flashSeq 1.6s ease-out forwards;
}
@keyframes flashSeq {
  0%   { opacity: 0; transform: scale(0.5); }
  10%  { opacity: 1; transform: scale(1.0); }
  60%  { opacity: 0.7; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1.4); }
}

/* shaking */
.shake { animation: shakeKey 0.6s linear; }
@keyframes shakeKey {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-4px, 3px); }
  40% { transform: translate(5px, -2px); }
  60% { transform: translate(-3px, -4px); }
  80% { transform: translate(4px, 2px); }
}

/* responsive */
@media (max-width: 760px) {
  .consoleBody { flex-direction: column; }
  .consoleColumn { flex: 1; }
  .menuPanel { min-width: 320px; padding: 24px 20px; }
}
