body {
  font-family: "Baskervville", serif;
  color:#000;
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 840px;
    }
}

.banner-box img {
  width: 100%;
  border-radius: 20px;
}

/* MENU BOX */
/* Default – Mobile */
.menu-box {
  width: 129px;
  background: white;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
}

/* Desktop (min-width: 992px or any size you prefer) */
@media (min-width: 992px) {
  .menu-box {
    width: 300px;
  }
}

/* GAME CARD */
.game-card {
  background: white;
  border-radius: 20px;
}

.hot-tag {
  position: absolute;
  top: 8px;
  right: 10px;
  background: red;
  color: #fff;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 12px;
}

.rpt-text {
  margin: 0;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}



.winning-box {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 18px;
}

.win-item {
  padding: 12px;
  background: #f8f9ff;
  border-radius: 14px;
}

.win-item:last-child {
  margin-bottom: 0;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.name {
  font-weight: 600;
  font-size: 15px;
}

.amount {
  color: #2b2b2b;
  font-size: 15px;
}


.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0px -3px 10px rgba(0,0,0,0.08);
  padding-bottom: 10px;
  z-index: 1000;
}

.bottom-nav .nav-item {
  flex: 1;
  color: #8d8d8d;
  font-size: 13px;
}

.bottom-nav .nav-item .icon {
  width: 28px;
  opacity: 0.6;
}

.bottom-nav .nav-item.active .icon {
  opacity: 1;
  filter: brightness(1.2);
}

.bottom-nav .nav-item.active .label {
  color: #ff5b5b;
}

.bottom-nav .label {
  margin-top: 2px;
  font-size: 12px;
}

/* === Center Circle Button === */
.center-btn {
  margin-top: -25px;
}

.center-circle {
  width: 55px;
  height: 55px;
  background: linear-gradient(180deg, #ff8484, #ff5050);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 3px 10px rgba(255,80,80,0.4);
}

.center-icon {
  width: 30px;
  filter: brightness(1000%);
}


/* Tabs */
.game-tabs .tab-item {
  padding: 6px 18px;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  border: 1px solid transparent;
  font-weight: 500;
}

.game-tabs .tab-item.active {
  border: 1px solid #f9b33b;
  background: rgba(249, 179, 59, 0.1);
}

/* Scroll Cards */
.game-scroll {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.game-scroll::-webkit-scrollbar {
  display: none;
}

.game-card1 {
  min-width: 120px;
  background: #1a1a1a;
  border-radius: 14px;
  padding: 10px;
  text-align: center;
  color: #fff;
}

.game-card {
  min-width: 120px;
  background: #1a1a1a;
  border-radius: 14px;
  padding: 10px;
  text-align: center;
  color: #fff;
  max-width:149px;
}

.game-card img {
  width: 100%;
  border-radius: 12px;
}

.game-card p {
  margin-top: 6px;
  font-size: 14px;
}

.blink-btn {
    padding: 3px 10px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    animation: blink 1s infinite;
}

@keyframes blink {
  0% { background-color: red; }
  50% { background-color: green; }
  100% { background-color: red; }
}


.side-register-btn {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: red;
  color: #fff;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px 8px 0 0;
  text-decoration: none;
  animation: blink 1s infinite;
  transform-origin: right center;
  z-index: 9999;
}

@keyframes blink {
  0% { background-color: red; }
  50% { background-color: green; }
  100% { background-color: red; }
}

