/* HOTWIN88 Red & Gold Theme — matched to banner */

:root {
  --hw-primary: #C41E3A;
  --hw-primary-dark: #991B1B;
  --hw-secondary: #FFD700;
  --hw-accent: #F4DF80;
  --hw-bg: #120808;
  --hw-bg-card: #1c1010;
  --hw-schedule-border: 1px solid #D4AF37;
  --hw-provider-hover: 0 0 35px rgba(255, 215, 0, 0.4);
  --hw-brand-tag-color: #120808;
  --hw-brand-tag-bg: linear-gradient(135deg, #FFD700, #D4AF37);
  --hw-card-inner-bg: #1c1010;
  --hw-gacor-card-border: 1px solid #C41E3A;
}

body {
  background-color: #120808 !important;
}

.schedule-container-main {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  background: linear-gradient(145deg, #120808 0%, #1c1010 100%);
  border: var(--hw-schedule-border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(196, 30, 58, 0.2);
}

.schedule-header-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.title-announcement {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(24px, 3vw, 48px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-shadow:
    0 0 10px #C41E3A,
    0 0 25px #991B1B,
    0 0 50px #FFD700;
}

.gacor-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.gacor-card {
  position: relative;
  height: 220px;
  border: var(--hw-gacor-card-border);
  border-radius: 10px;
  transition: .4s ease;
  cursor: pointer;
  overflow: hidden;
}

.gacor-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(255, 215, 0, 0.05));
  pointer-events: none;
}

.gacor-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: #FFD700;
}

.card-inner {
  background: var(--hw-card-inner-bg);
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.brand-tag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 15px;
  font-size: 10px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  color: var(--hw-brand-tag-color);
  background: var(--hw-brand-tag-bg);
  backdrop-filter: blur(10px);
}

.provider-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}

.timer-display {
  font-family: 'Open24DisplaySt', monospace;
  font-size: 40px;
  color: #FFD700;
  text-shadow: 0 0 18px rgba(255, 215, 0, 0.5);
  letter-spacing: 5px;
}

.schedule-info {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  color: #c4a882;
  line-height: 1.5;
}

.status-bar {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #FFD700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-bar::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #FFD700;
  border-radius: 50%;
  animation: hw-pulse 1.5s infinite;
}

