@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg: #0a020b;
  --bg-darker: #050106;
  --bg-glass: rgba(26, 7, 21, 0.65);
  --bg-glass-hover: rgba(38, 10, 31, 0.85);
  --card: rgba(26, 7, 21, 0.6);
  --card-hover: rgba(38, 10, 31, 0.85);
  --gold: #dfac38;
  --gold-glow: rgba(223, 172, 56, 0.35);
  --gold-gradient: linear-gradient(135deg, #ffffff 0%, #dfac38 45%, #8c5d11 85%, #ffffff 100%);
  --gold-metallic: linear-gradient(135deg, #ffffff 0%, #ffd700 30%, #8c5d11 70%, #ffffff 100%);
  --red: #ff00aa;
  --red-gradient: linear-gradient(135deg, #ff007f 0%, #a2004f 100%);
  --white: #ffffff;
  --muted: #df99cc;
  --line: rgba(255, 0, 170, 0.18);
  --line-light: rgba(255, 255, 255, 0.05);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
  --shadow-gold: 0 0 30px rgba(255, 0, 170, 0.3);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --font-outfit: 'Kanit', sans-serif;
  --text-light: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Kanit", sans-serif;
  /* Solid theme-coloured fallback so the page is NEVER white. The full
     green → pink → blue gradient is painted by the fixed body::before layer,
     which renders correctly on mobile (background-attachment: fixed does not). */
  background-color: #123c5e !important;
  color: var(--white);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* All-Pink VIP Casino Background */
.aura {
  position: fixed;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -4;
  opacity: 0.3;
  pointer-events: none;
  animation: breathe 12s infinite alternate ease-in-out;
}

.aura-hotpink {
  width: 60vw;
  height: 60vw;
  background-color: #ff3399;
  top: -20%;
  left: -15%;
}

/* Sits over the cool/blue lower area — kept teal so it never reads as purple */
.aura-magenta {
  width: 50vw;
  height: 50vw;
  background-color: #1f9e8e;
  bottom: -20%;
  right: -10%;
  animation-delay: -5s;
  animation-direction: alternate-reverse;
}

/* Vivid multi-color neon auras (robot-inspired) layered behind the pink base */
.aura-cyan {
  width: 46vw;
  height: 46vw;
  background-color: #22d3ee;
  top: -12%;
  right: -14%;
  animation-delay: -3s;
}

/* Was a purple aura — now a green glow to reinforce the green/blue lower-left */
.aura-violet {
  width: 44vw;
  height: 44vw;
  background-color: #34d399;
  bottom: -16%;
  left: -10%;
  animation-delay: -8s;
  animation-direction: alternate-reverse;
}

.aura-green {
  width: 34vw;
  height: 34vw;
  background-color: #34d399;
  top: 32%;
  right: 22%;
  animation: breathe-soft 14s infinite alternate ease-in-out;
  animation-delay: -6s;
}

@keyframes breathe {
  0% { transform: scale(1) translate(0, 0); opacity: 0.25; }
  100% { transform: scale(1.12) translate(30px, 30px); opacity: 0.45; }
}

/* Softer breathe for the green accent so it tints without washing out content */
@keyframes breathe-soft {
  0% { transform: scale(0.95) translate(0, 0); opacity: 0.22; }
  100% { transform: scale(1.08) translate(-24px, 24px); opacity: 0.42; }
}

#pink-dust {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  pointer-events: none;
}

/* Mobile now shares the exact same fixed gradient layer (body::before) as
   desktop, so the background renders identically and never falls back to the
   white that background-attachment: fixed produces on mobile browsers. */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  /* Main green → pink → blue gradient, viewport-anchored via position:fixed
     (reliable on mobile, unlike background-attachment: fixed). */
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 217, 112, 0.03) 30%, transparent 70%),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.015), transparent 25%),
    linear-gradient(165deg,
      #e21f7a 0%,
      #ff3aa0 12%,
      #ff6fb0 22%,
      #d98fa0 32%,
      #7bbf86 44%,
      #2fae7a 54%,
      #1f9e8e 66%,
      #1a86b0 78%,
      #1f6fce 90%,
      #154e9e 100%
    );
  z-index: -5;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 90%);
  z-index: -2;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.container {
  width: min(1200px, calc(100% - 40px)) !important;
  margin: 0 auto !important;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 8px rgba(247, 200, 91, 0.15));
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  z-index: -1;
}

/* Header & Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 99;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(3, 3, 4, 0.75);
  border-bottom: 1px solid rgba(247, 200, 91, 0.12);
  transition: all 0.3s ease;
}

.nav {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 26px;
  font-family: var(--font-outfit);
  letter-spacing: 1px;
}
.logo-neon-text {
  font-family: var(--font-outfit), sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #ffffff;
  letter-spacing: 2px;
  text-shadow: 
    0 0 5px #fff,
    0 0 10px #ff00aa,
    0 0 20px #ff00aa,
    0 0 30px #ff00aa;
  animation: neon-pulse 1.5s ease-in-out infinite alternate;
  display: inline-block;
  transition: transform 0.3s ease;
}
.logo:hover .logo-neon-text {
  transform: scale(1.05);
}

@keyframes neon-pulse {
  from {
    text-shadow: 
      0 0 5px #fff,
      0 0 10px #ff00aa,
      0 0 20px #ff00aa,
      0 0 30px #ff00aa;
  }
  to {
    text-shadow: 
      0 0 3px #fff,
      0 0 7px #ff00aa,
      0 0 15px #ff00aa,
      0 0 25px #ff00aa;
  }
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}
.logo:hover .logo-img {
  transform: scale(1.04);
}


.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 25%, #fff6bf, transparent 35%), linear-gradient(135deg, #1f1203, #d89d31, #130a02);
  box-shadow: 0 0 20px rgba(247, 200, 91, 0.35);
  border: 1px solid rgba(255, 235, 160, 0.45);
  transition: all 0.3s ease;
}

.logo:hover .logo-mark {
  transform: rotate(15deg) scale(1.05);
  box-shadow: 0 0 30px rgba(247, 200, 91, 0.5);
}

.logo-mark span {
  font-size: 24px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.menu {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 6px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.menu a {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  color: #c9c5bc;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  white-space: nowrap;
}

.menu a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.menu a.active {
  background: linear-gradient(135deg, rgba(247, 200, 91, 0.18) 0%, rgba(183, 122, 29, 0.08) 100%);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(247, 200, 91, 0.22);
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.btn {
  border: 0;
  outline: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.btn-outline {
  color: #ffe8ab;
  background: rgba(247, 200, 91, 0.03);
  border: 1px solid rgba(247, 200, 91, 0.25);
  box-shadow: inset 0 0 12px rgba(247, 200, 91, 0.02);
}

.btn-outline:hover {
  background: rgba(247, 200, 91, 0.08);
  border-color: rgba(247, 200, 91, 0.5);
  box-shadow: 0 0 20px rgba(247, 200, 91, 0.1);
  transform: translateY(-2px);
}

.btn-gold {
  color: #110901;
  background: var(--gold-metallic);
  box-shadow: 0 8px 25px rgba(247, 200, 91, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(247, 200, 91, 0.45);
  filter: brightness(1.05);
}

.btn-red {
  color: var(--white);
  background: var(--red-gradient);
  box-shadow: 0 8px 25px rgba(255, 42, 31, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 42, 31, 0.35);
  filter: brightness(1.08);
}

/* Language Switcher */
.lang {
  display: flex;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(247, 200, 91, 0.18);
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 3px;
}

.lang button {
  padding: 8px 14px;
  border: 0;
  background: transparent;
  color: #a09782;
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
  font-family: var(--font-outfit);
  border-radius: 9px;
  transition: all 0.2s ease;
}

.lang button.active {
  background: var(--gold-gradient);
  color: #0d0600;
  box-shadow: 0 4px 10px rgba(247, 200, 91, 0.2);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(247, 200, 91, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold);
  font-size: 22px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hamburger:hover {
  background: rgba(247, 200, 91, 0.08);
  transform: scale(1.05);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  min-height: 580px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffe6a1;
  background: rgba(247, 200, 91, 0.06);
  border: 1px solid rgba(247, 200, 91, 0.2);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  box-shadow: inset 0 0 15px rgba(247, 200, 91, 0.03);
}

h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
  font-weight: 900;
}

.lead {
  color: #bfbba3;
  font-size: 18px;
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}


.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 600px;
}

.trust-mini {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.015);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}


.trust-mini:hover {
  border-color: rgba(247, 200, 91, 0.2);
  background: rgba(247, 200, 91, 0.02);
  transform: translateY(-2px);
}

.trust-mini strong {
  display: block;
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 4px;
  font-family: var(--font-outfit);
}

.trust-mini span {
  color: #a09a8a;
  font-size: 13px;
  font-weight: 500;
}

/* 3D Hero Visuals */
.hero-visual {
  position: relative;
  min-height: 520px;
  perspective: 1200px;
  display: grid;
  place-items: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
}

.orb.one {
  width: 380px;
  height: 380px;
  right: 10px;
  top: 40px;
  background: radial-gradient(circle, rgba(247, 200, 91, 0.16) 0%, rgba(139, 8, 8, 0.08) 50%, transparent 70%);
}

.orb.two {
  width: 200px;
  height: 200px;
  left: 20px;
  bottom: 50px;
  background: radial-gradient(circle, rgba(255, 42, 31, 0.1) 0%, transparent 70%);
}

.casino-stage {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  z-index: 2;
  display: grid;
  place-items: center;
}

.roulette {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, #050505 0 16%, #ff00aa 17% 22%, #141416 23% 31%, #800040 32% 39%, #0d0d0f 40% 48%, #ff00aa 49% 51%, #050506 52% 100%);
  border: 8px solid rgba(255, 0, 170, 0.65);
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(255, 0, 170, 0.25),
    inset 0 0 40px rgba(255, 255, 255, 0.05);
  animation: spin 35s linear infinite;
  transform: rotateX(15deg) rotateY(-10deg);
}

.roulette::before {
  content: "";
  position: absolute;
  inset: 52px;
  border-radius: 50%;
  border: 15px dashed rgba(255, 0, 170, 0.45);
}

.roulette::after {
  content: "";
  position: absolute;
  inset: 125px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #b30077);
  box-shadow: 
    0 0 20px rgba(255, 0, 170, 0.6),
    inset 0 0 10px rgba(255, 255, 255, 0.4);
}

.cards3d {
  position: absolute;
  right: 0;
  top: 100px;
  display: flex;
  gap: 12px;
  transform: rotate(-10deg) translateZ(40px);
}

.play-card {
  width: 90px;
  height: 135px;
  border-radius: 14px;
  background: linear-gradient(145deg, #18181c, #050506);
  border: 1px solid rgba(247, 200, 91, 0.45);
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.6),
    inset 0 0 15px rgba(247, 200, 91, 0.05);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 38px;
  font-family: var(--font-outfit);
  font-weight: 900;
  transition: all 0.3s ease;
  animation: cardFloat 4s ease-in-out infinite;
}

.play-card:nth-child(1) {
  animation-delay: 0s;
}

.play-card:nth-child(2) {
  transform: translateY(20px) rotate(6deg) translateZ(10px);
  animation-delay: 0.5s;
}

.play-card:nth-child(3) {
  transform: translateY(40px) rotate(12deg) translateZ(20px);
  animation-delay: 1s;
}

.play-card:hover {
  transform: translateY(-10px) rotate(0deg) scale(1.1) translateZ(50px) !important;
  border-color: #fff;
  box-shadow: 0 25px 50px rgba(247, 200, 91, 0.4);
}

.dice {
  position: absolute;
  width: 86px;
  height: 86px;
  left: 30px;
  top: 160px;
  border-radius: 20px;
  background: linear-gradient(145deg, #241c10, #0a0705);
  border: 1px solid rgba(247, 200, 91, 0.45);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.65),
    0 0 30px rgba(247, 200, 91, 0.15);
  transform: rotate(-15deg) translateZ(30px);
  animation: diceFloat 5s ease-in-out infinite;
}

