/* ==========================================================================
   WOW388 Custom Landing Page Styling
   ========================================================================== */

:root {
  --primary-bg: #022332;
  --secondary-bg: #043144;
  --card-bg: #083f58;
  --card-hover-bg: #0d4e6d;
  --accent-cyan: #38c0ff;
  --accent-cyan-dark: #0090d8;
  --accent-gold: #ffb800;
  --accent-gold-light: #ffe066;
  --accent-gold-dark: #d48b00;
  --accent-green: #00e676;
  --accent-red: #ff3366;
  --text-main: #f0f7fa;
  --text-muted: #94b2c2;
  --border-color: rgba(56, 192, 255, 0.2);
  --border-gold: rgba(255, 184, 0, 0.4);
  --glow-cyan: 0 0 20px rgba(56, 192, 255, 0.35);
  --glow-gold: 0 0 20px rgba(255, 184, 0, 0.45);
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.4);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* FontAwesome Protection */
.fa, .fas, .far, .fal, .fad, .fab, .fa-solid, .fa-regular, .fa-brands {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", sans-serif !important;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.fab, .fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
}
.fas, .fa-solid {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}
.far, .fa-regular {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}

/* Reset & Base Settings */
* {
  box-sizing: border-box;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

body.wow388-landing {
  margin: 0;
  padding: 0;
  background-color: var(--primary-bg);
  background: radial-gradient(circle at 50% 0%, #064763 0%, var(--primary-bg) 70%);
  color: var(--text-main);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for mobile sticky bottom bar */
}

@media (min-width: 992px) {
  body.wow388-landing {
    padding-bottom: 0;
  }
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: var(--transition);
}

a:hover, a:focus {
  color: #70d3ff;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #011822;
}
::-webkit-scrollbar-thumb {
  background: #0e5b7c;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* ==========================================================================
   Top Announcement Bar & Ticker
   ========================================================================== */
.wow-topbar {
  background: #011822;
  border-bottom: 1px solid var(--border-color);
  padding: 6px 0;
  font-size: 12px;
}

.wow-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wow-ticker-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  flex: 1;
  margin-right: 20px;
}

.wow-ticker-badge {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #000;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  margin-right: 12px;
  box-shadow: 0 0 10px rgba(255, 184, 0, 0.4);
}

.wow-ticker-content {
  white-space: nowrap;
  overflow: hidden;
}

.wow-ticker-text {
  display: inline-block;
  padding-left: 100%;
  animation: wow-marquee 35s linear infinite;
  color: #c9e6f3;
}

.wow-ticker-text:hover {
  animation-play-state: paused;
}

@keyframes wow-marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

.wow-topbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
}

.wow-topbar-item {
  color: var(--text-muted);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.wow-topbar-item i {
  color: var(--accent-cyan);
}

.wow-status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-green);
  display: inline-block;
}

/* ==========================================================================
   Main Header & Navigation
   ========================================================================== */
