/* 🌌 Global Reset */
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: "Press Start 2P", monospace;
  background-color: #0f1117;
  color: #f0f0f0;
  font-size: 12px;
  line-height: 1.5;
}

img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

/* ===== CONTAINER ===== */
.container {
  padding: 20px;
  max-width: 1100px;
  margin: auto;
}

/* Utility: responsive container padding */
.container-narrow {
  max-width: 800px;
}
.screen-reader-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* ===== NAVBAR ===== */
.navbar {
  background: #1c1f2b;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-bottom: 4px solid #ffad33;
  /* Make header sticky */
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbarContent {
  display: flex;
  gap: 25px;
  width: 100%;
  max-width: 1100px;
  align-items: center;
  margin: auto;
  padding: 0 20px;
}

.navbar .nav-logo img {
  display: block;
  height: 28px;
  width: auto;
  border: 2px solid #ffad33;
  border-radius: 4px;
  box-shadow: 2px 2px 0 #ff7300;
}
.navbar a {
  font-size: 10px;
  color: #61dafb;
  text-decoration: none;
  font-weight: bold;
}
/* Collapse nav on very small screens */
@media (max-width: 520px) {
  .navbar {
    flex-wrap: wrap;
    gap: 12px;
  }
  .navbar a {
    font-size: 9px;
  }
}
.navbar a:hover {
  color: #ffcc00;
  text-shadow: 2px 2px 0 #ff7300;
}

/* ===== ANIMATED HEADER ===== */
.header {
  text-align: center;
  margin: 0;
  padding: 40px 10px;
  /* Use a square tile and repeat horizontally; size both dimensions to the tile size */
  background-image: url("../assets/header-bg.jpg"),
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  background-repeat: repeat-x;
  background-size: 200px 200px;
  border-bottom: 4px solid #ffad33;
  animation: skyScroll 30s linear infinite;
  background-blend-mode: overlay;
}
.header img {
  max-width: 100%;
  border: 4px solid #ffad33;
  border-radius: 6px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
}
@keyframes skyScroll {
  from {
    background-position-x: 0;
  }
  to {
    /* Move exactly one tile width so the loop is seamless for any image size */
    background-position-x: 200px;
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .header {
    animation: none;
  }
}
.header h1 {
  font-size: clamp(16px, 3.5vw, 22px);
  color: #ffcc00;
  text-shadow: 3px 3px 0 #ff7300, -2px -2px 0 #242735;
}
.header p {
  font-size: clamp(10px, 2.8vw, 12px);
  color: #61dafb;
  cursor: pointer;
}
.header p:hover {
  color: #ffcc00;
}

.header p.description {
  margin-top: 10px;
  font-size: clamp(10px, 2.8vw, 12px);
  color: #000000;
  cursor: default;
}

section.intro {
  padding-bottom: 10px;
}

/* ===== SERVER IP BOX (Pixel Arcade Panel) ===== */
.server-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.server-ip {
  display: inline-block;
  padding: 14px 22px;
  border: 4px solid #ffcc00;
  background: #1c1f2b;
  text-transform: uppercase;
  font-size: clamp(10px, 2.8vw, 12px);
  box-shadow: 4px 4px 0 #ff7300, inset -4px -4px 0 #2a2e3d;
  transition: transform 0.12s, box-shadow 0.12s;
  cursor: pointer;
}
.server-cta .server-ip {
  margin-top: 0;
}
.server-ip:hover {
  background: #242735;
  border-color: #61dafb;
  box-shadow: 4px 4px 0 #61dafb, inset -4px -4px 0 #ffad33;
  transform: translate(-2px, -2px);
}
.server-ip .label {
  color: #ff7300;
  margin-right: 6px;
}
.server-ip .ip {
  color: #61dafb;
  font-weight: bold;
}
.server-ip.copied {
  background: #34394e;
  border-color: #61dafb;
  box-shadow: 4px 4px 0 #61dafb, inset -4px -4px 0 #ffad33;
}

.discord-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 4px solid #5865f2;
  background: #1c1f2b;
  text-transform: uppercase;
  font-size: clamp(10px, 2.8vw, 12px);
  color: #f0f0f0;
  text-decoration: none;
  box-shadow: 4px 4px 0 #4149b6, inset -4px -4px 0 #2a2e3d;
  transition: transform 0.12s, box-shadow 0.12s, color 0.12s, border-color 0.12s;
}
.discord-link:hover {
  border-color: #7c85ff;
  box-shadow: 4px 4px 0 #7c85ff, inset -4px -4px 0 #ffad33;
  color: #ffcc00;
  transform: translate(-2px, -2px);
}
.discord-link:focus-visible {
  outline: 3px dashed #ffcc00;
  outline-offset: 4px;
}

/* Platform outline buttons */
.tiktok-link,
.youtube-link,
.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: #1c1f2b;
  text-transform: uppercase;
  font-size: clamp(10px, 2.8vw, 12px);
  color: #f0f0f0;
  text-decoration: none;
  transition: transform 0.12s, box-shadow 0.12s, color 0.12s, border-color 0.12s;
  box-shadow: 4px 4px 0 #ff7300, inset -4px -4px 0 #2a2e3d; /* default shadow like pixel buttons */
}