.dice::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 
    22px 20px 0 var(--gold),
    44px 40px 0 var(--gold),
    18px 52px 0 var(--gold),
    54px 14px 0 var(--gold);
  top: 16px;
  left: 16px;
}

.chip {
  position: absolute;
  width: 88px;
  height: 88px;
  right: 80px;
  bottom: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, #0a0a0c 0 25%, #ff00aa 26% 36%, #800040 37% 58%, #ff00aa 59% 65%, #050506 66%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 45px rgba(0,0,0,0.7);
  animation: chipFloat 4.5s ease-in-out infinite;
  animation-delay: 0.7s;
}

.coins {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.coin {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff5be, #d69524, #754605);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  animation: coinFloat 3.8s ease-in-out infinite;
  border: 0.5px solid rgba(255, 255, 255, 0.15);
}

.coin:nth-child(1) { left: 24%; top: 12%; animation-delay: 0s; }
.coin:nth-child(2) { left: 10%; top: 52%; animation-delay: 0.6s; }
.coin:nth-child(3) { right: 8%; top: 40%; animation-delay: 1.2s; }
.coin:nth-child(4) { right: 26%; bottom: 12%; animation-delay: 1.8s; }
.coin:nth-child(5) { left: 45%; bottom: 25%; animation-delay: 2.4s; }

@keyframes spin { to { transform: rotateX(15deg) rotateY(-10deg) rotate(360deg); } }
@keyframes cardFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(2deg); } }
@keyframes diceFloat { 0%, 100% { transform: rotate(-15deg) translateY(0); } 50% { transform: rotate(-10deg) translateY(-15px); } }
@keyframes chipFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-18px) rotate(-5deg); } }
@keyframes coinFloat { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-10px) scale(1.05); } }

/* Section Headers */
section {
  padding: 32px 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 20px 0;
  }
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.section-kicker {
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 800;
  color: #00ff66 !important;
}

.section-desc {
  color: #aaa292;
  max-width: 600px;
  line-height: 1.7;
  margin-top: 10px;
  font-size: 15px;
}

.glass {
  border: 1px solid var(--line);
  background: var(--bg-glass);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.cat-card {
  padding: 26px 16px;
  min-height: 155px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(255, 255, 255, 0.015);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.02);
}

.cat-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 200, 91, 0.05) 0%, transparent 70%);
  right: -60px;
  bottom: -60px;
  transition: all 0.5s ease;
}

.cat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(247, 200, 91, 0.35);
  background: rgba(247, 200, 91, 0.02);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(247, 200, 91, 0.05);
}

.cat-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  background: rgba(247, 200, 91, 0.05);
  border: 1px solid rgba(247, 200, 91, 0.15);
  transition: all 0.3s ease;
}

.cat-card:hover .cat-icon {
  background: var(--gold-gradient);
  border-color: transparent;
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 8px 20px rgba(247, 200, 91, 0.35);
}

.cat-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
  transition: all 0.3s ease;
}

.cat-card:hover .cat-icon svg {
  fill: #110901;
}

.cat-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 700;
  color: #fff2cc;
}

.cat-card p {
  color: #8c887d;
  font-size: 12px;
  font-weight: 500;
}

/* Popular Games Grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.game-card {
  position: relative;
  min-height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #09090b;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-size: cover;
  background-position: center;
}

.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(247, 200, 91, 0.4);
  box-shadow: 0 20px 40px rgba(247, 200, 91, 0.15);
}

.game-card:hover::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(247, 200, 91, 0.05) 100%);
}

.rank {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #1a0d01;
  font-weight: 900;
  font-family: var(--font-outfit);
  background: var(--gold-gradient);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 15px rgba(0,0,0,0.5);
  font-size: 16px;
  transition: all 0.3s ease;
}

.game-card:hover .rank {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(247, 200, 91, 0.4);
}

.game-info {
  position: relative;
  z-index: 2;
}

.game-info h3 {
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 4px;
  font-weight: 700;
  color: var(--white);
  transition: all 0.3s ease;
}

.game-card:hover .game-info h3 {
  color: var(--gold);
}

.game-info p {
  color: #bfae8f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Feature Grid Row (Jackpot, Special Promo, Live scoreboard) */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.feature-box {
  padding: 28px;
  min-height: 160px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.01);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.feature-box:hover {
  border-color: rgba(247, 200, 91, 0.2);
  transform: translateY(-3px);
}

.feature-box::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: -80px;
  top: -80px;
  background: radial-gradient(circle, rgba(247, 200, 91, 0.04) 0%, transparent 70%);
}

.feature-box small {
  color: #9c9483;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
}

.feature-box strong {
  display: block;
  font-size: 32px;
  color: var(--gold);
  margin: 8px 0;
  font-family: var(--font-outfit);
  font-weight: 900;
  text-shadow: 0 0 20px rgba(247, 200, 91, 0.2);
}

.feature-box p {
  font-size: 13px;
  color: #9c978b;
  font-weight: 500;
}

.promo-highlight {
  background: 
    radial-gradient(circle at 80% 40%, rgba(247, 200, 91, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, rgba(80, 5, 5, 0.4) 0%, rgba(16, 10, 5, 0.95) 100%);
  border-color: rgba(247, 200, 91, 0.15);
}

.promo-highlight strong {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Page Hero */
.page-hero {
  padding: 80px 0 40px;
}

.page-hero .page-box {
  padding: 45px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 0, 170, 0.30);
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 0, 170, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 10% 95%, rgba(34, 211, 238, 0.14) 0%, transparent 48%),
    linear-gradient(150deg, rgba(10, 60, 64, 0.80) 0%, rgba(12, 40, 66, 0.84) 55%, rgba(10, 26, 48, 0.88) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow), 0 0 34px rgba(255, 0, 170, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

/* Tabs */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tab {
  padding: 12px 24px;
  border-radius: 999px;
  color: #adaba1;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.01);
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab:hover {
  color: var(--white);
  border-color: rgba(247, 200, 91, 0.25);
  background: rgba(247, 200, 91, 0.02);
}

.tab.active {
  background: var(--gold-gradient);
  color: #0c0600;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(247, 200, 91, 0.25);
}

/* Promotion Cards */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}


.promo-card-image {
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(247, 200, 91, 0.18);
  overflow: hidden;
  background-color: rgba(12, 10, 8, 0.6);
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.promo-card-image:hover {
  transform: translateY(-8px);
  border-color: rgba(247, 200, 91, 0.45);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.75),
    0 0 30px rgba(247, 200, 91, 0.15);
}
.promo-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.promo-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(247, 200, 91, 0.18);
  background: 
    radial-gradient(circle at 85% 20%, rgba(247, 200, 91, 0.2) 0%, transparent 35%),
    linear-gradient(145deg, rgba(139, 8, 8, 0.6) 0%, rgba(12, 10, 8, 0.98) 70%);
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.promo-card:hover {
  transform: translateY(-8px);
  border-color: rgba(247, 200, 91, 0.45);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.75),
    0 0 30px rgba(247, 200, 91, 0.15);
}

.promo-card .emoji {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 72px;
  opacity: 0.85;
  filter: drop-shadow(0 15px 20px rgba(0,0,0,0.6));
  transition: all 0.3s ease;
}

.promo-card:hover .emoji {
  transform: scale(1.1) rotate(5deg);
}

.promo-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--white);
  max-width: 70%;
}

.promo-card p {
  color: #adaba1;
  font-size: 14px;
  margin-bottom: 12px;
}

.promo-card .percent {
  display: block;
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  color: var(--gold);
  margin: 16px 0;
  font-family: var(--font-outfit);
  text-shadow: 0 0 25px rgba(247, 200, 91, 0.3);
}

.promo-card .note {
  font-size: 14px;
  color: #ffeebc;
  margin-bottom: 24px;
  font-weight: 600;
}

/* Reviews Page Layout */
.review-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
}

.score-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(247, 200, 91, 0.28);
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 0, 170, 0.14) 0%, transparent 45%),
    radial-gradient(circle at 15% 100%, rgba(34, 211, 238, 0.10) 0%, transparent 50%),
    linear-gradient(155deg, rgba(12, 52, 58, 0.82) 0%, rgba(122, 28, 78, 0.50) 100%);
  height: max-content;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow), 0 0 26px rgba(255, 0, 170, 0.10);
}

.score-card .big-score {
  font-size: 72px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin: 16px 0 6px;
  font-family: var(--font-outfit);
}

.stars {
  color: #ffc94b;
  letter-spacing: 3px;
  font-size: 18px;
  text-shadow: 0 0 10px rgba(255, 201, 75, 0.3);
}

.metric {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #dfd8c9;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}

.metric-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 99px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  border-radius: 99px;
  background: var(--gold-gradient);
  box-shadow: 0 0 10px rgba(247, 200, 91, 0.4);
}

.metric:last-child {
  border-bottom: 0;
}


.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1.5px solid #ff00aa;
  background: rgba(20, 5, 17, 0.7);
  backdrop-filter: blur(10px);
  min-height: 240px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 0 15px rgba(255, 0, 170, 0.4), inset 0 0 5px rgba(255, 0, 170, 0.2);
}

.review-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: #ff33bb;
  box-shadow: 0 0 25px rgba(255, 0, 170, 0.6), inset 0 0 8px rgba(255, 0, 170, 0.3);
}

/* ============================================
   Customer Review Screenshots Carousel
   ============================================ */
.review-gallery-section {
  padding-top: 4px;
}

.review-carousel {
  position: relative;
  padding: 0 6px;
}

.review-carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 16px;
  -webkit-overflow-scrolling: touch;
  /* hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.review-carousel-track::-webkit-scrollbar {
  display: none;
}

/* 3 per view on desktop (2 gaps of 18px) */
.review-slide {
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(12, 4, 10, 0.6);
  border: 1px solid rgba(255, 0, 170, 0.22);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Gradient neon frame that lights up on hover */
.review-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255, 0, 170, 0.85), rgba(223, 172, 56, 0.6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 2;
}

/* Uniform 9:16 screenshots — equal-height row */
.review-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.review-slide:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 16px 38px rgba(255, 0, 170, 0.28), 0 0 22px rgba(255, 0, 170, 0.22);
}
.review-slide:hover::before { opacity: 1; }
.review-slide:hover img { transform: scale(1.06); }

/* Click-to-enlarge hint overlay */
.gallery-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(8, 2, 6, 0.6), rgba(8, 2, 6, 0) 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 3;
}
.gallery-zoom svg {
  width: 42px;
  height: 42px;
  color: #ffffff;
  padding: 9px;
  border-radius: 50%;
  background: rgba(255, 0, 170, 0.9);
  box-shadow: 0 0 20px rgba(255, 0, 170, 0.6);
  transform: scale(0.78);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.review-slide:hover .gallery-zoom { opacity: 1; }
.review-slide:hover .gallery-zoom svg { transform: scale(1); }

/* Navigation arrows (PC) */
.review-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(20, 5, 17, 0.85);
  border: 1px solid rgba(255, 0, 170, 0.4);
  box-shadow: 0 0 18px rgba(255, 0, 170, 0.35);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: all 0.3s ease;
}
.review-carousel-btn:hover {
  background: linear-gradient(135deg, #ff00aa, #d100c5);
  border-color: #ff33bb;
  box-shadow: 0 0 26px rgba(255, 0, 170, 0.6);
  transform: translateY(-50%) scale(1.08);
}
.review-carousel-btn svg { width: 24px; height: 24px; }
.review-carousel-prev { left: -10px; }
.review-carousel-next { right: -10px; }
.review-carousel-btn:disabled {
  opacity: 0;
  pointer-events: none;
}

/* Tablet: 2 per view */
@media (max-width: 900px) {
  .review-slide { flex-basis: calc((100% - 18px) / 2); }
}

/* Mobile: 1 per view, swipe only (arrows hidden) */
@media (max-width: 600px) {
  .review-carousel { padding: 0; }
  .review-carousel-track { gap: 14px; }
  .review-slide { flex-basis: 100%; }
  .review-carousel-btn { display: none; }
}

/* Pagination dots */
.review-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
}
.review-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 0, 170, 0.25);
  cursor: pointer;
  transition: width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
              background 0.35s ease, box-shadow 0.35s ease;
}
.review-dot:hover {
  background: rgba(255, 0, 170, 0.55);
}
.review-dot.active {
  width: 26px;
  background: linear-gradient(90deg, #ff00aa, #dfac38);
  box-shadow: 0 0 12px rgba(255, 0, 170, 0.6);
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, #ff0080, #e60073);
  border: 1.5px solid rgba(255, 51, 170, 0.5);
  font-family: var(--font-outfit);
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.4);
}