.wow-header {
  background: rgba(2, 35, 50, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(56, 192, 255, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.wow-header.scrolled {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  background: rgba(1, 24, 34, 0.98);
}

.wow-header .container {
  max-width: 1380px;
}

.wow-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.wow-logo-wrapper {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.wow-logo-img {
  height: 38px !important;
  max-height: 38px !important;
  width: auto !important;
  max-width: 140px !important;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: var(--transition);
}

.wow-logo-img:hover {
  transform: scale(1.03);
}

@media (max-width: 767px) {
  .wow-logo-img {
    height: 30px !important;
    max-height: 30px !important;
    max-width: 115px !important;
  }
}

.wow-desktop-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

@media (min-width: 992px) {
  .wow-desktop-menu {
    display: flex;
    gap: 6px;
  }
}

@media (min-width: 1200px) {
  .wow-desktop-menu {
    gap: 10px;
  }
}

@media (min-width: 1360px) {
  .wow-desktop-menu {
    gap: 14px;
  }
}

.wow-menu-link {
  color: var(--text-main);
  font-weight: 600;
  font-size: 12px;
  padding: 6px 4px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap !important;
  letter-spacing: -0.2px;
  transition: var(--transition);
}

.wow-menu-link i {
  font-size: 13px;
  opacity: 0.85;
  transition: var(--transition);
}

.wow-menu-link:hover,
.wow-menu-link.active {
  color: var(--accent-gold);
}

.wow-menu-link:hover i,
.wow-menu-link.active i {
  opacity: 1;
  color: var(--accent-gold);
}

@media (min-width: 1200px) {
  .wow-menu-link {
    font-size: 12.5px;
    padding: 6px 6px;
    letter-spacing: 0;
  }
}

@media (min-width: 1360px) {
  .wow-menu-link {
    font-size: 13px;
    padding: 6px 8px;
    gap: 6px;
  }
  .wow-menu-link i {
    font-size: 14px;
  }
}

.wow-menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.wow-menu-link:hover::after,
.wow-menu-link.active::after {
  width: 100%;
}

.wow-menu-badge {
  font-size: 8.5px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff3366, #ff0055);
  color: #fff;
  padding: 1px 5px;
  border-radius: 10px;
  position: absolute;
  top: -6px;
  right: -10px;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.wow-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.wow-header-actions .wow-btn {
  padding: 6px 14px;
  font-size: 12px;
  gap: 6px;
}

/* Button Component Styles */
.wow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.wow-btn-login {
  background: rgba(56, 192, 255, 0.12);
  color: var(--accent-cyan);
  border-color: rgba(56, 192, 255, 0.4);
}

.wow-btn-login:hover {
  background: var(--accent-cyan);
  color: #011822;
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.wow-btn-register {
  background: linear-gradient(135deg, #ffc72c 0%, #ff8800 100%);
  color: #041b27;
  font-weight: 800;
  border-color: #ffd700;
  box-shadow: 0 4px 15px rgba(255, 153, 0, 0.35);
}

.wow-btn-register:hover {
  background: linear-gradient(135deg, #ffe066 0%, #ffaa00 100%);
  color: #000;
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.6);
  transform: translateY(-2px);
}

.wow-btn-rtp {
  background: linear-gradient(135deg, #00d2ff 0%, #0077ff 100%);
  color: #fff;
  border-color: #38c0ff;
  box-shadow: 0 4px 15px rgba(0, 150, 255, 0.35);
}

.wow-btn-rtp:hover {
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 200, 255, 0.6);
  transform: translateY(-2px);
}

.wow-mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-main);
  font-size: 20px;
  cursor: pointer;
}

@media (min-width: 992px) {
  .wow-mobile-toggle {
    display: none;
  }
}

/* ==========================================================================
   Mobile Sidebar Drawer
   ========================================================================== */
.wow-mobile-drawer {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100vh;
  background: #021a25;
  border-right: 1px solid var(--border-color);
  z-index: 2000;
  transition: left 0.35s ease;
  overflow-y: auto;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
}

.wow-mobile-drawer.open {
  left: 0;
}

.wow-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.wow-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.wow-drawer-header {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #01141d;
}

.wow-drawer-logo,
.wow-drawer-header img {
  height: 32px !important;
  max-height: 32px !important;
  width: auto !important;
  max-width: 120px !important;
  object-fit: contain;
  display: block;
}

.wow-drawer-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.wow-drawer-menu {
  list-style: none;
  padding: 15px 0;
  margin: 0;
  flex: 1;
}

.wow-drawer-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.wow-drawer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  color: #d1e5f0;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.wow-drawer-link i {
  color: var(--accent-cyan);
  font-size: 18px;
  width: 22px;
  text-align: center;
}

.wow-drawer-link:hover,
.wow-drawer-link.active {
  background: rgba(56, 192, 255, 0.1);
  color: var(--accent-gold);
}

.wow-drawer-actions {
  padding: 20px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
   Hero Section & Banner
   ========================================================================== */
.wow-hero-section {
  padding: 20px 0 30px;
}

.wow-banner-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(56, 192, 255, 0.25);
  background: #011822;
}

.wow-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.wow-banner-card:hover .wow-banner-img {
  transform: scale(1.015);
}

.wow-hero-cta-bar {
  background: linear-gradient(180deg, rgba(4, 49, 68, 0.95), rgba(2, 35, 50, 0.98));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  margin-top: 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.wow-hero-info h1 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #fff;
  background: linear-gradient(90deg, #ffffff, #c9eaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wow-hero-info p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.wow-hero-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Progressive Jackpot Section
   ========================================================================== */
.wow-jackpot-box {
  background: linear-gradient(135deg, #072a3a 0%, #0f4b66 50%, #072a3a 100%);
  border: 2px solid #ffb800;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin: 25px 0;
  box-shadow: 0 0 30px rgba(255, 184, 0, 0.25), inset 0 0 15px rgba(255, 184, 0, 0.15);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.wow-jackpot-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
  animation: rotate-jackpot 12s linear infinite;
  pointer-events: none;
}

@keyframes rotate-jackpot {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.wow-jackpot-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold-light);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.wow-jackpot-title i {
  color: var(--accent-gold);
  font-size: 16px;
}

.wow-jackpot-amount {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 184, 0, 0.6);
  font-family: 'Montserrat', monospace, sans-serif;
  margin: 0;
}

@media (min-width: 768px) {
  .wow-jackpot-amount {
    font-size: 40px;
  }
}

/* ==========================================================================
   Quick Stats / Service Highlights
   ========================================================================== */
.wow-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .wow-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

.wow-stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.wow-stat-card:hover {
  background: var(--card-hover-bg);
  transform: translateY(-3px);
  border-color: var(--accent-cyan);
}

.wow-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(56, 192, 255, 0.15);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.wow-stat-card:nth-child(2) .wow-stat-icon {
  background: rgba(255, 184, 0, 0.15);
  color: var(--accent-gold);
}

.wow-stat-card:nth-child(3) .wow-stat-icon {
  background: rgba(0, 230, 118, 0.15);
  color: var(--accent-green);
}

.wow-stat-card:nth-child(4) .wow-stat-icon {
  background: rgba(255, 51, 102, 0.15);
  color: var(--accent-red);
}

.wow-stat-info h4 {
  margin: 0 0 2px 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.wow-stat-info p {
  margin: 0;
  font-size: 11px;
  color: var(--text-muted);
}

/* ==========================================================================
   Game Categories & Tabs
   ========================================================================== */
.wow-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-left: 4px solid var(--accent-cyan);
  padding-left: 12px;
}

.wow-section-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wow-category-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 24px;
  scrollbar-width: none;
}

.wow-category-nav::-webkit-scrollbar {
  display: none;
}

.wow-cat-btn {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
}

.wow-cat-btn:hover {
  background: var(--card-hover-bg);
  color: var(--accent-cyan);
}

.wow-cat-btn.active {
  background: linear-gradient(135deg, #0090d8, #005f8f);
  border-color: var(--accent-cyan);
  color: #fff;
  box-shadow: var(--glow-cyan);
}

/* ==========================================================================
   Provider Grid & Cards
   ========================================================================== */
.wow-provider-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

@media (min-width: 576px) {
  .wow-provider-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .wow-provider-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media (min-width: 992px) {
  .wow-provider-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.wow-provider-card {
  background: var(--card-bg);
  border: 1px solid rgba(56, 192, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.wow-provider-card:hover {
  background: var(--card-hover-bg);
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 184, 0, 0.2);
}

.wow-provider-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.wow-badge-hot {
  background: linear-gradient(135deg, #ff3366, #ff0055);
  color: #fff;
}

.wow-badge-rtp {
  background: linear-gradient(135deg, #00c853, #009624);
  color: #fff;
}

.wow-badge-new {
  background: linear-gradient(135deg, #7c4dff, #651fff);
  color: #fff;
}

.wow-provider-img-wrap {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  width: 100%;
}

.wow-provider-img {
  max-height: 48px;
  max-width: 85%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  transition: var(--transition);
}

.wow-provider-card:hover .wow-provider-img {
  transform: scale(1.1);
}

.wow-provider-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin: 6px 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.wow-provider-rtp {
  font-size: 11px;
  color: var(--accent-green);
  font-weight: 600;
  margin-bottom: 10px;
}

.wow-provider-btn {
  width: 100%;
  padding: 6px 0;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  background: rgba(56, 192, 255, 0.15);
  color: var(--accent-cyan);
  border: 1px solid rgba(56, 192, 255, 0.3);
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.wow-provider-card:hover .wow-provider-btn {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #000;
  border-color: #ffd700;
  box-shadow: 0 0 10px rgba(255, 184, 0, 0.5);
}

/* ==========================================================================
   Live Transactions (Deposit & Withdraw Feed)
   ========================================================================== */
.wow-transactions-section {
  margin-bottom: 40px;
}

.wow-trans-box {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.wow-trans-header {
  padding: 14px 20px;
  background: #011822;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wow-trans-header h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wow-trans-header h3 i {
  color: var(--accent-gold);
}

.wow-trans-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.wow-trans-table th {
  background: rgba(1, 24, 34, 0.6);
  padding: 10px 16px;
  color: var(--text-muted);
  font-weight: 600;
  text-align: left;
}

.wow-trans-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #d1e5f0;
}

.wow-trans-table tr:hover td {
  background: rgba(56, 192, 255, 0.05);
}

.wow-tag-depo {
  background: rgba(0, 230, 118, 0.15);
  color: var(--accent-green);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 10px;
}

.wow-tag-wd {
  background: rgba(255, 184, 0, 0.15);
  color: var(--accent-gold);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 10px;
}

/* ==========================================================================
   Payment Methods & Partners
   ========================================================================== */
.wow-payments-box {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-card);
}

.wow-payment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

.wow-payment-chip {
  background: #022332;
  border: 1px solid rgba(56, 192, 255, 0.2);
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.wow-payment-chip i {
  color: var(--accent-cyan);
}

/* ==========================================================================
   SEO Content & FAQ Accordion
   ========================================================================== */
.wow-seo-section {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-card);
}

.wow-seo-section h2 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-top: 0;
  margin-bottom: 12px;
}

.wow-seo-section p {
  color: #b0cedd;
  font-size: 13px;
  line-height: 1.7;
}

.wow-faq-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wow-faq-item {
  background: #022332;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.wow-faq-question {
  padding: 14px 18px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
}

.wow-faq-question:hover {
  color: var(--accent-gold);
}

.wow-faq-question i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.wow-faq-item.active .wow-faq-question i {
  transform: rotate(180deg);
}

.wow-faq-answer {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: #a1c4d6;
  font-size: 13px;
  line-height: 1.6;
}

.wow-faq-item.active .wow-faq-answer {
  padding: 0 18px 16px;
  max-height: 250px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.wow-footer {
  background: #01141d;
  border-top: 1px solid var(--border-color);
  padding: 40px 0 20px;
  color: var(--text-muted);
}

.wow-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .wow-footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.wow-footer-logo,
.wow-footer-col img {
  height: 38px !important;
  max-height: 38px !important;
  width: auto !important;
  max-width: 150px !important;
  object-fit: contain;
  margin-bottom: 14px;
  display: block;
}

.wow-footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  border-left: 3px solid var(--accent-gold);
  padding-left: 10px;
}

.wow-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wow-footer-links a {
  color: var(--text-muted);
  font-size: 13px;
}

.wow-footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

.wow-license-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.wow-license-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  color: #8faec0;
  font-weight: 600;
}

.wow-footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
}

/* ==========================================================================
   Mobile Bottom Sticky Bar (Harmonized Glassmorphism)
   ========================================================================== */
.wow-mobile-bottom-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 58px;
  background: rgba(2, 28, 40, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(56, 192, 255, 0.18);
  z-index: 1500;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.6);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

@media (min-width: 992px) {
  .wow-mobile-bottom-bar {
    display: none;
  }
}

.wow-mbar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #8faec0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
  padding-top: 4px;
}

.wow-mbar-item i {
  font-size: 17px;
  margin-bottom: 3px;
  color: #8faec0;
  transition: var(--transition);
}

.wow-mbar-item:hover,
.wow-mbar-item.active {
  color: var(--accent-gold);
  text-decoration: none;
}

.wow-mbar-item:hover i,
.wow-mbar-item.active i {
  color: var(--accent-gold);
  transform: translateY(-1px);
}

.wow-mbar-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 0 8px rgba(255, 184, 0, 0.6);
}

.wow-mbar-center {
  position: relative;
  margin-top: -14px;
}

.wow-mbar-center-btn {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #ffb800 0%, #ff8800 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(255, 136, 0, 0.45);
  border: 3px solid rgba(2, 28, 40, 0.96);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wow-mbar-center-btn i {
  color: #041b27 !important;
  margin-bottom: 0 !important;
  font-size: 17px !important;
}

.wow-mbar-center:hover .wow-mbar-center-btn {
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(255, 184, 0, 0.6);
}

.wow-mbar-center span {
  color: var(--accent-gold);
  font-weight: 700;
  margin-top: 2px;
}

/* ==========================================================================
   Subpage Headers & Breadcrumbs
   ========================================================================== */
.wow-page-header {
  background: linear-gradient(135deg, #072a3a 0%, #0c4864 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  margin: 20px 0 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wow-page-header::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(56, 192, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.wow-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.wow-breadcrumb a {
  color: var(--accent-cyan);
}

.wow-page-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wow-page-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(56, 192, 255, 0.2), rgba(0, 144, 216, 0.4));
  border: 1px solid rgba(56, 192, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--accent-cyan);
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(56, 192, 255, 0.3);
}

.wow-page-title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.wow-page-subtitle {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   Promotions Page Styling
   ========================================================================== */
.wow-promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .wow-promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .wow-promo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wow-promo-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.wow-promo-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 184, 0, 0.2);
}

.wow-promo-img-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  background: #021a25;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wow-promo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ff3366, #ff0055);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.wow-promo-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wow-promo-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.wow-promo-desc {
  color: #b0cedd;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.wow-promo-btn {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #041b27;
  font-weight: 800;
  font-size: 13px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.wow-promo-btn:hover {
  background: linear-gradient(135deg, #ffe066, #ffaa00);
  box-shadow: 0 0 15px rgba(255, 184, 0, 0.5);
}

/* ==========================================================================
   Referral Page Styling
   ========================================================================== */
.wow-referral-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .wow-referral-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wow-ref-step {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  position: relative;
}

.wow-ref-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #000;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 18px;
  box-shadow: 0 0 12px rgba(255, 184, 0, 0.4);
}

.wow-ref-step h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
}

.wow-ref-step p {
  color: var(--text-muted);
  font-size: 12px;
  margin: 0;
}

.wow-referral-sharebox {
  background: #011822;
  border: 2px dashed var(--accent-cyan);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin-bottom: 30px;
}

.wow-referral-sharebox h3 {
  color: #fff;
  font-size: 18px;
  margin: 0 0 8px;
}

.wow-ref-link-group {
  display: flex;
  max-width: 500px;
  margin: 16px auto 0;
  gap: 8px;
}

.wow-ref-input {
  flex: 1;
  background: #042535;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