/* TikTok brand: black/white with accent pink/teal; use white border, teal-ish hover */
.tiktok-link {
  border: 4px solid #ffffff;
  box-shadow: 4px 4px 0 #00f2ea, inset -4px -4px 0 #2a2e3d;
}
.tiktok-link:hover {
  border-color: #00f2ea;
  color: #ffcc00;
  box-shadow: 4px 4px 0 #00f2ea, inset -4px -4px 0 #ffad33;
  transform: translate(-2px, -2px);
}
.tiktok-link:focus-visible {
  outline: 3px dashed #ffcc00;
  outline-offset: 4px;
}

/* YouTube brand: red */
.youtube-link {
  border: 4px solid #ff0000;
  box-shadow: 4px 4px 0 #cc0000, inset -4px -4px 0 #2a2e3d;
}
.youtube-link:hover {
  border-color: #ff4d4d;
  color: #ffcc00;
  box-shadow: 4px 4px 0 #ff4d4d, inset -4px -4px 0 #ffad33;
  transform: translate(-2px, -2px);
}
.youtube-link:focus-visible {
  outline: 3px dashed #ffcc00;
  outline-offset: 4px;
}

/* Instagram brand: gradient usually; pick border color purple/pink */
.instagram-link {
  border: 4px solid #c13584;
  box-shadow: 4px 4px 0 #833ab4, inset -4px -4px 0 #2a2e3d;
}
.instagram-link:hover {
  color: #ffcc00;
  border-color: #c13584;
  box-shadow: 4px 4px 0 #833ab4, inset -4px -4px 0 #ffad33;
  transform: translate(-2px, -2px);
}
.instagram-link:focus-visible {
  outline: 3px dashed #ffcc00;
  outline-offset: 4px;
}

/* ===== TRACK GRID (Pixel Styled) ===== */
.tracks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.track {
  background: #1c1f2b;
  border: 4px solid #ffcc00;
  padding: 12px;
  text-align: center;
  box-shadow: 4px 4px 0 #ff7300;
  transition: transform 0.2s;
  /* New: make the whole card clickable */
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: #61dafb;
}
.track:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 #61dafb;
  /* New: hover text color for whole card */
  color: #ffcc00;
  text-shadow: 2px 2px 0 #000;
}
.track img {
  max-width: 100%;
  border: 3px solid #2a2e3d;
  box-shadow: 2px 2px 0 #ff7300;
}

/* Track tag badges */
.track-tags {
  margin-top: 6px;
  display: flex;
  justify-content: center;
}
.tag-badge {
  display: inline-block;
  font-size: 10px;
  padding: 4px 6px;
  border: 2px solid transparent;
  border-radius: 4px;
  box-shadow: 2px 2px 0 #00000055;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.track:hover .tag-badge-light-shadow {
  /* For badges with black text, use a lighter hover/ambient shadow */
  text-shadow: 2px 2px 0 #d0d0d0;
}