.review-user strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.review-user span {
  color: #9c978b;
  font-size: 12px;
  font-weight: 500;
}

.review-card p {
  color: #ded9cd;
  line-height: 1.7;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.015);
  text-align: center;
  box-shadow: 0 10px 35px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}

.stat:hover {
  border-color: rgba(247, 200, 91, 0.2);
  transform: translateY(-2px);
}

.stat strong {
  display: block;
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 4px;
  font-family: var(--font-outfit);
  font-weight: 900;
}

.stat > span {
  color: #a6a194;
  font-size: 13px;
  font-weight: 600;
}

/* ============================================================
   Robot-palette colorful glass boxes — bright & airy, cycled
   per item so each box/section gets a different vivid tint.
   Palette: cyan / green / amber / violet / blue / pink
   ============================================================ */

/* --- Review cards: cycle 6 robot colors per item --- */
.review-grid .review-card {
  background: linear-gradient(150deg, rgba(34, 211, 238, 0.40), rgba(12, 96, 120, 0.50)) !important;
  border: 1.5px solid rgba(34, 211, 238, 0.50) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 22px rgba(34, 211, 238, 0.40) !important;
  backdrop-filter: blur(10px);
}
.review-grid .review-card:nth-child(6n+2) {
  background: linear-gradient(150deg, rgba(52, 211, 153, 0.40), rgba(12, 96, 66, 0.50)) !important;
  border-color: rgba(52, 211, 153, 0.50) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 22px rgba(52, 211, 153, 0.40) !important;
}
.review-grid .review-card:nth-child(6n+3) {
  background: linear-gradient(150deg, rgba(56, 189, 248, 0.40), rgba(14, 80, 122, 0.50)) !important;
  border-color: rgba(56, 189, 248, 0.50) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 22px rgba(56, 189, 248, 0.40) !important;
}
.review-grid .review-card:nth-child(6n+4) {
  background: linear-gradient(150deg, rgba(244, 114, 182, 0.40), rgba(122, 28, 78, 0.50)) !important;
  border-color: rgba(244, 114, 182, 0.50) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 22px rgba(244, 114, 182, 0.40) !important;
}
.review-grid .review-card:nth-child(6n+5) {
  background: linear-gradient(150deg, rgba(59, 130, 246, 0.40), rgba(20, 58, 132, 0.50)) !important;
  border-color: rgba(59, 130, 246, 0.50) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 22px rgba(59, 130, 246, 0.40) !important;
}
.review-grid .review-card:nth-child(6n) {
  background: linear-gradient(150deg, rgba(255, 0, 170, 0.40), rgba(126, 10, 80, 0.50)) !important;
  border-color: rgba(255, 0, 170, 0.50) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 22px rgba(255, 0, 170, 0.18) !important;
}
.review-grid .review-card:hover {
  transform: translateY(-6px) scale(1.03);
  filter: brightness(1.1);
}

/* --- Stats: 4 boxes, 4 robot colors --- */
.stats .stat {
  background: linear-gradient(150deg, rgba(34, 211, 238, 0.40), rgba(12, 96, 120, 0.50)) !important;
  border: 1px solid rgba(34, 211, 238, 0.45) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(34, 211, 238, 0.16) !important;
  backdrop-filter: blur(8px);
}
.stats .stat:nth-child(2) {
  background: linear-gradient(150deg, rgba(52, 211, 153, 0.40), rgba(12, 96, 66, 0.50)) !important;
  border-color: rgba(52, 211, 153, 0.45) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(52, 211, 153, 0.16) !important;
}
.stats .stat:nth-child(3) {
  background: linear-gradient(150deg, rgba(56, 189, 248, 0.40), rgba(14, 80, 122, 0.50)) !important;
  border-color: rgba(56, 189, 248, 0.45) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(56, 189, 248, 0.16) !important;
}
.stats .stat:nth-child(4) {
  background: linear-gradient(150deg, rgba(244, 114, 182, 0.40), rgba(122, 28, 78, 0.50)) !important;
  border-color: rgba(244, 114, 182, 0.45) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(244, 114, 182, 0.16) !important;
}
.stat strong { color: #ffffff !important; }

/* --- Hero heading box: bright rainbow glass --- */
.page-hero .page-box {
  background:
    radial-gradient(circle at 88% 8%, rgba(34, 211, 238, 0.16) 0%, transparent 45%),
    radial-gradient(circle at 8% 96%, rgba(52, 211, 153, 0.12) 0%, transparent 48%),
    linear-gradient(120deg, rgba(255, 0, 170, 0.40) 0%, rgba(244, 114, 182, 0.40) 48%, rgba(34, 211, 238, 0.16) 100%),
    rgba(10, 22, 34, 0.42) !important;
  border: 1px solid rgba(255, 0, 170, 0.40) !important;
  box-shadow: var(--shadow), 0 0 38px rgba(244, 114, 182, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

/* --- Score card (reviews): vivid violet glass --- */
.score-card {
  background: linear-gradient(150deg, rgba(244, 114, 182, 0.40), rgba(122, 28, 78, 0.50)) !important;
  border: 1px solid rgba(244, 114, 182, 0.45) !important;
  box-shadow: var(--shadow), 0 0 24px rgba(244, 114, 182, 0.16) !important;
}

/* Contact Page Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 340px 1fr 340px;
  gap: 24px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  padding: 22px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.015);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(247, 200, 91, 0.2);
  transform: translateX(4px);
}

.contact-card.green {
  border-color: rgba(30, 220, 80, 0.25);
  background: linear-gradient(145deg, rgba(20, 160, 60, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.contact-card.green:hover {
  border-color: rgba(30, 220, 80, 0.5);
}

.contact-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(247, 200, 91, 0.05);
  border: 1px solid rgba(247, 200, 91, 0.15);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
}

.contact-card.green .contact-icon {
  background: rgba(30, 220, 80, 0.08);
  border-color: rgba(30, 220, 80, 0.25);
}

.contact-card.green .contact-icon svg {
  stroke: #1edc50;
}

.contact-card strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.contact-card span {
  display: block;
  color: #adaba1;
  font-size: 13px;
  margin-top: 3px;
  font-weight: 500;
}

.form-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.01);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 16px;
}

input, select, textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  font-family: inherit;
  font-weight: 500;
  font-size: 14px;
  outline: none;
  transition: all 0.25s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(247, 200, 91, 0.15);
  background: rgba(0, 0, 0, 0.65);
}

option {
  background: #0d0d0f;
  color: var(--white);
}

textarea {
  height: 150px;
  resize: none;
}

.side-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.015);
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.side-card h3 {
  font-size: 17px;
  font-weight: 800;
}

.faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #dfd9cd;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.faq-item:hover {
  color: var(--gold);
  transform: translateX(2px);
}

.faq-item b {
  color: var(--gold);
  transition: all 0.25s ease;
}

.faq-item:last-child {
  border-bottom: 0;
}

.map {
  height: 140px;
  border-radius: var(--radius-sm);
  background: 
    radial-gradient(circle at 50% 50%, rgba(247, 200, 91, 0.05), transparent),
    linear-gradient(45deg, transparent 47%, rgba(247, 200, 91, 0.04) 48%, rgba(247, 200, 91, 0.04) 52%, transparent 53%),
    #050506;
  background-size: auto, 20px 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 200, 91, 0.12);
  margin-top: 14px;
  color: var(--gold);
  font-size: 34px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}

/* Payment Badges Strip */
.payment-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.01);
  box-shadow: var(--shadow);
}

.pay {
  width: 60px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #202025 0%, #0d0d0f 100%);
  color: #eae6db;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  font-size: 11px;
  font-family: var(--font-outfit);
  border: 1px solid rgba(247, 200, 91, 0.15);
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}

.pay:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 6px 15px rgba(247, 200, 91, 0.15);
  color: var(--gold);
}

/* Articles section banner layout */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.banner-img {
  min-height: 380px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(247, 200, 91, 0.18);
  background: 
    radial-gradient(circle at 50% 35%, rgba(247, 200, 91, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 70% 50%, rgba(139, 8, 8, 0.18) 0%, transparent 30%),
    linear-gradient(145deg, #100b06 0%, #030303 80%);
  display: grid;
  place-items: center;
  font-size: 130px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}

.banner-img:hover {
  border-color: rgba(247, 200, 91, 0.4);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.75),
    0 0 30px rgba(247, 200, 91, 0.1);
}

/* Footer styling */
footer {
  padding: 45px 0;
  text-align: center;
  color: #8c8678;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

footer strong {
  font-size: 20px;
  letter-spacing: 0.5px;
}

/* Floating Actions button CTA */
.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* Floating contact button style as requested */
.float-contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 9999px;
  border: 1px solid #ff00aa; /* Thin pink neon border */
  background-color: #0b0206e6; /* Dark background matching casino tone */
  box-shadow: 0 0 15px rgba(255, 0, 170, 0.25);
  color: #00ff66 !important;
  text-decoration: none;
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  white-space: nowrap;
}

.float-contact-btn .bubble-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ffffff; /* White backing so the green LINE logo reads cleanly */
  border: 1.2px solid #ff00aa; /* Pink neon border */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(255, 0, 170, 0.4);
}

.float-contact-btn .bubble-icon-wrapper svg {
  width: 14px;
  height: 14px;
  fill: #ffffff;
}

