

/* Start:/local/templates/game_catch/styles/css/rating.css?17757309554412*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Press Start 2P', cursive;
  background-color: #0f0f2d;
  color: #e0e0ff;
  min-height: 100vh;
  image-rendering: pixelated;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}

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

.header h1 {
  font-size: 18px;
  color: #ffcc00;
  margin-bottom: 14px;
  line-height: 1.6;
  text-shadow: 2px 2px 0 #000;
}

.header p {
  font-size: 14px;
  color: #fbfbfb;
  line-height: 2;
}

.nav-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.nav-buttons a {
  flex: 1;
  display: block;
  font-family: 'Press Start 2P', cursive;
  font-size: 10px;
  color: #fff;
  padding: 14px 12px;
  border: 3px solid #fff;
  background: #2255cc;
  box-shadow: 4px 4px 0 #111, inset -2px -2px 0 rgba(0, 0, 0, 0.3), inset 2px 2px 0 rgba(255, 255, 255, 0.15);
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.6;
}

.nav-buttons a:hover {
  background: #3366ee;
  box-shadow: 2px 2px 0 #111, inset -2px -2px 0 rgba(0, 0, 0, 0.3), inset 2px 2px 0 rgba(255, 255, 255, 0.15);
  transform: translate(2px, 2px);
}

.nav-buttons a:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 #111, inset -2px -2px 0 rgba(0, 0, 0, 0.3);
}

.nav-buttons a.btn-outline {
  background: transparent;
  border-color: #66ff88;
  color: #66ff88;
}

.nav-buttons a.btn-outline:hover {
  background: rgba(102, 255, 136, 0.1);
}

.nav-buttons a.btn-primary {
  border-color: #66aaff;
}

.controls {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.search-box {
  flex: 1;
  min-width: 180px;
  padding: 12px 16px;
  font-family: 'Press Start 2P', cursive;
  font-size: 10px;
  border: 3px solid #44aaff;
  background: #0a0a22;
  color: #e0e0ff;
  box-shadow: inset 2px 2px 0 rgba(0, 0, 0, 0.4);
}

.search-box::placeholder {
  color: #999;
}

.search-box:focus {
  outline: none;
  border-color: #66ff88;
}

.stats {
  font-size: 9px;
  color: #667;
  white-space: nowrap;
}

.stats strong {
  color: #44aaff;
}

.table-wrap {
  background: #111133;
  border: 4px solid #44aaff;
  box-shadow: inset 0 0 0 2px #0a0a22, 0 0 0 2px #0a0a22, 6px 6px 0 rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.table-header {
  display: flex;
  padding: 12px 14px;
  background: rgba(68, 170, 255, 0.1);
  font-size: 12px;
  color: #667;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.row {
  display: flex;
  padding: 10px 14px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 12px;
}

.row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.row.top-1 .col-rank {
  color: #ffcc00;
}

.row.top-2 .col-rank {
  color: #aaa;
}

.row.top-3 .col-rank {
  color: #cc7733;
}

.col-rank {
  width: 50px;
  font-weight: bold;
  color: #f39c12;
}

.col-id {
  width: 70px;
  font-size: 7px;
  color: #556;
}

.col-name {
  flex: 1;
  color: #dde;
}

.col-score {
  width: 70px;
  text-align: right;
  font-weight: bold;
  color: #66ff88;
}

.load-more {
  display: block;
  width: 100%;
  padding: 14px;
  margin-top: 16px;
  font-family: 'Press Start 2P', cursive;
  font-size: 9px;
  color: #44aaff;
  background: transparent;
  border: 3px solid #44aaff;
  box-shadow: 3px 3px 0 #111;
  cursor: pointer;
  text-transform: uppercase;
}

.load-more:hover {
  background: rgba(68, 170, 255, 0.12);
  box-shadow: 1px 1px 0 #111;
  transform: translate(2px, 2px);
}

.load-more:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: #556;
  font-size: 9px;
}

.spinner-inline {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #44aaff;
  animation: pixel-spin 0.8s steps(8) infinite;
  vertical-align: middle;
  margin-right: 10px;
}

@keyframes pixel-spin {
  to {
    transform: rotate(360deg);
  }
}

.highlight {
  background: rgba(255, 204, 0, 0.25);
  padding: 0 2px;
}

@media (max-width: 600px) {
  .header h1 {
    font-size: 14px;
  }

  .nav-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .col-id {
    display: none;
  }

  .col-rank {
    width: 36px;
  }

  .col-score {
    width: 55px;
  }

  .row {
    font-size: 8px;
  }
}
/* End */
/* /local/templates/game_catch/styles/css/rating.css?17757309554412 */