@keyframes hw-pulse {
  0% {
    transform: scale(.95);
    box-shadow: 0 0 0 0 rgba(255, 215, 0, .7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
  }
  100% {
    transform: scale(.95);
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}

.pragmatic:hover,
.pgsoft:hover,
.joker:hover,
.micro:hover,
.habanero:hover,
.nolimit:hover {
  box-shadow: var(--hw-provider-hover);
}

.login-button,
.register-button,
.btn-primary,
.download-apk-btn,
.popular-game-title-cntr-title span,
.home-game-list-cntr-title span {
  background: linear-gradient(to bottom, #F3DD7F 0%, #C41E3A 100%) !important;
  border-color: #D4AF37 !important;
  color: #120808 !important;
}

.login-button:hover,
.register-button:hover,
.btn-primary:hover {
  background: linear-gradient(to bottom, #C41E3A 0%, #FFD700 100%) !important;
  color: #fff !important;
}

.home-progressive-jackpot .jackpot-play-text label {
  color: #FFD700 !important;
}

.home-progressive-jackpot .jackpot-currency {
  color: #D4AF37 !important;
}

.site-footer {
  border-top: 2px solid #C41E3A;
}

.footer-links a:hover {
  color: #FFD700 !important;
}

.site-description h1 {
  font-size: clamp(18px, 3vw, 28px);
  color: var(--hw-secondary);
  margin-bottom: 16px;
}

.site-description p {
  color: #c4a882;
  line-height: 1.7;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .gacor-grid-layout {
    grid-template-columns: 1fr;
  }
}
/* === HW88 Professional Layer (bundled) === */

/* HW88 Professional Layer - additive only, no original code modified */

/* ── Footer block wrapper (isolates from site footer styles) ── */
.hw88-pro-footer-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 28px auto 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  clear: both;
}

.hw88-pro-footer-wrap h2,
.hw88-pro-footer-wrap h3,
.hw88-pro-footer-wrap h4,
.hw88-pro-footer-wrap p,
.hw88-pro-footer-wrap table,
.hw88-pro-footer-wrap button {
  font-family: 'Rajdhani', 'digital_sans_ef_medium', Arial, sans-serif;
}

.site-footer .hw88-pro-footer-wrap ul,
.site-footer .hw88-pro-footer-wrap ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── CSS icons (no emoji — avoids broken ️ characters) ── */
.hw88-trust-card-icon::before,
.hw88-pay-icon,
.hw88-fab-icon-chat::before,
.hw88-fab-icon-slot::before {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-weight: 900;
  line-height: 1;
}

.hw88-icon-shield::before { content: 'SSL'; font-size: 10px; letter-spacing: .5px; }
.hw88-icon-bolt::before { content: '1m'; font-size: 11px; }
.hw88-icon-rtp::before { content: 'RTP'; font-size: 9px; letter-spacing: .3px; }
.hw88-icon-chat::before { content: '24'; font-size: 11px; }

.hw88-fab-icon-chat,
.hw88-fab-icon-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.hw88-fab-icon-chat::before { content: 'CH'; font-size: 8px; }
.hw88-fab-icon-slot::before { content: 'GO'; font-size: 8px; }

.hw88-pay-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #120808;
  font-weight: 900;
}

.hw88-pay-bank {
  background: linear-gradient(135deg, #F3DD7F, #C41E3A);
}

.hw88-pay-ewallet {
  background: linear-gradient(135deg, #FFD700, #B8860B);
}

.hw88-pay-qris {
  background: linear-gradient(135deg, #D4AF37, #991B1B);
  font-size: 12px;
}

/* ── Scroll progress ── */
#hw88-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #C41E3A, #FFD700, #D4AF37);
  z-index: 99999;
  transition: width .1s linear;
  box-shadow: 0 0 12px rgba(255, 215, 0, .6);
}

/* ── Top trust ribbon ── */
#hw88-trust-ribbon {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99998;
  background: linear-gradient(90deg, #1a0505 0%, #991B1B 50%, #1a0505 100%);
  border-bottom: 1px solid rgba(255, 215, 0, .3);
  padding: 6px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: 'Rajdhani', 'digital_sans_ef_medium', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  color: #F4DF80;
  transform: translateY(-100%);
  animation: hw88-ribbon-in .6s ease .3s forwards;
}

#hw88-trust-ribbon span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

#hw88-trust-ribbon .hw88-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFD700;
  animation: hw88-pulse-dot 2s infinite;
}

@keyframes hw88-ribbon-in {
  to { transform: translateY(0); }
}

@keyframes hw88-pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 215, 0, .6); }
  50% { opacity: .7; box-shadow: 0 0 0 6px rgba(255, 215, 0, 0); }
}

body.hw88-pro-enhanced {
  padding-top: 34px;
}

body.hw88-pro-enhanced .topbar-container {
  margin-top: 0;
}

/* ── Floating action panel ── */
#hw88-fab-panel {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 99990;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.hw88-fab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  color: #120808;
  background: linear-gradient(135deg, #F3DD7F, #C41E3A);
  box-shadow: 0 4px 20px rgba(196, 30, 58, .4);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}

.hw88-fab-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(255, 215, 0, .5);
  color: #120808;
  text-decoration: none;
}

.hw88-fab-btn.hw88-fab-chat {
  background: linear-gradient(135deg, #FFD700, #B8860B);
  color: #fff;
}

.hw88-fab-btn.hw88-fab-top {
  width: 44px;
  height: 44px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
}

.hw88-fab-btn.hw88-fab-top.hw88-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hw88-fab-icon {
  font-size: 16px;
  line-height: 1;
}

/* ── Stats bar (injected) ── */
#hw88-stats-bar {
  background: linear-gradient(135deg, rgba(18, 8, 8, .95), rgba(28, 16, 16, .95));
  border: 1px solid rgba(212, 175, 55, .35);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px auto;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}

.hw88-stat-item {
  text-align: center;
  padding: 12px;
  border-right: 1px solid rgba(148, 163, 184, .15);
}

.hw88-stat-item:last-child {
  border-right: none;
}

.hw88-stat-value {
  font-family: 'Orbitron', monospace;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  color: #F4DF80;
  text-shadow: 0 0 20px rgba(255, 215, 0, .3);
  display: block;
  margin-bottom: 4px;
}

.hw88-stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: #c4a882;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Security trust section ── */
#hw88-trust-section {
  max-width: none;
  margin: 0;
  padding: 28px 24px;
  background: linear-gradient(160deg, #120808, #1c1010);
  border: 1px solid rgba(196, 30, 58, .25);
  border-radius: 14px;
}

#hw88-trust-section h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  color: #F4DF80;
  text-align: center;
  margin: 0 0 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hw88-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.hw88-trust-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: rgba(18, 8, 8, .6);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, .12);
  transition: border-color .3s, transform .3s;
}