.float-contact-btn .bubble-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.float-contact-btn:hover {
  transform: translateY(-4px);
  border-color: #ff33bb; /* Brighter neon pink on hover */
  box-shadow: 
    0 8px 20px rgba(255, 0, 170, 0.4),
    0 0 20px rgba(255, 0, 170, 0.2);
  color: #00ff66 !important;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 200, 91, 0.22);
  background: linear-gradient(145deg, #15110a, #030303);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  color: var(--gold) !important;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.float-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}

.float-btn:hover {
  transform: translateY(-5px);
  border-color: rgba(247, 200, 91, 0.55);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 15px rgba(247, 200, 91, 0.15);
  color: #fff !important;
}

/* Responsive queries */
@media (max-width: 1024px) {
  .menu {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 100px;
    display: none;
    flex-direction: column;
    border-radius: 20px;
    padding: 16px;
    background: rgba(5, 5, 6, 0.96);
    border: 1px solid rgba(247, 200, 91, 0.15);
    box-shadow: var(--shadow);
  }
  .menu.open {
    display: flex;
  }
  .menu a {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
  .hamburger {
    display: block;
  }
  .nav-actions .btn {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 50px;
  }
  .hero-visual {
    min-height: 450px;
  }
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .game-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .promo-grid, .review-grid, .contact-grid, .article-wrap {
    grid-template-columns: 1fr;
  }
  .review-layout {
    grid-template-columns: 1fr;
  }
  .feature-row, .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nav {
    height: 80px;
  }
  .logo {
    font-size: 22px;
  }
  .logo-mark {
    width: 40px;
    height: 40px;
  }
  .lang {
    display: none;
  }
  .hero {
    padding-top: 40px;
  }
  h1 {
    font-size: 40px;
  }
  .lead {
    font-size: 16px;
  }
  .trust-row, .category-grid, .game-grid, .feature-row, .promo-grid, .stats {
    grid-template-columns: 1fr;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .section-head {
    display: block;
  }
  .roulette {
    width: 280px;
    height: 280px;
  }
  .cards3d {
    right: 10px;
    transform: scale(.8) rotate(-10deg);
  }
  .dice {
    left: 20px;
    top: 150px;
    width: 76px;
    height: 76px;
  }
  .banner-img {
    font-size: 90px;
    min-height: 260px;
  }
}

/* Logo Text & Small Tag */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text small {
  font-size: 8px;
  letter-spacing: 0.8px;
  color: #adaba1;
  font-weight: 700;
  margin-top: 1px;
}

/* Arrow circles in CTA buttons */
.arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.85);
  color: var(--gold);
  font-size: 14px;
  margin-left: 6px;
  font-weight: 800;
  font-family: var(--font-outfit);
}
.arrow-circle-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
  margin-left: 6px;
  font-weight: 800;
  font-family: var(--font-outfit);
}

/* Trust Bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: rgba(16, 16, 18, 0.65);
  border: 1px solid rgba(247, 200, 91, 0.15);
  border-radius: var(--radius);
  padding: 22px;
  margin-top: 30px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.02);
}
.trust-col {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-col:last-child {
  border-right: 0;
}
.trust-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: grid;
  place-items: center;
}
.trust-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--gold);
  filter: drop-shadow(0 0 5px rgba(247, 200, 91, 0.3));
}
.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-text strong {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}
.trust-text span {
  font-size: 11px;
  color: #adaba1;
  font-weight: 500;
}

/* Slider wrappers and side arrows */
.slider-wrapper {
  position: relative;
  width: 100%;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(247, 200, 91, 0.25);
  background: rgba(16, 16, 18, 0.85);
  color: var(--gold);
  font-size: 22px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-family: var(--font-outfit);
}
.slider-arrow:hover {
  background: var(--gold-gradient);
  color: #110901;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(247, 200, 91, 0.4);
}
.slider-arrow.prev {
  left: -23px;
}
.slider-arrow.next {
  right: -23px;
}

/* Game Card Custom Bottom Bar */
.game-card {
  padding: 12px;
}
.game-card-bottom {
  width: 100%;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  text-align: left;
}
.game-card:hover .game-card-bottom {
  border-color: rgba(247, 200, 91, 0.25);
  box-shadow: 0 8px 30px rgba(247, 200, 91, 0.1);
}
.game-card-bottom h3 {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: uppercase;
  font-family: var(--font-outfit);
}
.game-card:hover .game-card-bottom h3 {
  color: var(--gold);
}
.publisher-badge {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 5px;
  padding: 2px 5px;
  width: max-content;
  gap: 4px;
}
.pub-logo {
  font-size: 7px;
  font-weight: 900;
  color: #0d0600;
  background: var(--gold-gradient);
  padding: 1px 3px;
  border-radius: 2px;
  line-height: 1;
  font-family: var(--font-outfit);
}
.pub-name {
  font-size: 8px;
  font-weight: 700;
  color: #bfbba3;
  letter-spacing: 0.2px;
  font-family: var(--font-outfit);
}

@media (max-width: 1024px) {
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-col:nth-child(2) {
    border-right: 0;
  }
}
@media (max-width: 640px) {
  .trust-bar {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .trust-col {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
  }
  .trust-col:last-child {
    border-bottom: 0;
  }
  .slider-arrow {
    display: none !important;
  }
}

/* Double-Row Header Styling */
.header-container {
  display: flex;
  flex-direction: column;
}
.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.logo-text-lsm {
  font-family: var(--font-outfit);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 1px;
}
.header-actions-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-red-login {
  background: #ff2a1f;
  color: #fff;
  border: 1px solid transparent;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
}
.btn-red-login:hover {
  background: #d61f16;
  transform: translateY(-1px);
}
.btn-register-outline {
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  border: 1px solid rgba(247, 200, 91, 0.35);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
}
.btn-register-outline:hover {
  background: rgba(247, 200, 91, 0.08);
  border-color: rgba(247, 200, 91, 0.65);
  transform: translateY(-1px);
}
.flag-lang-switcher {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  padding: 2px;
}
.flag-lang-switcher button {
  padding: 6px 10px;
  font-size: 13px;
  background: transparent;
  color: #a09782;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.flag-lang-switcher button.active {
  background: var(--gold-gradient);
  color: #0d0600;
}

.header-bottom-row {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}
.nav-links-centered {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-link-item {
  color: #c9c5bc;
  font-size: 15px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.nav-link-item:hover {
  color: var(--gold);
}
.nav-link-item.active {
  color: var(--gold);
  background: rgba(247, 200, 91, 0.06);
  border-bottom: 2px solid var(--gold);
  border-radius: 0;
}

/* Marquee News Strip */
.marquee-strip {
  background: #111113;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 0;
  font-size: 13px;
  color: #c9c5bc;
  width: 100%;
}
.marquee-container {
  display: flex;
  align-items: center;
  gap: 15px;
}
.marquee-title {
  color: #ff2a1f;
  font-weight: 800;
  white-space: nowrap;
}
.marquee-content {
  width: 100%;
  border: none;
  background: transparent;
}

/* Full screen banner slider styling */
.banner-slider-section {
  border: 1.5px solid #ff00aa;
  box-shadow: 0 0 20px rgba(255, 0, 170, 0.45);
  border-radius: 14px;
  overflow: hidden;
  margin: 20px auto;
  max-width: 1200px;
  width: calc(100% - 40px);
  position: relative;
  background: #000;
  padding: 0 !important;
}
.slider-wrapper-full {
  width: 100%;
  height: 380px;
  position: relative;
}
@media (max-width: 768px) {
  .slider-wrapper-full {
    height: 180px;
  }
}
.banner-slides {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}
.banner-slide.active {
  opacity: 1;
  z-index: 2;
}
.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 26px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}
.banner-arrow:hover {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(247, 200, 91, 0.4);
}
.banner-arrow.prev {
  left: 30px;
}
.banner-arrow.next {
  right: 30px;
}
.banner-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.banner-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}
.banner-dots .dot.active {
  background: var(--gold);
  transform: scale(1.2);
  box-shadow: 0 0 8px var(--gold);
}

/* Live Casino and Slots Cards Row grids */
.section-head-centered {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 15px;
}
.section-kicker-centered {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-kicker-centered svg {
  width: 26px;
  height: 26px;
  fill: #ff2a1f;
  filter: drop-shadow(0 0 5px rgba(255, 42, 31, 0.4));
}
.casino-row-grid, .slots-row-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

/* Numbered Info Overlays on Cards */
.casino-card, .slots-card {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.casino-card::before, .slots-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  z-index: 1;
}
.casino-card:hover, .slots-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 15px 30px rgba(247, 200, 91, 0.2);
}
.casino-info-overlay, .slots-info-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.casino-num-large, .slots-num-large {
  font-size: 52px;
  font-weight: 900;
  line-height: 0.75;
  font-family: var(--font-outfit);
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.casino-brand-name, .slots-brand-name {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  padding-bottom: 2px;
}
.casino-card:hover .casino-brand-name, .slots-card:hover .slots-brand-name {
  color: var(--gold);
}

@media (max-width: 1024px) {
  .slider-wrapper-full {
    height: 320px;
  }
  .header-top-row {
    flex-direction: column;
    height: auto;
    padding: 15px 0;
    gap: 12px;
  }
  .header-bottom-row {
    height: auto;
    padding: 10px 0;
  }
  .nav-links-centered {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-link-item {
    font-size: 13px;
  }
  .casino-row-grid, .slots-row-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .slider-wrapper-full {
    height: 180px;
  }
  .banner-arrow {
    display: none;
  }
  .casino-row-grid, .slots-row-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .casino-card, .slots-card {
    min-height: 170px;
  }
  .casino-num-large, .slots-num-large {
    font-size: 40px;
  }
  .casino-brand-name, .slots-brand-name {
    font-size: 11px;
  }
}

/* ==========================================================================
   LSM9999 Sports Portal Overhaul Styling
   ========================================================================== */

:root {
  --red-accent: #ff00aa;
  --green-accent: #ff00aa;
  --dark-bg: #0a020b;
}

/* Header Adjustments */
.topbar {
  background: #000000 !important;
  border-bottom: 2px solid var(--red-accent) !important;
  position: sticky;
  top: 0;
  z-index: 99;
}
.header-container {
  display: flex;
  flex-direction: column;
}
.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.logo-mark {
  border-radius: 50% !important; /* Make logo mark circular to match screenshot */
  background: radial-gradient(circle at 35% 25%, #fff6bf, transparent 35%), linear-gradient(135deg, #a81c1c, #d89d31, #130a02) !important;
}
.header-actions-group {
  display: flex;
  align-items: center;
  gap: 15px;
}
.support-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green-accent);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}
.support-phone svg {
  fill: var(--green-accent);
  width: 15px;
  height: 15px;
}
.btn-red-login {
  background: var(--red-accent) !important;
  color: #fff !important;
  border: none !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  padding: 8px 16px !important;
  border-radius: 4px !important;
  transition: all 0.2s ease !important;
}
.btn-red-login:hover {
  background: #b81218 !important;
  transform: translateY(-1px) !important;
}
.btn-green-register {
  background: var(--green-accent) !important;
  color: #fff !important;
  border: none !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  padding: 8px 16px !important;
  border-radius: 4px !important;
  transition: all 0.2s ease !important;
}
.btn-green-register:hover {
  background: #008741 !important;
  transform: translateY(-1px) !important;
}

/* Row 1.5 - Shortcuts */
.header-shortcuts-row {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.btn-shortcut {
  background: #252528;
  color: #eee;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.btn-shortcut:hover {
  background: var(--red-accent);
  border-color: transparent;
  color: #fff;
}
.btn-shortcut svg {
  fill: currentColor;
  width: 12px;
  height: 12px;
}

/* Row 2 - Red Navbar Menu */
.header-bottom-row {
  height: auto !important;
  background: linear-gradient(to right, #1d0103 0%, #3a0205 25%, #550309 50%, #3a0205 75%, #1d0103 100%) !important;
  border-top: 1px solid rgba(247, 200, 91, 0.3) !important;
  border-bottom: 1px solid rgba(247, 200, 91, 0.3) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.nav-links-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 !important;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-links-centered::-webkit-scrollbar {
  display: none;
}
.nav-link-item {
  color: #e5e1d8 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 16px 28px !important;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: none !important;
  border-right: 1px solid rgba(247, 200, 91, 0.15) !important;
  position: relative;
  background: transparent !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  border-radius: 0 !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.nav-link-item:first-child {
  border-left: 1px solid rgba(247, 200, 91, 0.15) !important;
}
.nav-link-item:hover {
  background: linear-gradient(to bottom, rgba(247, 200, 91, 0.08) 0%, rgba(247, 200, 91, 0.02) 100%) !important;
  color: var(--gold) !important;
}
.nav-link-item.active {
  background: linear-gradient(to bottom, rgba(247, 200, 91, 0.15) 0%, rgba(247, 200, 91, 0.04) 100%) !important;
  color: var(--gold) !important;
}
.nav-link-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 3px;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px rgba(247, 200, 91, 0.8);
  border-radius: 99px;
}

@media (max-width: 768px) {
  .nav-link-item {
    padding: 12px 18px !important;
    font-size: 13px !important;
  }
  .nav-link-item.active::after {
    left: 8px;
    right: 8px;
  }
}
.menu-icon {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  display: inline-block;
  flex-shrink: 0;
}
.badge-new {
  background: var(--green-accent);
  color: #fff;
  font-size: 7px;
  font-weight: 900;
  padding: 1px 3px;
  border-radius: 2px;
  position: absolute;
  top: 1px;
  right: 3px;
  text-transform: uppercase;
  line-height: 1;
}

/* Marquee & Live Clock */
.marquee-strip {
  background: rgba(26, 7, 21, 0.7) !important;
  border-bottom: 1px solid rgba(255, 0, 170, 0.3) !important;
  padding: 8px 0 !important;
}
.marquee-container {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.marquee-left-group {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}
.live-clock-text {
  font-family: var(--font-outfit);
  font-weight: 700;
  color: #ff00aa !important;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 0, 170, 0.25) !important;
  padding-right: 15px;
  font-size: 12px;
}
.marquee-title {
  color: var(--red-accent) !important;
  font-weight: 800;
}

/* Gold Road to Champion Countdown Bar */
.countdown-bar {
  background: linear-gradient(90deg, #d69f2e 0%, #fcd275 50%, #b88621 100%);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding: 8px 0;
  width: 100%;
}
.countdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.countdown-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1a0d01;
  font-weight: 900;
  font-size: 15px;
  text-transform: uppercase;
  font-family: var(--font-outfit);
}
.countdown-title svg {
  fill: #1a0d01;
  width: 18px;
  height: 18px;
}
.countdown-timer {
  display: flex;
  gap: 8px;
}
.countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown-num {
  background: #ffffff;
  color: #1a0d01;
  font-weight: 900;
  font-size: 15px;
  padding: 2px 6px;
  border-radius: 3px;
  min-width: 32px;
  text-align: center;
  font-family: var(--font-outfit);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.countdown-label {
  font-size: 8px;
  font-weight: 800;
  color: #3d2402;
  text-transform: uppercase;
  margin-top: 2px;
  font-family: var(--font-outfit);
}

/* SABA Sports Odds Carousel */
.saba-sports-section {
  padding: 30px 0;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.saba-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 10px;
}
.saba-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--font-outfit);
}
.saba-title span {
  color: var(--red-accent);
}
.saba-more {
  color: #ffcc00;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.saba-carousel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.saba-card {
  background: #141416;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  transition: all 0.25s ease;
}
.saba-card:hover {
  transform: translateY(-4px);
  border-color: var(--red-accent);
  box-shadow: 0 10px 20px rgba(226, 26, 34, 0.12);
}
.saba-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #888;
  margin-bottom: 8px;
  font-weight: 600;
}
.saba-card-teams {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.saba-team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.saba-team-info {
  display: flex;
  align-items: center;
  gap: 6px;
}
.saba-flag {
  font-size: 14px;
}
.saba-odds-row {
  display: flex;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 8px;
}
.saba-odds-btn {
  flex: 1;
  background: #1d1d21;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: #fff;
  border-radius: 4px;
  padding: 4px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.saba-odds-btn:hover {
  background: var(--red-accent);
  border-color: transparent;
}
.odds-label {
  font-size: 8px;
  color: #777;
  font-weight: 500;
  margin-bottom: 1px;
}
.saba-odds-btn:hover .odds-label {
  color: rgba(255, 255, 255, 0.7);
}
.odds-val {
  color: #ffcc00;
}
.saba-odds-btn:hover .odds-val {
  color: #fff;
}

/* Floating Actions Bar Left Side */
.floating-sidebar-left {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 98;
  display: flex;
  flex-direction: column;
  background: rgba(20, 20, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: none;
  border-radius: 0 8px 8px 0;
  padding: 8px 4px;
  gap: 12px;
  box-shadow: 5px 0 15px rgba(0,0,0,0.5);
}
.sidebar-left-item {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #ccc;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.sidebar-left-item svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}
.sidebar-left-item:hover {
  background: var(--red-accent);
  color: #fff;
}

/* Live Stats & Jackpot Dashboard */
.dashboard-section {
  padding: 30px 0;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}
.stat-card {
  background: linear-gradient(135deg, rgba(42, 6, 25, 0.85) 0%, rgba(20, 2, 12, 0.95) 100%);
  border: 1px solid rgba(247, 200, 91, 0.18);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 50, 150, 0.08), transparent 70%);
  pointer-events: none;
}
.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(247, 200, 91, 0.5);
  box-shadow: 0 15px 30px rgba(247, 200, 91, 0.15);
}
.stat-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  color: var(--gold);
  filter: drop-shadow(0 2px 5px rgba(247, 200, 91, 0.3));
}
.stat-icon svg {
  width: 32px;
  height: 32px;
}
.stat-value {
  font-family: var(--font-outfit), "Kanit", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(247, 200, 91, 0.2);
}
.stat-label {
  font-size: 14px;
  color: #a9b6c3;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.stat-card svg.icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 12px;
  display: block;
  color: var(--gold);
  filter: drop-shadow(0 2px 5px rgba(247, 200, 91, 0.3));
}
.stat-card h3 {
  font-family: var(--font-outfit), "Kanit", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(247, 200, 91, 0.2);
}
.stat-card p {
  font-size: 14px;
  color: #a9b6c3;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Jackpot Card */
.jackpot-card {
  background: linear-gradient(135deg, rgba(45, 5, 27, 0.9) 0%, rgba(18, 2, 10, 0.98) 100%);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(247, 200, 91, 0.05);
  position: relative;
}
.jackpot-header {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.jackpot-value-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 25px;
  height: 80px; /* Force consistent container height */
}
#jackpot-total {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-outfit), "Kanit", sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: #fff;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  line-height: 1;
}

/* Odometer / Digit Strip styles */
.digit-container {
  display: inline-block;
  height: 64px; /* Matches font-size height */
  overflow: hidden;
  position: relative;
}
.digit-strip {
  display: inline-flex;
  flex-direction: column;
  transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.digit-strip span {
  display: inline-block;
  height: 64px;
  line-height: 64px;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-outfit), "Kanit", sans-serif;
  font-weight: 900;
}
.digit-comma {
  display: inline-block;
  height: 64px;
  line-height: 54px; /* Slightly offset comma vertically */
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-outfit), "Kanit", sans-serif;
  font-weight: 900;
  vertical-align: bottom;
}

.bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}
.bottom-card {
  background: rgba(25, 3, 15, 0.7);
  border: 1px solid rgba(247, 200, 91, 0.15);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.2s ease;
}
.bottom-card:hover {
  border-color: rgba(247, 200, 91, 0.35);
  background: rgba(45, 5, 27, 0.8);
}
.bottom-card .label {
  font-size: 13px;
  color: #a9b6c3;
  margin-bottom: 6px;
  font-weight: 500;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .saba-carousel {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Dashboard Responsive */
  .dashboard-grid {
    gap: 15px;
  }
  .stat-card {
    padding: 18px 12px;
    border-radius: 12px;
  }
  .stat-value, .stat-card h3 {
    font-size: 24px;
  }
  .stat-icon, .stat-card svg.icon {
    margin-bottom: 8px;
  }
  .stat-icon {
    width: 40px;
    height: 40px;
  }
  .stat-icon svg, .stat-card svg.icon {
    width: 24px;
    height: 24px;
  }
  .jackpot-card {
    padding: 20px;
    border-radius: 16px;
  }
  .jackpot-value-wrapper {
    height: 60px;
  }
  #jackpot-total {
    font-size: 48px;
  }
  .digit-container {
    height: 48px;
  }
  .digit-strip span, .digit-comma {
    height: 48px;
    line-height: 48px;
  }
  .bottom-card p {
    font-size: 1.3rem !important;
  }
}

@media (max-width: 640px) {
  .saba-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
  .header-top-row {
    flex-direction: row !important;
    height: 75px !important;
    padding: 0 !important;
  }
  .header-shortcuts-row {
    display: none;
  }

  /* Dashboard Responsive Mobile */
  .dashboard-grid {
    gap: 10px;
  }
  .stat-card {
    padding: 12px 6px;
    border-radius: 10px;
  }
  .stat-value, .stat-card h3 {
    font-size: 18px;
  }
  .stat-label, .stat-card p {
    font-size: 11px;
  }
  .stat-icon, .stat-card svg.icon {
    margin-bottom: 6px;
  }
  .stat-icon {
    width: 32px;
    height: 32px;
  }
  .stat-icon svg, .stat-card svg.icon {
    width: 20px;
    height: 20px;
  }
  .jackpot-card {
    padding: 15px;
  }
  .jackpot-header {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .jackpot-value-wrapper {
    height: 45px;
    margin-bottom: 15px;
  }
  #jackpot-total {
    font-size: 32px;
  }
  .digit-container {
    height: 32px;
  }
  .digit-strip span, .digit-comma {
    height: 32px;
    line-height: 32px;
  }
  .bottom-grid {
    gap: 10px;
  }
  .bottom-card {
    padding: 10px;
    border-radius: 8px;
  }
  .bottom-card .label {
    font-size: 11px;
    margin-bottom: 4px;
  }
  .bottom-card p {
    font-size: 1.1rem !important;
  }
}

/* Latest Withdrawals Section */
#pdz-withdrawals {
  background: linear-gradient(135deg, rgba(45, 5, 27, 0.9) 0%, rgba(18, 2, 10, 0.98) 100%);
  border: 2px solid rgba(247, 200, 91, 0.22);
  border-radius: 20px;
  padding: 30px;
  margin-top: 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(247, 200, 91, 0.05);
}
#pdz-withdrawals h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  text-align: center;
  margin-bottom: 24px;
  font-family: var(--font-outfit), "Kanit", sans-serif;
  text-shadow: 0 2px 10px rgba(247, 200, 91, 0.2);
}
.withdrawal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.withdrawal-item {
  display: flex;
  align-items: center;
  background: rgba(25, 3, 15, 0.6);
  border: 1px solid rgba(247, 200, 91, 0.25);
  border-radius: 12px;
  padding: 16px 24px;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.withdrawal-item:hover {
  border-color: rgba(247, 200, 91, 0.65);
  background: rgba(45, 5, 27, 0.8);
  transform: translateY(-2px);
}
.bank-icon {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  padding: 4px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.bank-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.withdrawal-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.withdrawal-details .user-info {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}
.withdrawal-details .amount-info {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}
.withdrawal-details .amount-info .amount-val {
  color: var(--gold);
  font-family: var(--font-outfit), sans-serif;
  font-weight: 800;
}
.withdrawal-details .amount-info .baht {
  font-weight: 500;
  color: #a9b6c3;
  margin-left: 2px;
}
.withdrawal-details .date-info {
  font-size: 12px;
  color: #8c9ba5;
  font-weight: 500;
}
.withdrawal-details .date-info .date-val {
  font-family: var(--font-outfit), sans-serif;
}
.status-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  min-width: 90px;
  justify-content: flex-end;
}
.status-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5px;
}
.icon-spinner {
  animation: spin-2d 1.5s linear infinite;
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke: var(--gold);
}
.icon-check {
  display: none;
  fill: #00ff66;
  stroke: none;
}
.withdrawal-item.success .icon-spinner {
  display: none;
}
.withdrawal-item.success .icon-check {
  display: block;
}
.withdrawal-item.success .status-wrapper {
  color: #00ff66;
}
@keyframes spin-2d {
  to { transform: rotate(360deg); }
}

/* Mobile responsive adjustments for withdrawals */
@media (max-width: 1024px) {
  #pdz-withdrawals {
    padding: 20px;
    border-radius: 16px;
  }
  #pdz-withdrawals h2 {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .withdrawal-item {
    padding: 12px 16px;
    gap: 12px;
  }
  .bank-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  .withdrawal-details .user-info {
    font-size: 13px;
  }
  .withdrawal-details .amount-info {
    font-size: 13px;
  }
  .withdrawal-details .date-info {
    font-size: 10px;
  }
  .status-wrapper {
    font-size: 12px;
    min-width: auto;
  }
  .status-icon {
    width: 15px;
    height: 15px;
  }
}

