/* Search bar - constrain width to match original (~350px) */
.search-container { background: #fff !important; padding: 8px 16px !important; }
.search-wrapper { max-width: 350px !important; width: 350px !important; flex: none !important; }
.search-wrapper .v-input.search_game { max-width: 350px !important; }

/* Game vendor filter bar */
.game-vendor-wrapper {
  background: linear-gradient(90deg, #3a2fa0, #1a1a6e) !important;
  padding: 8px 16px !important;
}
.game-vendor-wrapper .v-label { color: #fff !important; }

/* Game card grid */
.games-card-container { padding: 16px !important; }
.games-card-wrapper {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}
.games-card-wrapper > .v-badge { width: auto !important; }

/* Game cards */
.slot-game-card {
  width: 220px !important;
  cursor: pointer !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  position: relative !important;
  background: #1e1a3e !important;
}
.slot-game-image-box { width: 220px !important; }
.games-card-container .v-responsive__content { width: 220px !important; }

/* Play button - hidden, overlay on hover */
.slot-game-button-container { display: none !important; }
.slot-game-card:hover .slot-game-button-container {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0,0,0,0.55) !important;
  z-index: 2 !important;
}

/* Responsive: mobile/desktop sections (reinforce Vuetify breakpoints) */
@media only screen and (min-width: 960px) {
  .hidden-md-and-up { display: none !important; }
  header .row.mobile { display: none !important; }
  /* Match original header height (70px) for breathing room around logo/buttons */
  header.header-top { height: 70px !important; }
  header.header-top .v-toolbar__content { height: 70px !important; align-items: center !important; }
  .page-navigator { top: 70px !important; margin-top: 0 !important; }
  .body { margin-top: 115px !important; }
}
@media only screen and (max-width: 959px) {
  .hidden-sm-and-down { display: none !important; }
  .jaya9-desktop-carousel { display: none !important; }
}

/* Desktop banner carousel */
.jaya9-desktop-carousel { position: relative; overflow: hidden; width: 100%; }
.jaya9-slide { display: none; }
.jaya9-slide.jaya9-slide-active { display: block; }
.jaya9-slide.jaya9-slide-entering { animation: jaya9fade 0.6s ease; }
@keyframes jaya9fade { from { opacity: 0; } to { opacity: 1; } }

/* Content sections */
.jaya9-content-section {
  padding: 48px 20px;
}
.jaya9-section-1 {
  background: linear-gradient(135deg, #1a1154 0%, #2d1f7e 50%, #1a1154 100%);
}
.jaya9-section-2 {
  background: linear-gradient(135deg, #0d0b2e 0%, #1a1154 50%, #0d0b2e 100%);
}
.jaya9-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.jaya9-content-section h2 {
  color: #fff;
  text-align: center;
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 700;
}
.jaya9-content-intro {
  color: rgba(255,255,255,0.75);
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 36px;
}

/* Hero row: text + image side by side */
.jaya9-hero-row {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}
.jaya9-hero-text {
  flex: 1;
}
.jaya9-hero-text h3 {
  color: #f5a623;
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 700;
}
.jaya9-hero-text p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.jaya9-hero-img {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
}
.jaya9-hero-img img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Buttons */
.jaya9-btn {
  display: inline-block;
  background: linear-gradient(90deg, #f5a623, #e8930a);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.jaya9-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(245,166,35,0.4);
}
.jaya9-btn-sm {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  color: #f5a623;
  font-weight: 600;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.2s;
}
.jaya9-btn-sm:hover {
  background: rgba(245,166,35,0.3);
}

/* Card grid */
.jaya9-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.jaya9-content-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  transition: transform 0.2s, background 0.2s;
}
.jaya9-content-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
}
.jaya9-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: rgba(245,166,35,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jaya9-card-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.jaya9-content-card h3 {
  color: #f5a623;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}
.jaya9-content-card p {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* Feature rows: image + text alternating */
.jaya9-feature-row {
  display: flex;
  gap: 36px;
  align-items: center;
  margin-bottom: 48px;
}
.jaya9-row-reverse {
  flex-direction: row-reverse;
}
.jaya9-feature-img {
  flex: 0 0 45%;
  border-radius: 12px;
  overflow: hidden;
}
.jaya9-feature-img img {
  width: 100%;
  display: block;
  border-radius: 12px;
}
.jaya9-feature-text {
  flex: 1;
}
.jaya9-feature-text h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
}
.jaya9-feature-text p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.jaya9-feature-text strong {
  color: #f5a623;
}
.jaya9-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.jaya9-feature-list li {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  line-height: 1.6;
  padding: 5px 0 5px 20px;
  position: relative;
}
.jaya9-feature-list li::before {
  content: "✓";
  color: #f5a623;
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* VIP bar */
.jaya9-vip-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.jaya9-vip-item {
  background: linear-gradient(135deg, rgba(245,166,35,0.1), rgba(245,166,35,0.05));
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.jaya9-vip-level {
  display: block;
  color: #f5a623;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}
.jaya9-vip-perk {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}

/* Mobile responsive */
@media (max-width: 959px) {
  .jaya9-content-section { padding: 28px 16px; }
  .jaya9-content-section h2 { font-size: 20px; }
  .jaya9-content-intro { font-size: 13px; margin-bottom: 20px; }
  .jaya9-hero-row { flex-direction: column; gap: 20px; }
  .jaya9-hero-text h3 { font-size: 18px; }
  .jaya9-content-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .jaya9-content-card { padding: 16px 12px; }
  .jaya9-card-icon { width: 44px; height: 44px; margin-bottom: 10px; }
  .jaya9-card-icon img { width: 26px; height: 26px; }
  .jaya9-feature-row,
  .jaya9-row-reverse { flex-direction: column; gap: 20px; margin-bottom: 32px; }
  .jaya9-feature-img { flex: none; width: 100%; }
  .jaya9-feature-text h3 { font-size: 18px; }
  .jaya9-vip-bar { gap: 8px; }
  .jaya9-vip-item { min-width: 100px; padding: 12px 10px; }
  .jaya9-vip-level { font-size: 13px; }
  .jaya9-vip-perk { font-size: 11px; }
}

/* Game name */
.slot-game-name-box {
  text-align: center !important;
  font-size: 13px !important;
  padding: 4px 0 !important;
  color: #fff !important;
  background: #1e1a3e !important;
}

/* ===== Casino-template content structure (Vuetify-safe, light theme) ===== */

/* Section wrapper */
section.section {
  padding: 48px 0 !important;
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  position: relative !important;
  background: #ffffff !important;
}
section.section .ct-wrap {
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
}

/* Subtle separator between sections */
section.section + section.section { border-top: 1px solid rgba(0,0,0,0.08) !important; }

/* Typography */
section.section h2 { color: #1a1a2e !important; font-size: 28px !important; font-weight: 700 !important; margin: 0 0 20px !important; line-height: 1.3 !important; }
section.section h3 { color: #c77d0a !important; font-size: 20px !important; font-weight: 700 !important; margin: 24px 0 12px !important; }
section.section h4 { color: #c77d0a !important; font-size: 16px !important; font-weight: 600 !important; }
section.section p { color: #3a3a4a !important; font-size: 15px !important; line-height: 1.75 !important; margin: 0 0 16px !important; }
section.section ul, section.section ol { color: #3a3a4a !important; font-size: 15px !important; line-height: 1.75 !important; margin: 0 0 16px !important; padding-left: 24px !important; }
section.section li { margin-bottom: 6px !important; color: #3a3a4a !important; }
section.section strong { color: #c77d0a !important; }
section.section a { color: #c77d0a !important; }

/* Media-text */
section.section .media-text { display: flex !important; flex-direction: column !important; gap: 24px !important; margin: 24px 0 !important; }
section.section .media-text > div:first-child { flex: 1 !important; }
section.section .media-text > div:last-child { flex: 0 0 42% !important; }
section.section .media-text img { width: 100% !important; display: block !important; border-radius: 12px !important; height: auto !important; }
@media (min-width: 768px) {
  section.section .media-text { flex-direction: row !important; align-items: flex-start !important; }
}

/* Casino table */
section.section table.casino-table { display: table !important; width: 100% !important; border-collapse: collapse !important; margin: 16px 0 24px !important; font-size: 14px !important; background: #fff !important; border-spacing: 0 !important; border: 1px solid #e5e5e5 !important; border-radius: 8px !important; overflow: hidden !important; }
section.section .casino-table thead { display: table-header-group !important; background: #f8f0e0 !important; }
section.section .casino-table tbody { display: table-row-group !important; }
section.section .casino-table tr { display: table-row !important; background: transparent !important; }
section.section .casino-table th { display: table-cell !important; color: #8b6914 !important; font-weight: 700 !important; text-align: left !important; padding: 12px 14px !important; border-bottom: 2px solid #e0c882 !important; white-space: nowrap !important; }
section.section .casino-table td { display: table-cell !important; color: #3a3a4a !important; padding: 10px 14px !important; border-bottom: 1px solid #eee !important; }
section.section .casino-table tbody tr:hover { background: #faf6ed !important; }
section.section .casino-table td strong { color: #c77d0a !important; }

/* Content tiles */
section.section .content-tiles { display: grid !important; gap: 16px !important; margin: 24px 0 !important; grid-template-columns: 1fr !important; }
@media (min-width: 600px) { section.section .content-tiles { grid-template-columns: repeat(2, 1fr) !important; } }
@media (min-width: 960px) { section.section .content-tiles--cols-3 { grid-template-columns: repeat(3, 1fr) !important; } }
section.section .content-tile { background: #fff !important; border: 1px solid #e5e5e5 !important; border-radius: 12px !important; padding: 24px 18px !important; display: flex !important; flex-direction: column !important; gap: 10px !important; transition: transform 0.2s, box-shadow 0.2s !important; text-decoration: none !important; color: inherit !important; cursor: pointer !important; }
section.section .content-tile:hover { transform: translateY(-3px) !important; box-shadow: 0 4px 16px rgba(0,0,0,0.08) !important; }
section.section a.content-tile { text-decoration: none !important; color: inherit !important; }
section.section .content-tile__icon { width: 52px !important; height: 52px !important; display: flex !important; align-items: center !important; justify-content: center !important; border-radius: 50% !important; background: #fef3e0 !important; flex-shrink: 0 !important; }
section.section .content-tile__icon img { width: 30px !important; height: 30px !important; object-fit: contain !important; }
section.section .content-tile__title { font-size: 17px !important; font-weight: 700 !important; color: #1a1a2e !important; margin: 0 !important; }
section.section .content-tile__text { font-size: 13.5px !important; line-height: 1.6 !important; color: #555 !important; margin: 0 !important; flex: 1 !important; }
section.section .content-tile__btn { margin-top: auto !important; padding-top: 8px !important; }
section.section .content-tile--center { text-align: center !important; align-items: center !important; }
section.section .content-tile--center .content-tile__icon { margin: 0 auto !important; }
section.section .content-tile--has-img { padding: 0 !important; overflow: hidden !important; }
section.section .content-tile--has-img .content-tile__img { width: 100% !important; aspect-ratio: 16/9 !important; overflow: hidden !important; }
section.section .content-tile--has-img .content-tile__img img { width: 100% !important; height: 100% !important; object-fit: cover !important; display: block !important; }
section.section .content-tile--has-img .content-tile__body { padding: 20px 18px !important; display: flex !important; flex-direction: column !important; gap: 10px !important; flex: 1 !important; }

/* Horizontal tile */
section.section .content-tile--horizontal { flex-direction: column !important; padding: 0 !important; overflow: hidden !important; }
section.section .content-tile--horizontal .content-tile__img { width: 100% !important; aspect-ratio: 16/10 !important; overflow: hidden !important; }
section.section .content-tile--horizontal .content-tile__img img { width: 100% !important; height: 100% !important; object-fit: cover !important; display: block !important; }
section.section .content-tile--horizontal .content-tile__body { padding: 24px 20px !important; display: flex !important; flex-direction: column !important; gap: 10px !important; flex: 1 !important; }
section.section .content-tile--horizontal .content-tile__body p,
section.section .content-tile--horizontal .content-tile__body ul { font-size: 14px !important; }
@media (min-width: 768px) {
  section.section .content-tile--horizontal { flex-direction: row !important; }
  section.section .content-tile--horizontal .content-tile__img { width: 42% !important; aspect-ratio: auto !important; min-height: 200px !important; }
  section.section .content-tile--horizontal .content-tile__body { width: 58% !important; }
}
section.section .content-tile--img-right { flex-direction: column !important; }
@media (min-width: 768px) { section.section .content-tile--img-right { flex-direction: row-reverse !important; } }

/* Buttons */
section.section .btn-wrap { margin: 24px 0 !important; }
section.section .btn { display: inline-block !important; font-weight: 600 !important; font-size: 15px !important; padding: 13px 32px !important; border-radius: 8px !important; text-decoration: none !important; cursor: pointer !important; transition: transform 0.2s, box-shadow 0.2s !important; border: none !important; letter-spacing: 0.3px !important; }
section.section .btn-primary { background: linear-gradient(90deg, #f5a623, #e8930a) !important; color: #fff !important; }
section.section .btn-primary:hover { transform: translateY(-2px) !important; box-shadow: 0 4px 16px rgba(245,166,35,0.4) !important; }
section.section .btn-success { background: linear-gradient(90deg, #16a34a, #15803d) !important; color: #fff !important; }
section.section .btn-success:hover { transform: translateY(-2px) !important; box-shadow: 0 4px 16px rgba(22,163,74,0.4) !important; }
section.section .btn-sm { font-size: 12px !important; padding: 8px 18px !important; background: #fef3e0 !important; border: 1px solid #e0c882 !important; color: #c77d0a !important; border-radius: 6px !important; display: inline-block !important; text-decoration: none !important; transition: background 0.2s !important; }
section.section .btn-sm:hover { background: #fce8c4 !important; }

/* CTA banner */
section.section .cta-banner { background: linear-gradient(135deg, #fef3e0, #fff8ed) !important; border: 1px solid #e0c882 !important; border-radius: 12px !important; padding: 32px 24px !important; margin: 32px 0 !important; display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; gap: 16px !important; }
@media (min-width: 768px) { section.section .cta-banner { flex-direction: row !important; text-align: left !important; padding: 32px 36px !important; } }
section.section .cta-banner__content { flex: 1 !important; }
section.section .cta-banner__title { font-size: 22px !important; font-weight: 700 !important; color: #1a1a2e !important; margin: 0 !important; }
section.section .cta-banner__text { font-size: 14px !important; color: #555 !important; margin: 6px 0 0 !important; }

/* Pros / Cons */
section.section .pros-cons { display: grid !important; grid-template-columns: 1fr !important; gap: 16px !important; margin: 24px 0 !important; }
@media (min-width: 768px) { section.section .pros-cons { grid-template-columns: repeat(2, 1fr) !important; } }
section.section .pros-cons__col { background: #fff !important; border-radius: 12px !important; padding: 24px 20px !important; border: 1px solid #e5e5e5 !important; }
section.section .pros-cons__heading { font-size: 18px !important; font-weight: 700 !important; margin: 0 0 12px !important; display: flex !important; align-items: center !important; gap: 8px !important; }
section.section .pros-cons__col--pro .pros-cons__heading { color: #16a34a !important; }
section.section .pros-cons__col--con .pros-cons__heading { color: #dc2626 !important; }
section.section .pros-cons__list { list-style: none !important; padding: 0 !important; margin: 0 !important; display: flex !important; flex-direction: column !important; gap: 8px !important; }
section.section .pros-cons__list li { padding-left: 24px !important; position: relative !important; font-size: 14px !important; line-height: 1.6 !important; color: #3a3a4a !important; }
section.section .pros-cons__list li::before { position: absolute !important; left: 0 !important; font-weight: 700 !important; font-size: 16px !important; }
section.section .pros-cons__col--pro .pros-cons__list li::before { content: "+" !important; color: #16a34a !important; }
section.section .pros-cons__col--con .pros-cons__list li::before { content: "\2212" !important; color: #dc2626 !important; }

/* Stats bar */
section.section .stats-bar { display: flex !important; gap: 12px !important; justify-content: center !important; flex-wrap: wrap !important; margin: 28px 0 !important; }
section.section .stats-bar__item { background: #fef3e0 !important; border: 1px solid #e0c882 !important; border-radius: 10px !important; padding: 16px 20px !important; text-align: center !important; flex: 1 !important; min-width: 120px !important; }
section.section .stats-bar__num { display: block !important; color: #c77d0a !important; font-weight: 700 !important; font-size: 22px !important; line-height: 1.2 !important; }
section.section .stats-bar__label { display: block !important; color: #666 !important; font-size: 12px !important; margin-top: 4px !important; }

/* VIP bar */
section.section .vip-bar { display: flex !important; gap: 12px !important; justify-content: center !important; flex-wrap: wrap !important; margin: 24px 0 !important; }
section.section .vip-bar__item { background: #fff !important; border: 1px solid #e0c882 !important; border-radius: 10px !important; padding: 16px 20px !important; text-align: center !important; flex: 1 !important; min-width: 130px !important; }
section.section .vip-bar__level { display: block !important; color: #c77d0a !important; font-weight: 700 !important; font-size: 15px !important; margin-bottom: 4px !important; }
section.section .vip-bar__perk { display: block !important; color: #666 !important; font-size: 12px !important; }

/* FAQ */
section.section .faq-section { margin: 28px 0 !important; }
section.section .faq-item { background: #fff !important; border: 1px solid #e5e5e5 !important; border-radius: 8px !important; padding: 18px 20px !important; margin-bottom: 10px !important; }
section.section .faq-item h4 { color: #c77d0a !important; font-size: 15px !important; font-weight: 600 !important; margin: 0 0 8px !important; }
section.section .faq-item p { color: #3a3a4a !important; font-size: 14px !important; line-height: 1.65 !important; margin: 0 !important; }

/* Mobile responsive */
@media (max-width: 959px) {
  section.section { padding: 28px 0 !important; }
  section.section h2 { font-size: 21px !important; }
  section.section h3 { font-size: 17px !important; }
  section.section p, section.section ul, section.section ol { font-size: 14px !important; }
  section.section .media-text { gap: 16px !important; }
  section.section .content-tile { padding: 16px 14px !important; }
  section.section .content-tile__icon { width: 42px !important; height: 42px !important; }
  section.section .content-tile__icon img { width: 24px !important; height: 24px !important; }
  section.section .casino-table { font-size: 13px !important; }
  section.section .casino-table th, section.section .casino-table td { padding: 8px 10px !important; }
  section.section .stats-bar__item { min-width: 90px !important; padding: 12px 10px !important; }
  section.section .stats-bar__num { font-size: 18px !important; }
  section.section .vip-bar__item { min-width: 100px !important; padding: 12px 10px !important; }
  section.section .cta-banner { padding: 20px 16px !important; }
  section.section .cta-banner__title { font-size: 18px !important; }
}

/* Prevent horizontal scroll globally */
html { overflow-x: hidden !important; }
body { overflow-x: hidden !important; max-width: 100vw !important; }
.v-application--wrap { overflow-x: hidden !important; }
.body { overflow-x: hidden !important; }
/* Vuetify .row negative margins cause overflow — clip them */
.body > div > .row { margin-left: 0 !important; margin-right: 0 !important; }
.info-container-row { overflow-x: hidden !important; max-width: 100% !important; margin-left: 0 !important; margin-right: 0 !important; }
.info-page-card { overflow-x: hidden !important; word-wrap: break-word !important; overflow-wrap: break-word !important; }
.info-expension-panel-content { overflow-x: hidden !important; word-wrap: break-word !important; }
.v-expansion-panel-content__wrap { overflow-x: hidden !important; max-width: 100% !important; }

/* Hide Vuetify promotional popup overlay */
.v-dialog__content { display: none !important; }
.v-overlay--active { display: none !important; }