.hw88-trust-card:hover {
  border-color: rgba(255, 215, 0, .4);
  transform: translateY(-2px);
}

.hw88-trust-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #C41E3A, #B8860B);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.hw88-trust-card h4 {
  margin: 0 0 4px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #f5e6c8;
}

.hw88-trust-card p {
  margin: 0;
  font-size: 12px;
  color: #c4a882;
  line-height: 1.5;
}

/* ── Promo ticker ── */
#hw88-promo-ticker {
  background: linear-gradient(90deg, #1a0505, #4a1515, #1a0505);
  border-top: 1px solid rgba(212, 175, 55, .3);
  border-bottom: 1px solid rgba(212, 175, 55, .3);
  overflow: hidden;
  padding: 10px 0;
  margin: 20px 0;
}

.hw88-ticker-track {
  display: flex;
  animation: hw88-ticker 40s linear infinite;
  white-space: nowrap;
}

.hw88-ticker-track span {
  padding: 0 40px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FAE88C;
  letter-spacing: .3px;
}

.hw88-ticker-track span::before {
  content: '✦ ';
  color: #FFD700;
}

@keyframes hw88-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Enhanced game cards ── */
.game-list .game-item,
.popular-games .game-item {
  transition: transform .3s ease, box-shadow .3s ease !important;
}

.game-list .game-item:hover,
.popular-games .game-item:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 28px rgba(196, 30, 58, .2) !important;
}

/* ── Glass header effect ── */
body.hw88-pro-enhanced .site-header {
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(18, 8, 8, .85) !important;
  border-bottom: 1px solid rgba(212, 175, 55, .2);
}

/* ── Cookie notice ── */
#hw88-cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99997;
  background: rgba(18, 8, 8, .97);
  border-top: 1px solid rgba(255, 215, 0, .25);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .4s ease;
  backdrop-filter: blur(10px);
}

#hw88-cookie-notice.hw88-show {
  transform: translateY(0);
}

#hw88-cookie-notice p {
  margin: 0;
  font-size: 13px;
  color: #c4a882;
  flex: 1;
  min-width: 200px;
}

#hw88-cookie-notice button {
  padding: 8px 24px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #D4AF37, #C41E3A);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

/* ── Page entrance ── */
body.hw88-pro-enhanced .home-info-container,
body.hw88-pro-enhanced .site-footer {
  animation: hw88-fade-up .7s ease both;
}

@keyframes hw88-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Live pulse on announcement ── */
body.hw88-pro-enhanced .announcement-container {
  border-left: 3px solid #D4AF37 !important;
  box-shadow: inset 0 0 20px rgba(196, 30, 58, .06);
}

/* ── Winner popup toast ── */
#hw88-winner-toast {
  position: fixed;
  left: 18px;
  bottom: 100px;
  z-index: 99991;
  max-width: 320px;
  background: linear-gradient(135deg, rgba(18, 8, 8, .98), rgba(28, 16, 16, .98));
  border: 1px solid rgba(212, 175, 55, .4);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4), 0 0 20px rgba(196, 30, 58, .15);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform .45s cubic-bezier(.34, 1.56, .64, 1), opacity .35s;
  pointer-events: none;
}

#hw88-winner-toast.hw88-show {
  transform: translateX(0);
  opacity: 1;
}

.hw88-winner-badge {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #120808;
  background: linear-gradient(135deg, #F3DD7F, #FFD700);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.hw88-winner-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: #f5e6c8;
  line-height: 1.5;
  margin: 0;
}

.hw88-winner-text strong {
  color: #F4DF80;
}

.hw88-winner-amount {
  font-family: 'Orbitron', monospace;
  font-size: 16px;
  font-weight: 900;
  color: #F3DD7F;
  margin-top: 6px;
  text-shadow: 0 0 12px rgba(243, 221, 127, .4);
}

/* ── RTP Live Table ── */
#hw88-rtp-section {
  max-width: none;
  margin: 0;
  padding: 0;
}

#hw88-rtp-section .hw88-section-head {
  text-align: center;
  margin-bottom: 20px;
}

#hw88-rtp-section .hw88-section-head h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(18px, 3vw, 26px);
  color: #F4DF80;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 6px;
}

#hw88-rtp-section .hw88-section-head p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  color: #c4a882;
  margin: 0;
}

.hw88-rtp-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, .25);
  background: rgba(18, 8, 8, .8);
}

.hw88-rtp-table {
  width: 100%;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  background: transparent !important;
  margin: 0 !important;
}