/* Reviews and LINE CTA Section */
.reviews-cta-section {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
}
.large-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, #ffd700 0%, #e6b800 100%);
  color: #0c0600;
  font-size: 22px;
  font-weight: 900;
  padding: 18px 45px;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(230, 184, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-bottom: 50px;
  font-family: "Kanit", var(--font-outfit), sans-serif;
  letter-spacing: 0.5px;
}
.large-link-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 40px rgba(230, 184, 0, 0.6);
  filter: brightness(1.08);
}
.large-link-btn img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.reviews-header {
  margin-bottom: 30px;
  text-align: center;
}
.reviews-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(247, 200, 91, 0.15);
}
.reviews-header .subtitle {
  color: #a9b6c3;
  font-size: 16px;
  font-weight: 500;
}
.pdz-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.pdz-reviews-grid .review-card {
  background: linear-gradient(135deg, rgba(42, 6, 25, 0.85) 0%, rgba(20, 2, 12, 0.95) 100%);
  border: 1px solid rgba(247, 200, 91, 0.22);
  border-radius: 20px;
  padding: 30px 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pdz-reviews-grid .review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(247, 200, 91, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.pdz-reviews-grid .reviewer-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-outfit), "Kanit", sans-serif;
}
.pdz-reviews-grid .review-stars {
  display: flex;
  gap: 4px;
  color: #ffc94b;
}
.pdz-reviews-grid .review-stars svg.star-filled {
  width: 20px;
  height: 20px;
  fill: currentColor;
  filter: drop-shadow(0 0 5px rgba(255, 201, 75, 0.4));
}
.pdz-reviews-grid .review-text {
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.pdz-reviews-grid .review-time {
  font-size: 13px;
  color: #8c9ba5;
  font-weight: 500;
  text-align: right;
}

.pdz-reviews-grid .review-card.shaking {
  animation: card-shake 4s ease-in-out infinite;
}
.pdz-reviews-grid .review-card.shaking:nth-child(2) {
  animation-delay: 1.5s;
}
.pdz-reviews-grid .review-card.shaking:nth-child(3) {
  animation-delay: 3s;
}

@keyframes card-shake {
  0%, 90%, 100% { transform: rotate(0deg); }
  92% { transform: rotate(0.8deg) translateY(-0.8px); }
  94% { transform: rotate(-0.8deg) translateY(0.8px); }
  96% { transform: rotate(0.4deg) translateY(-0.4px); }
  98% { transform: rotate(-0.4deg) translateY(0.4px); }
}

@media (max-width: 1024px) {
  .large-link-btn {
    font-size: 18px;
    padding: 14px 35px;
    margin-bottom: 40px;
  }
  .large-link-btn img {
    width: 30px;
    height: 30px;
  }
  .reviews-header h2 {
    font-size: 26px;
  }
  .pdz-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .pdz-reviews-grid .review-card {
    padding: 24px 30px;
  }
  .pdz-reviews-grid .reviewer-name {
    font-size: 18px;
  }
  .pdz-reviews-grid .review-text {
    font-size: 16px;
  }
  .pdz-reviews-grid .review-stars svg.star-filled {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 768px) {
  .pdz-reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .large-link-btn {
    font-size: 15px;
    padding: 12px 28px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 320px;
  }
  .large-link-btn img {
    width: 24px;
    height: 24px;
  }
  .reviews-header h2 {
    font-size: 22px;
  }
  .reviews-header .subtitle {
    font-size: 13px;
  }
  .pdz-reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pdz-reviews-grid .review-card {
    padding: 18px 20px;
    border-radius: 16px;
  }
  .pdz-reviews-grid .reviewer-name {
    font-size: 16px;
  }
  .pdz-reviews-grid .review-text {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .pdz-reviews-grid .review-stars svg.star-filled {
    width: 14px;
    height: 14px;
  }
  .pdz-reviews-grid .review-time {
    font-size: 11px;
  }
}

/* Premium Header Strip & Tab Styles */
.header-strip-red {
  background: linear-gradient(to right, #7b060d 0%, #300204 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 20px;
  margin-bottom: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 4px 15px rgba(0, 0, 0, 0.4);
}
.header-strip-red .header-title {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Kanit', sans-serif;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.header-strip-red .header-emoji {
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-tab-orange-wrapper {
  margin-bottom: 24px;
  display: flex;
}
.header-tab-orange {
  background: linear-gradient(135deg, #d34a24 0%, #a63112 100%);
  border-top-left-radius: 20px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 12px 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: inline-flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
}
.header-tab-orange .tab-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  font-family: 'Kanit', sans-serif;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.header-tab-orange .tab-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
  font-weight: 500;
  font-family: 'Kanit', sans-serif;
}

/* Sports & Lottery & Articles grids styling */
.sports-row-grid, .lottery-row-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}
.lottery-row-grid {
  grid-template-columns: repeat(4, 1fr);
}
.sports-card, .lottery-card {
  position: relative;
  min-height: 180px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.sports-card::before, .lottery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  z-index: 1;
}
.sports-card:hover, .lottery-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.sports-info-overlay, .lottery-info-overlay {
  position: relative;
  z-index: 2;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sports-num-large, .lottery-num-large {
  font-size: 56px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  left: 10px;
  bottom: 10px;
  line-height: 1;
  font-family: var(--font-outfit);
  pointer-events: none;
}
.sports-brand-name, .lottery-brand-name {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Articles Section Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.article-card {
  display: flex;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}
.article-card:hover {
  border-color: rgba(247, 200, 91, 0.2);
  transform: translateY(-4px);
  background: var(--card-hover);
}
.article-thumb {
  width: 140px;
  min-width: 140px;
  background-size: cover;
  background-position: center;
}
.article-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.article-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.article-info p {
  font-size: 13px;
  color: #aaa292;
  line-height: 1.5;
}

/* Live Sports Section */
.live-sports-container {
  width: 100%;
  margin-bottom: 30px;
}
.live-stream-placeholder {
  background: linear-gradient(135deg, rgba(20, 20, 25, 0.8), rgba(0, 0, 0, 0.95)), url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?auto=format&fit=crop&w=1200&q=80') no-repeat center / cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}
.live-badge {
  background: #ff2a1f;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(255, 42, 31, 0.5);
  animation: pulse 2s infinite;
}
.stream-icon {
  font-size: 48px;
}
.live-stream-placeholder p {
  color: #c9c5bc;
  font-size: 15px;
  max-width: 500px;
}

/* Media Query overrides for new grids */
@media (max-width: 1024px) {
  .sports-row-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .lottery-row-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .sports-row-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sports-card, .lottery-card {
    min-height: 160px;
  }
  .article-card {
    flex-direction: column;
  }
  .article-thumb {
    width: 100%;
    height: 140px;
  }
}

/* Article Modal Styling */
.article-modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.85); 
  backdrop-filter: blur(10px);
}
.article-modal-content {
  background: linear-gradient(145deg, #151518, #0a0a0c);
  border: 1px solid rgba(247, 200, 91, 0.2);
  margin: 10% auto; 
  padding: 30px;
  width: 90%;
  max-width: 700px; 
  border-radius: var(--radius);
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), var(--shadow-gold);
  color: #fff;
  font-family: 'Kanit', sans-serif;
}
.article-modal-close {
  color: #aaa;
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}
.article-modal-close:hover {
  color: var(--gold);
}
.modal-article-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(247, 200, 91, 0.15);
  padding-bottom: 10px;
}
.modal-article-text {
  font-size: 15px;
  line-height: 1.8;
  color: #eee;
}
.modal-article-text p {
  margin-bottom: 15px;
}
.modal-article-text h4 {
  font-size: 17px;
  color: var(--gold);
  margin-top: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}
.modal-article-text ol, .modal-article-text ul {
  padding-left: 20px;
  margin-bottom: 15px;
}
.modal-article-text li {
  margin-bottom: 8px;
}

/* Footer Payments & Contact Styling */
.footer-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.footer-section-title {
  font-size: 15px;
  font-weight: 700;
  color: #aaa292;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  font-family: 'Kanit', sans-serif;
}
.payment-logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
}
.payment-logo-circle {
  width: 64px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(5px);
  overflow: hidden;
}
.payment-logo-circle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(247, 200, 91, 0.15);
}
.payment-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(1.5);
  transition: all 0.3s ease;
}
.payment-logo-circle:hover img {
  filter: grayscale(0) brightness(1);
}

/* Individual Brand hover styles to light up in their exact brand colors */
.bank-bbl:hover { background: rgba(30, 69, 152, 0.15); border-color: #1e4598; box-shadow: 0 8px 20px rgba(30, 69, 152, 0.3); }
.bank-kbank:hover { background: rgba(19, 143, 45, 0.15); border-color: #138f2d; box-shadow: 0 8px 20px rgba(19, 143, 45, 0.3); }
.bank-ktb:hover { background: rgba(0, 174, 240, 0.15); border-color: #00aef0; box-shadow: 0 8px 20px rgba(0, 174, 240, 0.3); }
.bank-ttb:hover { background: rgba(255, 255, 255, 0.1); border-color: #f36f21; box-shadow: 0 8px 20px rgba(243, 111, 33, 0.3); }
.bank-scb:hover { background: rgba(78, 46, 127, 0.15); border-color: #4e2e7f; box-shadow: 0 8px 20px rgba(78, 46, 127, 0.3); }
.bank-bay:hover { background: rgba(254, 196, 37, 0.15); border-color: #fec425; box-shadow: 0 8px 20px rgba(254, 196, 37, 0.3); }
.bank-uob:hover { background: rgba(10, 46, 92, 0.15); border-color: #0a2e5c; box-shadow: 0 8px 20px rgba(10, 46, 92, 0.3); }
.bank-gsb:hover { background: rgba(236, 6, 139, 0.15); border-color: #ec068b; box-shadow: 0 8px 20px rgba(236, 6, 139, 0.3); }
.bank-baac:hover { background: rgba(0, 99, 59, 0.15); border-color: #00633b; box-shadow: 0 8px 20px rgba(0, 99, 59, 0.3); }

/* Wallet Hover Colors */
.wallet-truemoney:hover { background: rgba(247, 147, 30, 0.15); border-color: #f7931e; box-shadow: 0 8px 20px rgba(247, 147, 30, 0.3); }
.wallet-promptpay:hover { background: rgba(0, 174, 240, 0.1); border-color: #00aef0; box-shadow: 0 8px 20px rgba(0, 174, 240, 0.3); }
.wallet-shopeepay:hover { background: rgba(253, 87, 50, 0.15); border-color: #fd5732; box-shadow: 0 8px 20px rgba(253, 87, 50, 0.3); }
.wallet-linepay:hover { background: rgba(0, 195, 0, 0.15); border-color: #00c300; box-shadow: 0 8px 20px rgba(0, 195, 0, 0.3); }

/* Contact Us Footer Button */
.footer-line-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #00c300;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 195, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-line-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 25px rgba(0, 195, 0, 0.6);
}
.footer-line-btn img {
  width: 28px;
  height: 28px;
}
/* Modern Footer Layout */
.footer-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  text-align: left;
  padding-bottom: 30px;
}
.footer-col-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 0, 170, 0.4);
  font-family: 'Kanit', sans-serif;
  text-transform: uppercase;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: #cda9c4;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}
.footer-links a:hover {
  color: #ff00aa;
  padding-left: 4px;
}
.footer-pay-icons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pay-type-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pay-icon-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 0, 170, 0.25);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.pay-brands-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pay-brand {
  font-size: 16px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
}
.footer-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-neon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(26, 7, 21, 0.8);
  border: 1.5px solid #ff00aa;
  border-radius: 99px;
  padding: 10px 20px;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 0 10px rgba(255, 0, 170, 0.25);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
}
.footer-neon-btn:hover {
  background: #ff00aa;
  box-shadow: 0 0 20px rgba(255, 0, 170, 0.7);
  transform: translateY(-2px);
  color: #fff;
}
.footer-neon-btn img {
  width: 18px;
  height: 18px;
}
.footer-neon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
@media (max-width: 768px) {
  .footer-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-neon-btn {
    margin: 0 auto;
  }
  .pay-type-row {
    justify-content: center;
  }
  .pay-brands-row {
    justify-content: center;
  }
}

/* Categories Navigation Cards */
.categories-nav-section {
  padding: 20px 0;
}
.categories-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cat-nav-card {
  background: rgba(26, 7, 21, 0.8);
  border: 1.5px solid #ff00aa;
  box-shadow: 0 0 15px rgba(255, 0, 170, 0.3);
  border-radius: 16px;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}
.cat-nav-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 0, 170, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cat-nav-card:hover::before {
  opacity: 1;
}
.cat-nav-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 0, 170, 0.6);
  border-color: #ff00aa;
}
.cat-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.cat-icon-glowing {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1.5px solid #ff00aa;
  background: rgba(26, 7, 21, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 0, 170, 0.4);
  color: #ff00aa;
  transition: all 0.3s ease;
}
.cat-nav-card:hover .cat-icon-glowing {
  background: #ff00aa;
  color: #fff;
  box-shadow: 0 0 25px rgba(255, 0, 170, 0.8);
  transform: scale(1.05);
}
.glowing-neon-svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  stroke-width: 1.5px;
}
.cat-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
text-align: left;
  padding-bottom: 30px;
}
.footer-col-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 0, 170, 0.4);
  font-family: 'Kanit', sans-serif;
  text-transform: uppercase;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: #cda9c4;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}
.footer-links a:hover {
  color: #ff00aa;
  padding-left: 4px;
}
.footer-pay-icons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pay-type-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pay-icon-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 0, 170, 0.25);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.pay-brands-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pay-brand {
  font-size: 16px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
}
.footer-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-neon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(26, 7, 21, 0.8);
  border: 1.5px solid #ff00aa;
  border-radius: 99px;
  padding: 10px 20px;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 0 10px rgba(255, 0, 170, 0.25);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
}
.footer-neon-btn:hover {
  background: #ff00aa;
  box-shadow: 0 0 20px rgba(255, 0, 170, 0.7);
  transform: translateY(-2px);
  color: #fff;
}
.footer-neon-btn img {
  width: 18px;
  height: 18px;
}
.footer-neon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
@media (max-width: 768px) {
  .footer-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-neon-btn {
    margin: 0 auto;
  }
  .pay-type-row {
    justify-content: center;
  }
  .pay-brands-row {
    justify-content: center;
  }
}

/* Categories Navigation Cards */
.categories-nav-section {
  padding: 20px 0;
}
.categories-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cat-nav-card {
  background: rgba(26, 7, 21, 0.8);
  border: 1.5px solid #ff00aa;
  box-shadow: 0 0 15px rgba(255, 0, 170, 0.3);
  border-radius: 16px;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}
.cat-nav-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 0, 170, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cat-nav-card:hover::before {
  opacity: 1;
}
.cat-nav-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 0, 170, 0.6);
  border-color: #ff00aa;
}
.cat-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.cat-icon-glowing {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1.5px solid #ff00aa;
  background: rgba(26, 7, 21, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 0, 170, 0.4);
  color: #ff00aa;
  transition: all 0.3s ease;
}
.cat-nav-card:hover .cat-icon-glowing {
  background: #ff00aa;
  color: #fff;
  box-shadow: 0 0 25px rgba(255, 0, 170, 0.8);
  transform: scale(1.05);
}
.glowing-neon-svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  stroke-width: 1.5px;
}
.cat-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  font-family: 'Kanit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 640px) {
  .cat-nav-card {
    padding: 20px 10px;
    border-radius: 12px;
  }
  .cat-icon-glowing {
    width: 50px;
    height: 50px;
  }
  .glowing-neon-svg {
    width: 28px;
    height: 28px;
  }
  .cat-card-title {
    font-size: 14px;
  }
}