/* Track stats badges */
.track-stats {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.track-stats span {
  background: #242735;
  border: 2px solid #2a2e3d;
  color: #61dafb;
  font-size: 10px;
  padding: 4px 6px;
  border-radius: 4px;
  box-shadow: 2px 2px 0 #ff7300;
}
.track-context {
  margin-top: 8px;
  color: #61dafb;
  font-size: 10px;
}
.empty-state {
  background: #1c1f2b;
  border: 3px dashed #ffcc00;
  color: #61dafb;
  padding: 16px;
  text-align: center;
  margin-top: 20px;
  box-shadow: 4px 4px 0 #ff7300;
}
.tracks-footer {
  margin-top: 24px;
  text-align: center;
}
.social-links {
  margin-top: 20px;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: start;
}
.pixel-button {
  display: inline-block;
  padding: 12px 20px;
  border: 4px solid #ffcc00;
  background: #1c1f2b;
  color: #61dafb;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.5px;
  box-shadow: 4px 4px 0 #ff7300, inset -4px -4px 0 #2a2e3d;
  transition: transform 0.12s, box-shadow 0.12s, color 0.12s, border-color 0.12s;
}
.pixel-button,
.discord-link,
.tiktok-link,
.youtube-link,
.instagram-link {
  gap: 8px;
}
.pixel-button svg,
.discord-link svg,
.tiktok-link svg,
.youtube-link svg,
.instagram-link svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  color: currentColor;
}
.pixel-button:hover,
.pixel-button:focus {
  border-color: #61dafb;
  color: #ffcc00;
  box-shadow: 4px 4px 0 #61dafb, inset -4px -4px 0 #ffad33;
  transform: translate(-2px, -2px);
}
.pixel-button:focus-visible {
  outline: 3px dashed #ffcc00;
  outline-offset: 4px;
}
.pixel-button:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 #ff7300;
}
.track-stats-inline {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 12px 0 6px;
  flex-wrap: wrap;
}

/* ===== LEADERBOARD LIST ===== */

.track-leaderboard {
  border: 4px solid #ffcc00;
  box-shadow: 4px 4px 0 #ff7300;

  /* padding: 15px 20px; */
  padding: 0;
  display: flex;
  flex-direction: column;

  background: #1c1f2b;
}

.leaderboard-rank {
  min-width: 38px;
}

.track-leaderboard li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 4px solid #2a2e3d;
}

.leaderboard-player {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
}

.leaderboard-player img {
  border: 2px solid #2a2e3d;
  box-shadow: 2px 2px 0 #ff7300;
}

.leaderboard-player-link {
  font-size: 11px;
  font-weight: bold;
  color: #61dafb;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 180px;
}

.leaderboard-player-link:hover,
.leaderboard-player-link:focus {
  color: #ffcc00;
}

.leaderboard-time {
  margin-left: auto;
  font-weight: bold;
  color: #ffffff;
}

.copy-command-button {
  flex: 0 0 auto;
  font-family: inherit;
  font-size: 10px;
  padding: 8px 12px;
  border: 3px solid #61dafb;
  background: #1c2132;
  color: #61dafb;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.4px;
  box-shadow: 3px 3px 0 #ff7300;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s, border-color 0.12s, color 0.12s,
    background 0.12s;
}

.copy-command-button:hover,
.copy-command-button:focus {
  border-color: #ffcc00;
  color: #ffcc00;
  background: #242735;
  box-shadow: 3px 3px 0 #61dafb;
  transform: translate(-1px, -1px);
}

.copy-command-button.copied {
  border-color: #7cffb2;
  color: #7cffb2;
  background: #1f2b22;
}

.copy-command-button.copy-error {
  border-color: #ff6b6b;
  color: #ff6b6b;
  background: #2a1d1d;
}

@media (max-width: 600px) {
  .leaderboard-player-link {
    max-width: 140px;
  }

  .leaderboard-time {
    margin-left: 0;
  }

  .leaderboard-rank {
    min-width: 28px;
  }

  .copy-command-button {
    display: none;
  }
}