.site-footer .hw88-rtp-table,
.site-footer .hw88-rtp-table th,
.site-footer .hw88-rtp-table td {
  border: none !important;
  background-image: none !important;
  box-shadow: none !important;
}

.hw88-rtp-table thead th {
  background: linear-gradient(135deg, #991B1B, #C41E3A);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 12px;
  white-space: nowrap;
}

.hw88-rtp-table tbody tr {
  border-bottom: 1px solid rgba(148, 163, 184, .1);
  transition: background .2s;
}

.hw88-rtp-table tbody tr:hover {
  background: rgba(212, 175, 55, .08);
}

.hw88-rtp-table tbody td {
  padding: 12px 16px;
  color: #e8d5b0;
}

.hw88-rtp-provider {
  font-weight: 700;
  color: #f5e6c8;
}

.hw88-rtp-value {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 15px;
}

.hw88-rtp-value.hw88-high {
  color: #F3DD7F;
}

.hw88-rtp-value.hw88-mid {
  color: #F4DF80;
}

.hw88-rtp-bar {
  height: 6px;
  background: rgba(148, 163, 184, .15);
  border-radius: 3px;
  overflow: hidden;
  min-width: 80px;
}

.hw88-rtp-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #C41E3A, #FFD700);
  transition: width 1s ease;
}

.hw88-rtp-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #FFD700;
}

.hw88-rtp-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFD700;
  animation: hw88-pulse-dot 1.5s infinite;
}

.hw88-rtp-updated {
  text-align: center;
  font-size: 11px;
  color: #a08060;
  margin-top: 10px;
  font-family: 'Rajdhani', sans-serif;
}

/* ── FAQ Section ── */
#hw88-faq-section {
  max-width: none;
  margin: 0;
  padding: 0;
}

#hw88-faq-section .hw88-section-head h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(18px, 3vw, 26px);
  color: #F4DF80;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 20px;
}

.hw88-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hw88-faq-item {
  border: 1px solid rgba(212, 175, 55, .2);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(18, 8, 8, .7);
  transition: border-color .25s;
}

.hw88-faq-item.hw88-open {
  border-color: rgba(255, 215, 0, .4);
}

.hw88-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #f5e6c8;
  transition: color .2s;
}

.hw88-faq-q:hover {
  color: #F4DF80;
}

.hw88-faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(212, 175, 55, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #FFD700;
  transition: transform .3s, background .3s;
}

.hw88-faq-item.hw88-open .hw88-faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 215, 0, .25);
}

.hw88-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 18px;
}

.hw88-faq-item.hw88-open .hw88-faq-a {
  max-height: 300px;
  padding: 0 18px 16px;
}

.hw88-faq-a p {
  margin: 0;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  color: #c4a882;
  line-height: 1.7;
}

/* ── Payment showcase ── */
#hw88-payment-section {
  max-width: none;
  margin: 0;
  padding: 24px;
  background: linear-gradient(160deg, #120808, #1c1010);
  border: 1px solid rgba(212, 175, 55, .2);
  border-radius: 14px;
}

#hw88-payment-section h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  color: #F4DF80;
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hw88-payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 12px;
}

.hw88-pay-item {
  text-align: center;
  padding: 14px 8px;
  background: rgba(18, 8, 8, .6);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, .1);
  transition: border-color .25s, transform .25s;
}

.hw88-pay-item:hover {
  border-color: rgba(255, 215, 0, .35);
  transform: translateY(-2px);
}

.hw88-pay-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #f5e6c8;
  display: block;
}

.hw88-pay-status {
  font-size: 10px;
  color: #FFD700;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

.hw88-pay-status::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFD700;
  margin-right: 4px;
  vertical-align: middle;
  animation: hw88-pulse-dot 1.5s infinite;
}

@media (max-width: 768px) {
  #hw88-winner-toast {
    left: 10px;
    right: 10px;
    max-width: none;
    bottom: 80px;
  }

  .hw88-rtp-table thead th,
  .hw88-rtp-table tbody td {
    padding: 10px 12px;
    font-size: 12px;
  }

  #hw88-trust-ribbon {
    font-size: 10px;
    gap: 12px;
    padding: 5px 10px;
  }

  body.hw88-pro-enhanced {
    padding-top: 52px;
  }

  #hw88-fab-panel {
    right: 12px;
    bottom: 16px;
  }

  .hw88-fab-btn span.hw88-fab-label {
    display: none;
  }

  .hw88-fab-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  #hw88-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .hw88-stat-item:nth-child(2) {
    border-right: none;
  }
}