/* ==========================================================================
   New Homepage UI overrides (Mockup Restructure)
   ========================================================================== */

/* Banner Dots */
.banner-slider-section {
  position: relative;
}
.banner-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.banner-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 0, 170, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.banner-dots .dot.active {
  background: #ff00aa;
  box-shadow: 0 0 8px #ff00aa;
  width: 18px;
  border-radius: 4px;
}

/* Slots Ranking Layout */
.slots-ranking-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 25px;
  width: 100%;
}
.slots-rank-row {
  display: flex;
  align-items: center;
  background: rgba(25, 3, 15, 0.45);
  border: 1px solid rgba(255, 0, 170, 0.15);
  border-radius: 16px;
  padding: 16px 20px;
  gap: 20px;
  transition: all 0.3s ease;
}
.slots-rank-row:hover {
  border-color: #ff00aa;
  box-shadow: 0 0 15px rgba(255, 0, 170, 0.3);
}
.rank-number-col {
  font-family: var(--font-outfit), 'Kanit', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #ff00aa;
  text-shadow: 0 0 10px rgba(255, 0, 170, 0.7);
  line-height: 1;
  min-width: 32px;
  text-align: center;
  user-select: none;
}
.rank-content-col {
  flex: 1;
  display: flex;
  align-items: center;
}