.record-history-card {
  background: #1c1f2b;
  border: 4px solid #ffcc00;
  padding: 18px;
  box-shadow: 4px 4px 0 #ff7300;
  margin: 30px auto 10px;
}
.record-history-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
}
.record-history-subtitle {
  font-size: 10px;
  color: #61dafb;
  margin: 0 0 14px;
}
.record-history-highlight {
  color: #ffcc00;
}
.record-history-chart-wrapper {
  position: relative;
  min-height: 260px;
}
.record-history-chart-wrapper canvas {
  width: 100% !important;
  height: 280px !important;
}
.record-history-card.empty {
  text-align: center;
  color: #61dafb;
  border-style: dashed;
}
.record-history-empty {
  margin: 0;
  font-size: 10px;
}

@media (max-width: 600px) {
  .record-history-chart-wrapper {
    min-height: 220px;
  }
  .record-history-chart-wrapper canvas {
    height: 220px !important;
  }
}

a {
  color: #61dafb;
  text-decoration: none;
}
a:hover {
  color: #ffcc00;
  text-shadow: 2px 2px 0 #000;
}

.player-link {
  color: #61dafb;
  text-decoration: none;
}
.player-link:hover {
  color: #ffcc00;
  text-shadow: 2px 2px 0 #000;
}
.track-link {
  color: #61dafb;
  text-decoration: none;
}
.track-link:hover {
  color: #ffcc00;
  text-shadow: 1px 1px 0 #000;
}

.player-summary {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
/* Cap summary grid to 4 columns on larger screens */
@media (min-width: 1024px) {
  .player-summary {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.summary-stat {
  background: #1c1f2b;
  border: 3px solid #2a2e3d;
  padding: 12px;
  box-shadow: 3px 3px 0 #ff7300;
}
.summary-label {
  display: block;
  font-size: 9px;
  color: #ffcc00;
  margin-bottom: 6px;
}
.summary-value {
  font-size: 14px;
  color: #61dafb;
  display: flex;
  align-items: center;
  gap: 6px;
}
.flame {
  display: inline-block;
  font-size: 12px;
}
.summary-value .flame {
  font-size: 14px;
}
.summary-suffix {
  font-size: 9px;
  color: #ffcc00;
  margin-left: 4px;
}

.player-section {
  margin: 40px 0;
}
.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}
.section-subtitle {
  color: #61dafb;
  font-size: 9px;
  margin: 0;
}
.empty-state {
  background: #1c1f2b;
  border: 3px dashed #2a2e3d;
  padding: 16px;
  color: #61dafb;
  box-shadow: 3px 3px 0 #ff7300;
}
.player-tracks-table th,
.player-tracks-table td {
  white-space: nowrap;
}
.player-tracks-table td:first-child {
  white-space: normal;
}
.position-rank {
  color: #ffcc00;
  font-weight: bold;
  margin-right: 4px;
}
.position-total {
  color: #61dafb;
  font-size: 9px;
}

table td .flame {
  margin-right: 4px;
}
table td .week-count {
  color: #ffcc00;
  font-weight: bold;
}

.activity-calendar {
  background: #1c1f2b;
  border: 4px solid #ffcc00;
  padding: 16px;
  box-shadow: 4px 4px 0 #ff7300;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.activity-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}
.activity-scroll-inner {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  min-width: max-content;
}
.activity-months {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 12px;
  gap: 3px;
  font-size: 8px;
  color: #ffcc00;
}
.activity-months span {
  text-align: left;
}
.activity-body {
  display: flex;
  gap: 8px;
}
.activity-day-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 8px;
  color: #61dafb;
  padding: 2px 0;
}
.activity-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 12px;
  gap: 3px;
}
.activity-week {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.activity-day {
  width: 12px;
  height: 12px;
  background: #1c1f2b;
  border: 1px solid #2a2e3d;
  border-radius: 2px;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.activity-day.played {
  background: #61dafb;
  border-color: #61dafb;
  box-shadow: 0 0 6px rgba(97, 218, 251, 0.6);
}
.activity-day.future {
  opacity: 0.25;
  border-style: dashed;
}
.activity-day:not(.future):hover {
  transform: translateY(-1px);
  box-shadow: 0 0 8px rgba(255, 204, 0, 0.6);
}
.activity-legend {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 8px;
  color: #61dafb;
}
.legend-swatch {
  width: 12px;
  height: 12px;
  border: 1px solid #2a2e3d;
  background: #1c1f2b;
  border-radius: 2px;
}
.legend-active {
  background: #61dafb;
  border-color: #61dafb;
}
/* ===== LEADERBOARD / TABLES ===== */
/* Responsive tables: wrap in container at small widths */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  border: 4px solid #ffcc00;
  box-shadow: 4px 4px 0 #ff7300;
}
table th {
  background: #2a2e3d;
  font-size: 10px;
  color: #ffcc00;
  padding: 10px;
  border-bottom: 2px solid #ff7300;
  text-align: left;
}
table td {
  font-size: 9px;
  padding: 8px;
  border-bottom: 1px dashed #2a2e3d;
}
table tr:hover {
  background: #34394e;
}

/* ===== MODAL ===== */
.info-button {
  display: inline-block;
  margin: 0;
  margin-left: 6px;
  font-size: 9px;
  line-height: 1;
  padding: 4px 4px;
  border: 2px solid #61dafb;
  background: #1c1f2b;
  color: #61dafb;
  border-radius: 4px;
  cursor: pointer;
}
.info-button:hover {
  color: #ffcc00;
  border-color: #ffcc00;
}
.modal[hidden] {
  display: none !important;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1c1f2b;
  border: 4px solid #ffcc00;
  box-shadow: 6px 6px 0 #ff7300;
  padding: 16px;
  width: min(520px, 92vw);
}
body.modal-open {
  overflow: hidden;
}

/* ===== PIXEL BUTTONS ===== */
button,
.pixel-button {
  font-family: "Press Start 2P", monospace; /* ensure buttons use the pixel font */
  font-size: clamp(9px, 2.6vw, 10px);
  background: #61dafb;
  border: 4px solid #2a2e3d;
  padding: 10px 18px;
  margin: 6px;
  cursor: pointer;
  box-shadow: 4px 4px 0 #ff7300;
  transition: transform 0.12s, box-shadow 0.12s;
  color: #000; /* consistent font color like other pixel buttons */
  text-decoration: none; /* for anchor buttons */
  display: inline-block; /* anchors behave like buttons */
}
/* selected/toggle state */
button.selected,
.pixel-button.selected {
  background: #ffcc00;
  border-color: #ff7300;
  color: #000;
  box-shadow: 4px 4px 0 #61dafb;
  transform: translate(-2px, -2px);
}
/* disabled look for prev button on first page */
button:disabled,
.pixel-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* small helpers */
.button-group {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 8px 0;
}
.pagination-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 12px;
}
#page-indicator {
  color: #61dafb;
  font-weight: bold;
}

