.hero {
      background: linear-gradient(135deg, #000, #fc4a1a);
      color: white;
      padding: 5rem 2rem;
      text-align: center;
    }
    .hero img {
      max-height: 300px;
      object-fit: contain;
    }
    .glass-card {
      background: rgba(255, 255, 255, 0.85);
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }
    .glass-card:hover {
      transform: translateY(-5px);
    }
    .section-title {
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 1.5rem;
    }
    .scroll-box {
      max-height: 260px;
      overflow: hidden;
      border: 1px solid #ddd;
      border-radius: 8px;
    }
    .bg-gradient-gold {
      background: linear-gradient(135deg, #fff3b0, #ffd700);
    }
    .bg-dark-section {
      background-color: #222;
      color: #eee;
    }
    .card-img-top {
      height: auto;
      object-fit: cover;
    }
    .winner-table {
      margin: 0;
      table-layout: fixed;
    }
    .winner-table thead th {
      background-color: #ffe082;
      position: sticky;
      top: 0;
      z-index: 2;
    }
    .winner-table tbody tr {
      transition: background-color 0.3s;
    }
    .winner-table td,
    .winner-table th {
      text-align: center;
      white-space: nowrap;
    }
    .winner-table th {
      background-color: #ffe082;
    }
    .scroll-body {
      height: 200px;
      overflow: hidden;
      position: relative;
      border: 1px solid #ddd;
      border-top: none;
      border-radius: 0 0 8px 8px;
    }
    #scrolling-body {
      transition: transform 0.5s ease;
    }
.prize-banner {
  background: linear-gradient(145deg, #7928ca, #ff0080);
  border-radius: 20px;
  padding: 30px 20px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: fit-content;
  margin: auto;
}

.prize-label {
  font-size: 2rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #fff;
}

/* 数字格容器 */
.slot-counter {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 10px;
}

.digit-box {
  display: inline-block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
    background: linear-gradient(to bottom, #000000, #30003d);
  box-shadow: inset 0 -2px 8px rgba(0, 0, 0, 0.6), 0 3px 10px rgba(0, 0, 0, 0.4);
  font-size: 2.5rem;
  font-weight: bold;
  font-family: 'Cinzel', serif;
  color: #ffdf6b;
  text-align: center;
  line-height: 50px;
}

/* 特别样式 */
.digit-box.comma,
.digit-box.currency {
  background: none;
  box-shadow: none;
  color: white;
}
.digit-box.comma {width:10px}
/* 滚轴内容 */
.digit-scroll {
  position: absolute;
  top: 0;
  width: 100%;
  transition: transform 1s ease-out;
}

.digit-scroll div {
  height: 50px;
}
.millionaire-count {
  font-family: 'Cinzel', serif;
  color: #fff;
     background-color: #000000;
    border-radius: 50px;
    width: 300px;
    margin: 0 auto;
}
.cta-btn {margin-top:20px}

/* Play Now 按钮渐变 */
.btn-gradient {
  background: linear-gradient(45deg, #ff5500, #ff9900);
  color: #fff;
  border: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-gradient:hover {
  background: linear-gradient(45deg, #ff9900, #ff5500);
  transform: scale(1.05);
  color: #fff;
}
.jackpot-badge {
  top: 5px;
  right: 5px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffda00;
  padding: 5px 8px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
  font-family: 'Cinzel', serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
  white-space: nowrap;
}
.game-name {
    font-size: 20px;
    font-weight: 600;
}
.count-number{color:#ffda00;}.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating {
  position: absolute;
  width: 60px;
  animation: floatUpDown 4s ease-in-out infinite;
}

/* 各图形固定在页面上的不同位置 */
.float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.float-2 { top: 50%; left: 80%; animation-delay: 1s; }
.float-3 { bottom: 0%; right: 10%; animation-delay: 2s; }
.float-4 { bottom: 20%; left: 10%; animation-delay: 3s; }

@keyframes floatUpDown {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}



@media (max-width: 576px) {
  .slot-counter {
    gap: 2px;
    padding: 0;
  }
  .digit-box {
    font-size: 1.5rem;
  }
  .hero-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .prize-banner{
  padding: 30px 10px;}
}