@font-face {
  font-family: "Gliker";
  src: url("gliker-regular-expanded.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  background-color: #1a1a2e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  margin: 0;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

#game-screen {
  width: 100vw;
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
#game-screen .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}
#game-screen .rank-video {
  max-height: 100%;
  max-width: 100%;
  display: none;
  border-radius: 5px;
  position: relative;
  z-index: 10;
}

#message {
  max-width: 1000px;
  font-family: "Gliker", "Segoe UI", sans-serif;
  font-size: 70px;
  color: #ffffff;
  z-index: 10;
  font-weight: normal;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(0, 0, 0, 0.4);
  text-shadow: 0 0 4px #fff, 0 0 1px #fff, 0 0 5px #fff, 2px 2px 6px #000;
}
@media (max-width: 768px) {
  #message {
    font-size: 45px;
    padding: 15px;
  }
  #message br {
    display: none;
  }
}
@media (max-width: 480px) {
  #message {
    font-size: 32px;
    padding: 10px;
    letter-spacing: 1px;
  }
  #message br {
    display: none;
  }
}

#stock-display {
  display: none;
  font-size: 1.4em;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 30px;
  border-radius: 50px;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  z-index: 20;
}
#stock-display .stock-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.4);
  padding: 5px 15px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.rank-badge {
  font-weight: 900;
  font-size: 1.2em;
  width: 25px;
  display: inline-block;
}
.rank-badge.rank-s {
  color: #ff4757;
  text-shadow: 0 0 5px #ff4757;
}
.rank-badge.rank-a {
  color: #2ed573;
  text-shadow: 0 0 5px #2ed573;
}
.rank-badge.rank-b {
  color: #1e90ff;
  text-shadow: 0 0 5px #1e90ff;
}
.rank-badge.rank-c {
  color: #a4b0be;
  text-shadow: 0 0 5px #a4b0be;
}

#admin-panel {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #2f3542;
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  z-index: 100;
  text-align: left;
  min-width: 350px;
  border: 1px solid rgb(89.4247787611, 100.8407079646, 125.5752212389);
  width: 90%;
  max-width: 500px;
}
#admin-panel h2 {
  margin-top: 0;
  text-align: center;
  color: #ffd700;
  font-family: "Gliker", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 480px) {
  #admin-panel h2 {
    font-size: 1.5em;
  }
}
#admin-panel .admin-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 1.1em;
}
@media (max-width: 480px) {
  #admin-panel .admin-row {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
#admin-panel .admin-btn {
  background: #3742fa;
  color: white;
  border: none;
  padding: 5px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2em;
  margin: 0 5px;
  transition: background 0.2s;
}
#admin-panel .admin-btn:hover {
  background: #2f3542;
}
#admin-panel .admin-btn:active {
  transform: scale(0.95);
}
#admin-panel .admin-btn.reset {
  background: #ff4757;
  width: 100%;
  margin-top: 20px;
  font-size: 1em;
  padding: 10px;
}
#admin-panel .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 1.5em;
  color: #a4b0be;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 90;
}

#debug-total {
  text-align: center;
  font-size: 0.8em;
  color: #ff4757;
  margin-top: 10px;
}/*# sourceMappingURL=style.css.map */