/* ===== STICKY TRACK NAV (Prev / Next) ===== */
.track-nav-side {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900; /* below navbar */
}
.track-nav-side.left {
  position: fixed; /* fixed so it truly sticks to the viewport side */
  left: 12px;
}
.track-nav-side.right {
  position: fixed;
  right: 12px;
}
.track-nav-side .pixel-button {
  padding: 12px 14px;
  margin: 0;
}

/* Inline nav shown on mobile under image */
.track-nav-inline {
  display: none; /* hidden on desktop */
  gap: 8px;
  margin: 10px 0 4px;
  width: 100%;
}

/* Show inline nav and hide sticky on small screens */
@media (max-width: 768px) {
  .track-nav-side {
    display: none;
  }
  .track-nav-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

/* ===== AVATARS ===== */
img.avatar {
  border-radius: 50%;
  border: 2px solid #61dafb;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 15px;
  background: #1c1f2b;
  border-top: 4px solid #ffad33;
  margin-top: 40px;
  color: #999;
  font-size: clamp(9px, 2.6vw, 10px);
}

/* Page specific helpers */
.page {
  padding: 20px;
}

/* Breakpoints tweaks */
@media (max-width: 900px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 640px) {
  .tracks {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }
  table th,
  table td {
    padding: 8px 10px;
  }
}
@media (max-width: 420px) {
  .navbar {
    padding: 10px 12px;
  }
  .header {
    padding: 22px 8px;
  }
  .server-ip {
    padding: 12px 16px;
  }
}