.slots-row-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}

.slots-card-new {
  position: relative;
  aspect-ratio: 16/10;
  min-height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1.5px solid rgba(255, 0, 170, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
.slots-card-new:hover {
  transform: scale(1.03);
  border-color: #ff00aa;
  box-shadow: 0 0 12px rgba(255, 0, 170, 0.6);
}
.slots-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 2, 11, 0.85) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 8px 10px;
}
.slots-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}
.slots-rank-row.text-row {
  padding: 12px 20px;
}
.slots-rank-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  font-family: 'Kanit', sans-serif;
}

/* New Transaction List Layout */
.withdrawal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
  padding: 0;
  list-style: none;
}
.withdrawal-item {
  display: flex;
  align-items: center;
  background: rgba(25, 3, 15, 0.45);
  border: 1px solid rgba(255, 0, 170, 0.15);
  border-radius: 12px;
  padding: 12px 16px;
  gap: 14px;
  transition: all 0.3s ease;
}
.withdrawal-item:hover {
  border-color: rgba(255, 0, 170, 0.4);
  box-shadow: 0 0 10px rgba(255, 0, 170, 0.2);
}
.withdrawal-item .bank-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 0, 170, 0.1);
  border: 1.5px solid rgba(255, 0, 170, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255, 0, 170, 0.2);
}
.withdrawal-item .bank-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.withdrawal-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.withdrawal-details .user-info {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Kanit', sans-serif;
}
.withdrawal-details .date-info {
  font-size: 11px;
  color: #aaa292;
  font-family: 'Kanit', sans-serif;
}
.status-wrapper-new {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.status-wrapper-new .status-icon {
  width: 16px;
  height: 16px;
  stroke: #ff00aa;
  stroke-width: 4;
  fill: none;
  animation: spin 1s linear infinite;
  display: none;
}
.status-wrapper-new .status-icon circle {
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke: #ff00aa;
  stroke-linecap: round;
  stroke-width: 5;
}
.status-wrapper-new .status-check-text {
  font-size: 16px;
  font-weight: 900;
  color: #28a745;
  text-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
  display: none;
}
.status-wrapper-new .amount-val {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Kanit', sans-serif;
  transition: color 0.3s ease;
}

/* Processing state */
.withdrawal-item.processing .status-wrapper-new .status-icon {
  display: block;
}
.withdrawal-item.processing .status-wrapper-new .amount-val {
  color: #aaa292;
}

/* Success state */
.withdrawal-item.success .status-wrapper-new .status-check-text {
  display: inline;
}
.withdrawal-item.success .status-wrapper-new .amount-val {
  color: #28a745;
  text-shadow: 0 0 8px rgba(40, 167, 69, 0.4);
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .rank-number-col {
    font-size: 36px;
    min-width: 24px;
  }
  .slots-rank-row {
    padding: 12px 14px;
    gap: 12px;
  }
  .slots-rank-name {
    font-size: 14px;
  }
  .slots-name {
    font-size: 11px;
  }
  .withdrawal-item {
    padding: 10px 12px;
    gap: 10px;
  }
  .withdrawal-details .user-info {
    font-size: 13px;
  }
  .withdrawal-details .date-info {
    font-size: 10px;
  }
  .status-wrapper-new .amount-val {
    font-size: 14px;
  }
}

/* ==========================================================================
   Premium Single-Row Header Overrides
   ========================================================================== */
.topbar-new {
  position: sticky;
  top: 0;
  z-index: 99;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(10, 2, 11, 0.9);
  border-bottom: 1px solid rgba(255, 0, 170, 0.3);
  width: 100%;
}
.header-container-new {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.logo-new {
  display: flex;
  align-items: center;
}
.logo-img-new {
  height: 80px; /* equivalent to h-20 */
  width: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .logo-img-new {
    height: 56px; /* equivalent to h-14 */
  }
}
.nav-links-new {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link-new-item {
  color: #ffffff !important;
  text-shadow: 0 0 2px #ff00aa, 0 0 4px rgba(255, 0, 170, 0.5) !important;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  padding: 4px 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Kanit', sans-serif;
  display: inline-block;
  position: relative;
}
.nav-link-new-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2.5px;
  bottom: -4px;
  left: 50%;
  background-color: #ff00aa;
  box-shadow: 0 0 8px #ff00aa;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}
.nav-link-new-item:hover {
  text-shadow: 0 0 6px #ff00aa, 0 0 12px #ff00aa !important;
  transform: scale(1.1);
  color: #ffffff !important;
}
.nav-link-new-item:hover::after {
  width: 80%;
}
.nav-link-new-item.active {
  font-weight: 400;
  text-shadow: 0 0 6px #ff00aa, 0 0 12px #ff00aa !important;
  transform: scale(1.1);
}
.nav-link-new-item.active::after {
  width: 80%;
}
.actions-new {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-login-new {
  background-color: rgba(26, 12, 22, 0.5);
  border: 1.2px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: #e0e0e0;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Kanit', sans-serif;
}
.btn-login-new:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-register-new {
  background: linear-gradient(to right, #ff0080, #e60073);
  border: 2px solid #ff33aa;
  box-shadow: 0 0 10px #ff0080, inset 0 0 4px #ff33aa;
  border-radius: 9999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Kanit', sans-serif;
}
.btn-register-new:hover {
  box-shadow: 0 0 15px #ff0080, inset 0 0 6px #ff33aa;
  filter: brightness(1.1);
}

.mobile-nav-new {
  display: none;
  background: rgba(10, 2, 11, 0.9);
  border-bottom: 1px solid rgba(255, 0, 170, 0.3);
}

@media (max-width: 768px) {
  .nav-links-new {
    display: none;
  }
  .mobile-nav-new {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 24px 12px 24px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .mobile-nav-new::-webkit-scrollbar {
    display: none;
  }
  .mobile-nav-link-item {
    color: #ffffff !important;
    text-shadow: 0 0 2px #ff00aa, 0 0 4px rgba(255, 0, 170, 0.4) !important;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    padding: 4px 4px;
    transition: all 0.25s ease;
    font-family: 'Kanit', sans-serif;
    display: inline-block;
    position: relative;
  }
  .mobile-nav-link-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background-color: #ff00aa;
    box-shadow: 0 0 6px #ff00aa;
    transition: all 0.25s ease;
    transform: translateX(-50%);
  }
  .mobile-nav-link-item:hover {
    text-shadow: 0 0 5px #ff00aa, 0 0 10px #ff00aa !important;
    color: #ffffff !important;
  }
  .mobile-nav-link-item:hover::after {
    width: 80%;
  }
  .mobile-nav-link-item.active {
    font-weight: 400;
    text-shadow: 0 0 5px #ff00aa, 0 0 10px #ff00aa !important;
  }
  .mobile-nav-link-item.active::after {
    width: 80%;
  }
}

/* Premium Section Header Icon Wrapper */
.section-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(18, 2, 14, 0.85); /* Deep dark pink-black glass background for high contrast */
  border: 1.5px solid rgba(255, 0, 170, 0.5); /* Stronger neon pink border */
  box-shadow: 
    0 0 12px rgba(255, 0, 170, 0.35), /* Neon pink outer glow */
    inset 0 0 8px rgba(255, 0, 170, 0.15); /* Neon pink inner glow */
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  vertical-align: middle;
  margin-left: 6px; /* Prevent left edge clipping */
  margin-right: 12px;
  flex-shrink: 0;
}
.section-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -2.5px; /* Marginally larger for an elegant outer ring outline */
  border-radius: 50%;
  background: linear-gradient(135deg, #ff00aa, #dfac38);
  opacity: 0.45; /* Increased opacity from 0.3 to make it stand out */
  z-index: -1;
  transition: all 0.3s ease;
}
.section-icon-wrapper:hover {
  transform: rotate(12deg) scale(1.1);
  border-color: #dfac38;
  box-shadow: 
    0 0 18px rgba(223, 172, 56, 0.6), /* Stronger golden hover glow */
    inset 0 0 10px rgba(223, 172, 56, 0.4);
  background: rgba(26, 6, 20, 0.95);
}
.section-icon-wrapper:hover::before {
  opacity: 0.9;
}
.section-icon-wrapper svg {
  width: 22px;
  height: 22px;
  transition: all 0.3s ease;
}

/* Scroll Reveal Bounce & Slide Up CSS Animation */
.reveal-scroll {
  opacity: 0;
  transform: translateY(50px) scale(0.96);
  transition: opacity 0.85s cubic-bezier(0.175, 0.885, 0.32, 1.255), transform 0.85s cubic-bezier(0.175, 0.885, 0.32, 1.255);
  will-change: transform, opacity;
}
.reveal-scroll.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Custom Styling for Badges */
.badge-highlight {
  background: rgba(255, 0, 170, 0.05);
  border: 1px solid rgba(255, 0, 170, 0.40);
  box-shadow: 0 0 10px rgba(255, 0, 170, 0.03), inset 0 0 5px rgba(255, 0, 170, 0.01);
  transition: all 0.3s ease;
}
.badge-highlight:hover {
  background: rgba(255, 0, 170, 0.10);
  border-color: rgba(255, 0, 170, 0.45);
  box-shadow: 0 0 15px rgba(255, 0, 170, 0.15);
  transform: translateY(-1.5px);
}

/* Premium Header Styling from index.html */
.btn-login-custom {
  background-color: rgba(26, 12, 22, 0.5);
  border: 1.2px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: #00ff66 !important;
}
.btn-login-custom:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #00ff66 !important;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-register-custom {
  background: linear-gradient(to right, #ff0080, #e60073);
  border: 2px solid #ff33aa;
  box-shadow: 0 0 10px #ff0080, inset 0 0 4px #ff33aa;
  border-radius: 9999px;
  color: #ffffff;
  font-weight: 700;
}
.btn-register-custom:hover {
  box-shadow: 0 0 15px #ff0080, inset 0 0 6px #ff33aa;
  filter: brightness(1.1);
}
/* Equal-size header auth buttons (เข้าสู่ระบบ / สมัครสมาชิก) with smooth pro interactions */
.btn-auth {
  position: relative;
  overflow: hidden;
  border-width: 2px;
  min-height: 40px;
  letter-spacing: 0.3px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease, background-color 0.3s ease,
              border-color 0.3s ease, filter 0.3s ease, background-position 0.5s ease;
  will-change: transform;
}
.btn-auth:hover { transform: translateY(-2px); }
.btn-auth:active { transform: translateY(0) scale(0.96); }
/* Glossy shine sweep on hover */
.btn-auth::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-22deg);
  transition: left 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}
.btn-auth:hover::before { left: 135%; }
/* Login (secondary) — subtle pink neon glow on hover */
.btn-auth.btn-login-custom:hover {
  border-color: rgba(255, 0, 170, 0.55);
  box-shadow: 0 0 14px rgba(255, 0, 170, 0.25);
}
/* Register (primary CTA) — shifting gradient + breathing glow to draw the eye */
.btn-auth.btn-register-custom {
  background: linear-gradient(135deg, #ff5cc0, #ff0080, #c8005f);
  background-size: 200% 100%;
  background-position: 0% 0;
  animation: btn-auth-pulse 2.4s ease-in-out infinite;
}
.btn-auth.btn-register-custom:hover {
  background-position: 100% 0;
  box-shadow: 0 0 22px rgba(255, 0, 128, 0.85), inset 0 0 8px rgba(255, 102, 187, 0.7);
  filter: brightness(1.08);
  animation-play-state: paused;
}
@keyframes btn-auth-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 0, 128, 0.45), inset 0 0 5px rgba(255, 102, 187, 0.4); }
  50% { box-shadow: 0 0 20px rgba(255, 0, 128, 0.8), inset 0 0 7px rgba(255, 102, 187, 0.65); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-auth, .btn-auth::before, .btn-auth.btn-register-custom { transition: none; animation: none; }
}
@keyframes premium-bounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 5px 15px #ff0080, 0 0 20px #ff33aa;
  }
}
.animate-bounce-click {
  animation: premium-bounce 1.4s infinite ease-in-out;
}

