:root {
  --bg: #000;
  --text: #fff;
  --accent: #ff2d55;
  --header-height: 56px;
  --bottom-nav-height: 56px;
  --side-width: 260px;
}

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height);
  padding-bottom: var(--bottom-nav-height);
}

#topTimer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: black;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 18px;
  z-index: 9999;
  display: none;
}

#middleTimerBox {
  margin: 40px 0;
  padding: 20px;
  text-align: center;
  background: #f5f5f5;
  font-size: 20px;
  display: none;
}

#hiddenLink {
  display: none;
  margin-top: 10px;
}