.nav-link-premium {
  color: #ffffff !important;
  text-shadow: 0 0 2px #ff00aa, 0 0 4px rgba(255, 0, 170, 0.5) !important;
  font-weight: 300;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
}
.nav-link-premium::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2.5px;
  bottom: -4px;
  left: 50%;
  background-color: #ff00aa;
  box-shadow: 0 0 8px #ff00aa;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}
.nav-link-premium:hover {
  text-shadow: 0 0 6px #ff00aa, 0 0 12px #ff00aa !important;
  transform: scale(1.1);
  color: #ffffff !important;
}
.nav-link-premium:hover::after {
  width: 80%;
}
.nav-link-premium.active {
  font-weight: 400;
  text-shadow: 0 0 6px #ff00aa, 0 0 12px #ff00aa !important;
  transform: scale(1.1);
}
.nav-link-premium.active::after {
  width: 80%;
}
@media (max-width: 768px) {
  .nav-link-premium {
    font-size: 14px;
  }
  .nav-link-premium:hover {
    transform: none;
  }
}

/* Premium Redesigned Footer CSS */
.premium-footer-bg {
  background: linear-gradient(165deg,
    #0a3f37 0%,
    #0c4a52 24%,
    #0d3a5e 50%,
    #0a2a4e 74%,
    #07172a 100%
  );
  position: relative;
}

/* Soft multi-color ambient glow across the top of the footer */
.premium-footer-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: radial-gradient(70% 130% at 50% 0%,
    rgba(255, 0, 170, 0.16) 0%,
    rgba(244, 114, 182, 0.10) 35%,
    rgba(34, 211, 238, 0.07) 60%,
    transparent 78%
  );
  pointer-events: none;
  z-index: 0;
}

.premium-footer-glow-border {
  position: relative;
}

.premium-footer-glow-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 0, 170, 0.85) 16%,
    rgba(34, 211, 238, 0.8) 38%,
    rgba(244, 114, 182, 0.8) 58%,
    rgba(223, 172, 56, 0.9) 82%,
    transparent 100%
  );
  box-shadow: 0 0 16px rgba(255, 0, 170, 0.45), 0 0 26px rgba(34, 211, 238, 0.25);
  z-index: 2;
}

/* Brightened, multi-color neon header bar — green → teal → blue glass
   with a pink neon underline (no purple). */
.header-bar {
  background: linear-gradient(105deg,
    rgba(15, 94, 78, 0.92) 0%,
    rgba(13, 110, 116, 0.90) 35%,
    rgba(14, 86, 140, 0.90) 70%,
    rgba(18, 56, 120, 0.92) 100%
  ) !important;
  border-bottom-color: rgba(255, 0, 170, 0.55) !important;
  box-shadow: 0 2px 22px rgba(255, 0, 170, 0.40), 0 6px 38px rgba(34, 211, 238, 0.14);
}
.header-bar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    #ff00aa 18%,
    #22d3ee 42%,
    #34d399 60%,
    #dfac38 82%,
    transparent 100%
  );
  box-shadow: 0 0 14px rgba(255, 0, 170, 0.5), 0 0 22px rgba(34, 211, 238, 0.3);
  opacity: 0.95;
  pointer-events: none;
  z-index: 1;
}

.trust-badge-seal {
  background: rgba(20, 5, 22, 0.5);
  border: 1px solid rgba(255, 0, 170, 0.15);
  box-shadow: inset 0 0 10px rgba(255, 0, 170, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.trust-badge-seal:hover {
  border-color: rgba(255, 0, 170, 0.45);
  box-shadow: 0 0 15px rgba(255, 0, 170, 0.2), inset 0 0 5px rgba(255, 0, 170, 0.1);
  transform: translateY(-2px);
}

.payment-panel-glass {
  background: rgba(13, 3, 15, 0.6);
  border: 1px solid rgba(255, 0, 170, 0.12);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(255, 0, 170, 0.03);
  transition: all 0.3s ease;
}

.payment-panel-glass:hover {
  border-color: rgba(255, 0, 170, 0.25);
  box-shadow: 0 12px 40px 0 rgba(255, 0, 170, 0.06), inset 0 0 20px rgba(255, 0, 170, 0.05);
}

/* ============================================================
   Header auth buttons — เข้าสู่ระบบ (Login) / สมัครสมาชิก (Register)
   Identical size on EVERY page & breakpoint (PC + mobile), with
   smooth premium interactions. Scoped under .header-bar so it
   reliably wins over the Tailwind CDN utility classes.
   ============================================================ */
.header-bar .btn-auth {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  /* equal-size knobs (mobile-first) */
  height: 38px;
  min-height: 0;
  min-width: 96px;
  padding: 0 16px;
  font-family: var(--font-outfit), sans-serif;
  font-size: 12.5px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 9999px;
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease, background-color 0.3s ease,
              border-color 0.3s ease, filter 0.3s ease, background-position 0.5s ease;
  will-change: transform;
}
.header-bar .btn-auth:hover { transform: translateY(-2px); }
.header-bar .btn-auth:active { transform: translateY(0) scale(0.96); }

/* Glossy shine sweep on hover */
.header-bar .btn-auth::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-22deg);
  transition: left 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}
.header-bar .btn-auth:hover::before { left: 135%; }

/* Login (secondary) — glassy outline, cool blue glow on hover */
.header-bar .btn-auth.btn-login-custom {
  background-color: rgba(8, 30, 38, 0.55);
  border-color: rgba(255, 255, 255, 0.22);
  color: #00ff66 !important;
  font-weight: 600;
}
.header-bar .btn-auth.btn-login-custom:hover {
  background-color: rgba(56, 189, 248, 0.10);
  border-color: rgba(56, 189, 248, 0.70);
  color: #00ff66 !important;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.35);
}

/* Register (primary CTA) — shifting pink gradient + breathing glow */
.header-bar .btn-auth.btn-register-custom {
  background: linear-gradient(135deg, #ff5cc0, #ff0080, #c8005f);
  background-size: 200% 100%;
  background-position: 0% 0;
  border-color: #ff33aa;
  color: #ffffff;
  font-weight: 700;
  animation: btn-auth-pulse 2.4s ease-in-out infinite;
}
.header-bar .btn-auth.btn-register-custom:hover {
  background-position: 100% 0;
  box-shadow: 0 0 22px rgba(255, 0, 128, 0.85), inset 0 0 8px rgba(255, 102, 187, 0.7);
  filter: brightness(1.08);
  animation-play-state: paused;
}

@keyframes btn-auth-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 0, 128, 0.45), inset 0 0 5px rgba(255, 102, 187, 0.4); }
  50% { box-shadow: 0 0 20px rgba(255, 0, 128, 0.8), inset 0 0 7px rgba(255, 102, 187, 0.65); }
}

/* Equal-size scaling across breakpoints (both buttons share these knobs) */
@media (min-width: 640px) {
  .header-bar .btn-auth { height: 40px; min-width: 110px; padding: 0 20px; font-size: 13px; }
}
@media (min-width: 768px) {
  .header-bar .btn-auth { height: 44px; min-width: 126px; padding: 0 26px; font-size: 14px; }
}
@media (max-width: 380px) {
  .header-bar .btn-auth { height: 34px; min-width: 0; padding: 0 12px; font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
  .header-bar .btn-auth,
  .header-bar .btn-auth::before,
  .header-bar .btn-auth.btn-register-custom { transition: none; animation: none; }
}

/* ============================================================
   Readable secondary / body text on the bright colorful cards.
   Brighter grays + a soft dark shadow so descriptions such as
   "เดิมพันได้อย่างมั่นใจ จ่ายจริงทุกยอด…" and other sub-headings
   stand out clearly against the vivid glass backgrounds.
   ============================================================ */
.text-gray-400 { color: #eef4fb !important; }
.text-gray-300 { color: #f3f7fc !important; }
.text-gray-500 { color: #dde6f1 !important; }

/* Soft contrast shadow + a touch more weight for small card copy */
.glass-panel p,
.glass-panel span,
.feature-why-grid p,
.feature-why-grid span,
.review-card p,
.review-card span,
.stats .stat span,
.score-card p,
.score-card span,
.page-hero .page-box p {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.glass-panel p,
.feature-why-grid p {
  font-weight: 500;
}

/* Card titles pop a little more over the bright glass */
.glass-panel h3,
.feature-why-grid h3,
.review-card h3,
.review-card h4 {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}






