/* ================================================================
   TR666 Singapore — style.css  v3.0
   Premium Gaming Platform Stylesheet
   ================================================================

   TABLE OF CONTENTS
   ─────────────────
   01. CSS Variables
   02. Reset & Base
   03. Typography Helpers
   04. Image Placeholder System
   05. Shimmer Animation
   06. Button System
   07. Section Layout & Background FX
   08. Announcement Bar
   09. Header & Navigation
   10. Mobile Menu
   11. Hero Section
   12. Promotions Section
   13. Game Providers Section
   14. VIP Section
   15. Payment Methods
   16. Testimonials
   17. FAQ Accordion
   18. Contact Section
   19. Footer
   20. Floating Buttons
   21. Mobile Bottom Bar
   22. Scroll Reveal
   23. Responsive — Tablet (1024px)
   24. Responsive — Mobile (768px)
   25. Responsive — Small Mobile (480px)
   ================================================================ */


/* ================================================================
   01. CSS VARIABLES
   ================================================================ */
:root {
  /* ── Dark App Backgrounds (charcoal blue-grey) ── */
  --bg:             #111315;
  --bg-section:     #17191D;
  --bg-card:        #1E2126;
  --bg-card-hover:  #242930;
  --bg-glass:       rgba(17, 19, 21, 0.88);
  --bg-input:       #1A1D22;

  /* ── Gold palette — clean champagne, not muddy bronze ── */
  --gold:           #D4AF37;
  --gold-light:     #F5D97A;
  --gold-soft:      #E7C65C;
  --gold-dim:       #A8891F;
  --gold-glow:      rgba(212, 175, 55, 0.28);
  --gold-glow-sm:   rgba(212, 175, 55, 0.14);
  --gold-glow-lg:   rgba(212, 175, 55, 0.06);

  /* ── Subtle teal accent — alive but not neon ── */
  --teal:           rgba(0, 210, 160, 0.06);
  --teal-hover:     rgba(0, 210, 160, 0.1);
  --teal-glow:      rgba(0, 200, 155, 0.12);
  --teal-border:    rgba(0, 200, 155, 0.15);

  /* ── Status colors ── */
  --red-hot:        #C0392B;
  --red-glow:       rgba(192, 57, 43, 0.35);

  /* ── Text ── */
  --text:           #F0EDE8;
  --text-muted:     #9DA3AE;
  --text-dim:       #4E5562;
  --text-label:     #6B7280;

  /* ── Borders ── */
  --border:         rgba(255, 255, 255, 0.07);
  --border-gold:    rgba(212, 175, 55, 0.22);
  --border-active:  rgba(212, 175, 55, 0.5);

  /* ── Spacing ── */
  --space-xs:  0.5rem;
  --space-sm:  0.75rem;
  --space-md:  1.25rem;
  --space-lg:  2rem;
  --space-xl:  3.5rem;
  --space-2xl: 6rem;

  /* ── Radius — rounded app-feel ── */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-pill: 100px;

  /* ── Transitions ── */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t-fast:   0.16s var(--ease);
  --t-base:   0.26s var(--ease);
  --t-slow:   0.42s var(--ease);

  /* ── Shadows ── */
  --shadow-card:    0 2px 16px rgba(0, 0, 0, 0.4);
  --shadow-card-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold:    0 0 32px var(--gold-glow);
  --shadow-gold-lg: 0 0 60px rgba(212, 175, 55, 0.18), 0 16px 50px rgba(0, 0, 0, 0.7);
}


/* ================================================================
   02. RESET & BASE
   ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.has-announce { padding-top: 40px; }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--t-fast);
}

ul { list-style: none; }
button { cursor: pointer; font: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.25); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

/* Selection */
::selection { background: rgba(212, 175, 55, 0.25); color: var(--text); }

/* Gold inline link */
.gold-link { color: var(--gold-soft); }
.gold-link:hover { color: var(--gold-light); }


/* ================================================================
   03. TYPOGRAPHY HELPERS
   ================================================================ */

/* Section eyebrow — Inter, small caps label */
.section-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.8rem;
  text-align: center;
  opacity: 0.9;
}

/* Section title — Cinzel, used sparingly */
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.55rem, 4vw, 2.7rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.18;
  margin-bottom: 0.9rem;
  letter-spacing: -0.2px;
}

.gold-text {
  color: var(--gold-soft);
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.3);
}

.section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 400;
  color: var(--text-muted);
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

.gold-rule {
  width: 48px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  margin: 1rem auto 1.5rem;
  opacity: 0.7;
}

.section-header {
  margin-bottom: var(--space-xl);
}


/* ================================================================
   04. IMAGE PLACEHOLDER SYSTEM
   ================================================================ */
.img-placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

/* Gradient fallback — charcoal card tone */
.img-placeholder:not([style*="url("]),
.img-placeholder[style*="url('')"] {
  background-image: none !important;
  background: linear-gradient(140deg, #1a1d22 0%, #1e2228 50%, #161920 100%);
}

/* Label text on placeholder */
.img-placeholder:not([style*="url('"]):not([style*='url("images/']):not([style*='url(images/'])::after,
.img-placeholder[style*="url('')"]::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 1px;
  color: rgba(212, 175, 55, 0.35);
  text-align: center;
  padding: 0.5rem;
  border: 1px dashed rgba(212, 175, 55, 0.15);
  border-radius: inherit;
}

/* Size variants */
.logo-ph          { height: 60px; border-radius: var(--r-xs); }
.hero-logo-ph     { width: 220px; height: 220px; border-radius: 0; background: transparent; }
.footer-logo-ph   { height: 50px; border-radius: var(--r-xs); }
.promo-ph         { height: 240px; border-radius: 0; }
.promo-banner-ph  { height: 260px; border-radius: var(--r-md) var(--r-md) 0 0; }
.provider-ph      { height: 100%; border-radius: var(--r-sm); }
.vip-ph           { width: 100px; height: 100px; border-radius: 50%; }
.pay-ph           { width: 64px; height: 64px; border-radius: var(--r-sm); }
.contact-icon-ph  { width: 80px; height: 80px; border-radius: 50%; }
.footer-social-ph { width: 22px; height: 22px; border-radius: 4px; flex-shrink: 0; }
.float-icon-ph    { width: 100%; height: 100%; border-radius: 50%; }
.mobile-bottom-icon { width: 24px; height: 24px; border-radius: 4px; flex-shrink: 0; }

/* Small contact icons in buttons */
.contact-icon-sm {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}


/* ================================================================
   05. SHIMMER LOADING ANIMATION
   ================================================================ */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}

.shimmer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.05) 40%,
    rgba(212, 175, 55, 0.1) 50%,
    rgba(212, 175, 55, 0.05) 60%,
    transparent 100%
  );
  background-size: 600px 100%;
  animation: shimmer 2.4s infinite linear;
  z-index: 1;
  pointer-events: none;
}

.shimmer.loaded::before { display: none; }


/* ================================================================
   06. BUTTON SYSTEM — app-like, rounded, smooth
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: none;
  white-space: nowrap;
  transition: all var(--t-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn:active { transform: scale(0.97); }

/* Subtle inner ripple on hover */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background var(--t-fast);
  border-radius: inherit;
}

.btn:hover::after { background: rgba(255, 255, 255, 0.05); }

/* ── Primary: gold — cleaner gradient, softer glow ── */
.btn-gold {
  background: linear-gradient(135deg, #C9A227 0%, #D4AF37 45%, #E8C654 80%, #D4AF37 100%);
  color: #0d0c06;
  font-weight: 700;
  box-shadow: 0 2px 14px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255,255,255,0.12);
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.42), inset 0 1px 0 rgba(255,255,255,0.16);
  background: linear-gradient(135deg, #C9A227 0%, #DDB830 45%, #F0CC52 80%, #DDB830 100%);
}

/* ── Secondary: outline ── */
.btn-outline {
  background: transparent;
  color: var(--gold-soft);
  border: 1px solid var(--border-gold);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.07);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 16px var(--gold-glow-sm);
}

/* ── Ghost: subtle app UI ── */
.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Sizes */
.btn-sm  { padding: 0.52rem 1.1rem; font-size: 0.77rem; border-radius: var(--r-xs); }
.btn-lg  { padding: 0.9rem 2rem; font-size: 0.92rem; border-radius: var(--r-sm); }

/* Header-specific small button */
.header-contact-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-sm);
}


/* ================================================================
   07. SECTION LAYOUT & BACKGROUND FX
   ================================================================ */
.section {
  padding: var(--space-2xl) 1.5rem;
  position: relative;
  overflow: hidden;
}

.section-dark  { background: var(--bg-section); }
.section-black { background: var(--bg); }

.container {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Soft marble/depth — uses teal + gold glows instead of pure black/bronze */
.section-bg-marble {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 50%, var(--teal) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 50%, var(--gold-glow-lg) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
}

/* Gold light streak — thinner, more refined */
.section-gold-streak {
  position: absolute;
  z-index: 0;
  width: 1px;
  top: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.08) 30%, transparent 100%);
}

.section-gold-streak.left   { left: 6%; }
.section-gold-streak.right  { right: 6%; }
.section-gold-streak.center { left: 50%; transform: translateX(-50%); opacity: 0.4; }


/* ================================================================
   08. ANNOUNCEMENT BAR
   ================================================================ */
.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 36px;
  background: linear-gradient(90deg, #0e1014 0%, #141720 50%, #0e1014 100%);
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.announce-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  flex-shrink: 0;
}

.announce-track span {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--gold-soft);
  text-transform: uppercase;
  padding: 0 2rem;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.announce-close {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 1rem;
  background: rgba(0,0,0,0.3);
  border: none;
  color: var(--text-dim);
  font-size: 0.65rem;
  transition: color var(--t-fast);
  font-family: 'Inter', sans-serif;
}

.announce-close:hover { color: var(--gold); }


/* ================================================================
   09. HEADER & NAVIGATION
   ================================================================ */
.site-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 900;
  height: 68px;
  background: rgba(17, 19, 21, 0.95);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-base), top var(--t-base);
}

.site-header.scrolled {
  background: rgba(14, 16, 18, 0.98);
  top: 0;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
}

/* ── Single row: [LOGO] [NAV...] [CTA buttons] [hamburger] ── */
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 68px;
  padding: 0 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}

/* Logo — pinned left, does not grow */
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  flex-grow: 0;
  margin-right: 1rem;
}

.logo-img-box {
  width: 190px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  flex-shrink: 0;
}

.logo-img-box img,
.logo-img-box .img-placeholder {
  width: 185px;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  display: block;
  background: transparent;
  /* Lift logo slightly to optically compensate for Chinese text at bottom */
  transform: translateY(-2px);
}

/* Nav — grows to fill middle space */
.header-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex: 1;
  flex-wrap: nowrap;
  min-width: 0;
  margin: 0 auto;
}

.header-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--text-label);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t-fast);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold-soft);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-base);
}

.header-nav a:hover { color: var(--text); }
.header-nav a:hover::after,
.header-nav a.active::after { transform: scaleX(1); }
.header-nav a.active { color: var(--gold-soft); }

/* Header CTA */
.header-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-muted);
  border-radius: 1px;
  transition: transform var(--t-base), opacity var(--t-fast), background var(--t-fast);
}

.hamburger:hover span { background: var(--gold); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ================================================================
   10. MOBILE MENU
   ================================================================ */
.mobile-menu {
  position: fixed;
  top: 106px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 850;
  background: rgba(14, 16, 18, 0.98);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  transform: translateX(100%);
  transition: transform var(--t-slow);
  overflow-y: auto;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.mobile-nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t-fast);
}

.mobile-nav-link:hover { color: var(--text); }

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-top: 2rem;
}

.mobile-menu-cta .btn { width: 100%; justify-content: center; }


/* ================================================================
   11. HERO SECTION
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background hero image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  background-color: #0d0f12;
}

.hero-bg-img:not([style*="url('"]) {
  background-image:
    radial-gradient(ellipse 120% 70% at 70% 100%, rgba(0, 200, 155, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 10% 40%, rgba(212, 175, 55, 0.05) 0%, transparent 55%),
    linear-gradient(160deg, #0d1014 0%, #111315 50%, #0f1215 100%);
}

/* Overlay — smoother, less harsh than pure black */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(13, 15, 18, 0.94) 0%,
    rgba(13, 15, 18, 0.80) 42%,
    rgba(13, 15, 18, 0.58) 65%,
    rgba(13, 15, 18, 0.82) 100%
  );
}

/* Diagonal light streaks */
.hero-streaks {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(130deg, transparent 28%, rgba(212, 175, 55, 0.03) 48%, transparent 68%),
    linear-gradient(50deg, transparent 38%, rgba(0, 200, 155, 0.025) 55%, transparent 72%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* LEFT */
.hero-left { display: flex; flex-direction: column; align-items: flex-start; }

.hero-logo-wrap {
  width: 220px;
  height: 220px;
  margin-bottom: 1.8rem;
  /* No border, no ring, no shadow, no background — logo displays as-is */
  background: transparent;
  flex-shrink: 0;
}

.hero-logo-wrap .hero-logo-ph,
.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

.hero-brand-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 0.85;
}

.hero-brand-tag::before, .hero-brand-tag::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold-dim);
}

/* Hero title — Cinzel only here */
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.1rem;
  letter-spacing: -0.5px;
}

/* Hero subtitle — Inter */
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Trust badge strip */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
}

.trust-item { text-align: center; }

.trust-num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1.2;
}

.trust-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 2px;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

/* RIGHT: Hero promo card */
.hero-right {
  display: flex;
  flex-direction: column;
  animation: heroSlideIn 0.9s var(--ease-out) 0.15s both;
}

@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-promo-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.9;
}

.hero-promo-label::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e05a4b;
  box-shadow: 0 0 8px rgba(224, 90, 75, 0.7);
  animation: pulseDot 1.6s ease infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.65; }
}

.hero-promo-card {
  background: rgba(22, 25, 30, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 30px rgba(212, 175, 55, 0.07);
  backdrop-filter: blur(12px);
}

.hero-promo-img-wrap {
  position: relative;
  /* No fixed height — let image determine its own height naturally */
  overflow: hidden;
  line-height: 0; /* removes gap under img */
}

.hero-promo-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-promo-img-wrap .img-placeholder {
  height: 220px;
  width: 100%;
}

.promo-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: linear-gradient(135deg, #C9A227, #D4AF37);
  color: #0d0c06;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: var(--r-xs);
  z-index: 2;
}

.hero-promo-body { padding: 0.8rem 1.4rem 1.1rem; }

.promo-amount-display {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.3);
}

.promo-currency {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: 0.3rem;
  display: inline-block;
}

.promo-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.7rem;
}

.promo-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.promo-card-actions {
  display: flex;
  gap: 0.6rem;
}


/* ================================================================
   12. PROMOTIONS SECTION
   ================================================================ */
.promos-scroll-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.promos-scroll-wrap::-webkit-scrollbar { display: none; }

.promos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  min-width: 300px;
}

/* Promo card — app-style dark surface */
.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}

.promo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow:
    0 0 32px rgba(212, 175, 55, 0.1),
    0 0 0 1px rgba(0, 200, 155, 0.04) inset,
    0 12px 40px rgba(0, 0, 0, 0.5);
}

.promo-card-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}

.promo-card-img-wrap .img-placeholder {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.promo-card:hover .promo-card-img-wrap .img-placeholder {
  transform: scale(1.03);
}

/* Tag overlay on image */
.promo-overlay-tag {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(17, 19, 21, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.24rem 0.65rem;
  border-radius: var(--r-xs);
  z-index: 2;
  backdrop-filter: blur(8px);
}

.promo-overlay-tag.hot  { background: rgba(192, 57, 43, 0.8); border-color: rgba(192, 57, 43, 0.4); color: #fff; }
.promo-overlay-tag.vip  { background: rgba(212, 175, 55, 0.85); border-color: var(--gold); color: #0d0c06; }

/* Card body */
.promo-card-body {
  padding: 1.3rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Category pill — Inter, softer */
.promo-pill {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-label);
  padding: 0.2rem 0.72rem;
  border-radius: var(--r-pill);
  margin-bottom: 0.7rem;
  width: fit-content;
}

.promo-pill.fire { background: rgba(192, 57, 43, 0.1); border-color: rgba(192, 57, 43, 0.3); color: #e07070; }
.promo-pill.vip  { background: rgba(212, 175, 55, 0.08); border-color: rgba(212, 175, 55, 0.3); color: var(--gold-soft); }

.promo-card-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.promo-card-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.2rem;
  line-height: 1.65;
}

.promo-card-footer {
  display: flex;
  gap: 0.55rem;
}

.promo-card-footer .btn { flex: 1; }


/* ================================================================
   13. GAME PROVIDERS SECTION
   ================================================================ */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* Provider card — app surface feel */
.provider-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.2rem 1.3rem;
  text-align: center;
  transition: all var(--t-base);
  cursor: default;
}

.provider-card:hover {
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow:
    0 0 0 1px var(--teal-border) inset,
    0 8px 28px rgba(0, 0, 0, 0.4),
    0 0 20px var(--teal-glow);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
}

.provider-logo-wrap {
  height: 88px;
  margin-bottom: 0.9rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: linear-gradient(140deg, #1a1d22, #1e2228);
}

.provider-logo-wrap .img-placeholder {
  height: 100%;
  border-radius: 0;
}

.provider-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.provider-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

/* Game category tabs */
.game-cats-strip {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  flex-wrap: wrap;
}

.game-cat {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.48rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  color: var(--text-label);
  cursor: pointer;
  transition: all var(--t-base);
  background: rgba(255, 255, 255, 0.03);
}

.game-cat:hover {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.game-cat.active {
  background: linear-gradient(135deg, #C9A227, #D4AF37);
  color: #0d0c06;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.25);
}


/* ================================================================
   14. VIP SECTION
   ================================================================ */
.vip-scroll-outer {
  overflow-x: auto;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.2) transparent;
}

.vip-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(185px, 1fr));
  gap: 1rem;
  min-width: 960px;
}

.vip-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.8rem 1.1rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--t-base);
}

.vip-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--tier-color);
  opacity: 0.8;
}

.vip-tier-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50px;
  background: var(--tier-glow);
  opacity: 0.3;
  filter: blur(16px);
  z-index: 0;
  transition: opacity var(--t-base);
}

.vip-card:hover .vip-tier-glow { opacity: 0.7; }

.vip-card:hover {
  transform: translateY(-4px);
  border-color: var(--tier-color);
  box-shadow: 0 0 24px var(--tier-glow), 0 10px 32px rgba(0, 0, 0, 0.55);
  background: var(--bg-card-hover);
}

/* Tier colors */
.vip-bronze   { --tier-color: #CD7F32; --tier-glow: rgba(205, 127, 50, 0.25); }
.vip-silver   { --tier-color: #B0B8C4; --tier-glow: rgba(176, 184, 196, 0.18); }
.vip-gold     { --tier-color: var(--gold-soft); --tier-glow: var(--gold-glow); }
.vip-platinum { --tier-color: #D8DDE5; --tier-glow: rgba(216, 221, 229, 0.18); }
.vip-diamond  { --tier-color: #90D5F0; --tier-glow: rgba(144, 213, 240, 0.22); }
.vip-elite    { --tier-color: #DDA0D8; --tier-glow: rgba(221, 160, 216, 0.22); }

.vip-badge-featured {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--gold-soft);
  color: #0d0c06;
  font-family: 'Inter', sans-serif;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.18rem 0.5rem;
  border-radius: var(--r-xs);
  z-index: 3;
}

.vip-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.9rem;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  border: 1.5px solid var(--tier-color);
  box-shadow: 0 0 14px var(--tier-glow);
  overflow: hidden;
  background: #1a1d22;
}

.vip-icon-wrap .vip-ph {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.vip-tier-label {
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tier-color);
  margin-bottom: 0.35rem;
  position: relative;
  z-index: 1;
}

.vip-deposit-range {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--text-dim);
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}

.vip-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 0.9rem;
}

.vip-perks {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}

.vip-perks li {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 400;
  color: var(--text-muted);
  padding-left: 0.9rem;
  position: relative;
  line-height: 1.5;
}

.vip-perks li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--tier-color);
  font-size: 0.9rem;
  line-height: 1.2;
  opacity: 0.8;
}

/* CTA strip */
.vip-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.3rem 1.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.vip-cta-strip p {
  font-family: 'Inter', sans-serif;
  font-size: 0.87rem;
  color: var(--text-muted);
}


/* ================================================================
   15. PAYMENT METHODS
   ================================================================ */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--t-base);
}

.payment-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  background: var(--bg-card-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.payment-icon-box {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(140deg, #1a1d22, #1e2228);
}

.payment-icon-box .pay-ph {
  width: 48px;
  height: 48px;
}

.payment-info { flex: 1; min-width: 0; }

.payment-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.payment-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.payment-speed {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.18rem 0.58rem;
  border-radius: var(--r-pill);
  flex-shrink: 0;
}

.payment-speed.instant {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.25);
  color: #3dd68c;
}

.payment-speed.fast {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-soft);
}

.payment-notice {
  margin-top: 1.8rem;
  padding: 0.95rem 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-label);
}


/* ================================================================
   16. TESTIMONIALS
   ================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: all var(--t-base);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.8rem;
  left: 1.4rem;
  font-family: 'Georgia', serif;
  font-size: 5.5rem;
  color: var(--gold-soft);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 0 24px var(--gold-glow-sm), 0 10px 30px rgba(0, 0, 0, 0.4);
  background: var(--bg-card-hover);
}

/* CSS-only star shapes */
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.1rem;
}

.testimonial-stars span {
  display: block;
  width: 13px;
  height: 13px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background: var(--gold-soft);
  opacity: 0.85;
}

.testimonial-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.87rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-initials {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0d0c06;
  flex-shrink: 0;
}

.author-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-soft);
}

.author-tier {
  font-family: 'Inter', sans-serif;
  font-size: 0.69rem;
  font-weight: 400;
  color: var(--text-dim);
}


/* ================================================================
   17. FAQ ACCORDION
   ================================================================ */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--t-fast);
}

.faq-q:hover { color: var(--gold-soft); }
.faq-q[aria-expanded="true"] { color: var(--gold-soft); }

.faq-icon-box {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--t-fast), transform var(--t-base);
}

.faq-q[aria-expanded="true"] .faq-icon-box {
  border-color: var(--gold-soft);
  transform: rotate(45deg);
}

.faq-plus {
  display: block;
  width: 10px;
  height: 10px;
  position: relative;
}

.faq-plus::before, .faq-plus::after {
  content: '';
  position: absolute;
  background: var(--gold-soft);
  border-radius: 1px;
}

.faq-plus::before { width: 10px; height: 1.5px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-plus::after  { height: 10px; width: 1.5px; left: 50%; top: 0; transform: translateX(-50%); }

.faq-a {
  overflow: hidden;
  transition: max-height 0.36s var(--ease-out);
  max-height: 0;
}

.faq-a:not([hidden]) { max-height: 280px; }
.faq-a[hidden] { max-height: 0; display: block !important; }

.faq-a p {
  padding-bottom: 1.3rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.87rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.78;
}


/* ================================================================
   18. CONTACT SECTION
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  max-width: 740px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.8rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
  transition: all var(--t-base);
}

.contact-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-gold-lg);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.contact-card-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 0 16px var(--gold-glow-sm);
  background: #1a1d22;
}

.contact-card-icon-wrap .contact-icon-ph {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.contact-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.contact-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 250px;
  line-height: 1.65;
}

.contact-response-time {
  font-family: 'Inter', sans-serif;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-dim);
}


/* ================================================================
   19. FOOTER
   ================================================================ */
.site-footer { background: #0d0f12; }

.footer-top {
  border-top: 1px solid var(--border);
  padding: 3.5rem 1.5rem 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-logo-box {
  height: 44px;
  width: 148px;
  margin-bottom: 1.1rem;
  position: relative;
  overflow: hidden;
}

.footer-logo-box .footer-logo-ph {
  height: 44px;
  width: 148px;
  object-fit: contain;
  border-radius: 0;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-label);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  max-width: 310px;
}

.footer-socials { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.95rem;
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  transition: all var(--t-base);
  border: 1px solid;
}

.footer-social-btn.wa {
  background: rgba(37, 211, 102, 0.07);
  color: #3dcc7a;
  border-color: rgba(37, 211, 102, 0.18);
}

.footer-social-btn.wa:hover { background: rgba(37, 211, 102, 0.14); }

.footer-social-btn.tg {
  background: rgba(34, 158, 217, 0.07);
  color: #5eb8e8;
  border-color: rgba(34, 158, 217, 0.18);
}

.footer-social-btn.tg:hover { background: rgba(34, 158, 217, 0.14); }

/* Footer col title — Inter instead of Cinzel */
.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-label);
  margin-bottom: 1.1rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-label);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: color var(--t-fast);
}

.footer-links a::before {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-dim);
  flex-shrink: 0;
  opacity: 0.6;
}

.footer-links a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.4rem 1.5rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1160px;
  margin: 0 auto;
}

.responsible-gaming {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.5;
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-dim);
  white-space: nowrap;
}


/* ================================================================
   20. FLOATING CONTACT BUTTONS
   ================================================================ */
.float-btns {
  position: fixed;
  right: 1.5rem;
  bottom: 2rem;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: bottom var(--t-base);
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  display: block;
  border: none;
}

.float-btn:hover { transform: scale(1.1); }

.float-wa { box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3); }
.float-tg { box-shadow: 0 4px 18px rgba(34, 158, 217, 0.3); }

@media (max-width: 768px) {
  .float-btns { display: none; }
}


/* ================================================================
   21. MOBILE STICKY BOTTOM BAR
   ================================================================ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  height: 66px;
  background: rgba(13, 15, 18, 0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
  padding: 0 1rem;
  padding-bottom: env(safe-area-inset-bottom);
  gap: 0.7rem;
  align-items: center;
}

.mobile-bottom-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 44px;
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  transition: opacity 0.14s;
}

.mobile-bottom-btn:active { opacity: 0.72; }

.mobile-bottom-btn.wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 3px 14px rgba(37, 211, 102, 0.3);
}

.mobile-bottom-btn.tg {
  background: #229ed9;
  color: #fff;
  box-shadow: 0 3px 14px rgba(34, 158, 217, 0.3);
}

body.has-mobile-bar { padding-bottom: 66px; }


/* ================================================================
   22. SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ================================================================
   23. RESPONSIVE — TABLET (max 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .hero-left { align-items: center; text-align: center; }
  .hero-brand-tag { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-title { text-align: center; }
  .hero-sub { text-align: center; }
  .hero-trust { justify-content: center; flex-wrap: wrap; }

  .hero-right { max-width: 560px; margin: 0 auto; }

  .promos-grid        { grid-template-columns: repeat(2, 1fr); }
  .providers-grid     { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
  .payment-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-inner       { grid-template-columns: 1fr 1fr; }
}


/* ================================================================
   24. RESPONSIVE — MOBILE (max 768px)
   Compatible: iPhone 12 (390px), iPhone 17 Pro Max (430px),
               Android large (412px), Android standard (360px)
   ================================================================ */
@media (max-width: 768px) {
  :root {
    --space-2xl: 3.5rem;
    --space-xl:  2.5rem;
  }

  /* ── Mobile bottom bar ── */
  .mobile-bottom-bar { display: flex; }
  body { padding-bottom: 66px; }

  /* ── Header ── */
  .header-nav  { display: none; }
  .header-cta  { display: none; }
  .hamburger   { display: flex; }
  .site-header { height: 60px; top: 36px; }
  .header-inner {
    padding: 0 1rem;
    gap: 0;
    justify-content: space-between;
  }
  .header-logo { margin-right: 0; }
  @media (max-width: 768px) {
  .header-inner {
    padding-left: 0.45rem;
    padding-right: 1rem;
  }

  .logo-img-box {
    margin-left: -18px;
  }
}
  .logo-img-box { width: 155px; height: 60px; }
  .logo-img-box img,
  .logo-img-box .img-placeholder { width: 153px; max-height: 60px; }

  /* ── Mobile menu position ── */
  .mobile-menu { top: 96px; }
  .site-header.scrolled { top: 0; }
  .site-header.scrolled + .mobile-menu { top: 60px; }

  /* ── Hero ── */
  .hero {
    padding-top: 100px;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 3rem;
    min-height: auto;
    align-items: flex-start;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
  }

  .hero-left {
    align-items: center;
    text-align: center;
  }

  .hero-logo-wrap {
    width: 130px;
    height: 130px;
    margin-bottom: 1.2rem;
  }

  .hero-brand-tag { justify-content: center; font-size: 0.55rem; }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    text-align: center;
    margin-bottom: 0.8rem;
  }

  .hero-sub {
    font-size: 0.88rem;
    text-align: center;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
    min-height: 48px; /* thumb-friendly */
  }

  .hero-trust {
    padding: 0.8rem 1rem;
    gap: 0.6rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .trust-num { font-size: 0.9rem; }
  .trust-label { font-size: 0.55rem; }
  .trust-divider { height: 20px; }

  .hero-right {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-promo-card { border-radius: var(--r-lg); }
  .hero-promo-body { padding: 0.7rem 1rem 1rem; }

  /* ── Promotions — horizontal swipe cards ── */
  .promos-scroll-wrap {
    margin: 0 -1rem;
    padding: 0 1rem 0.5rem;
  }

  .promos-grid {
    grid-template-columns: repeat(6, 240px);
    gap: 0.8rem;
  }

  .promo-card-img-wrap { height: 170px; }

  .promo-card-body { padding: 1rem 1.1rem 1.2rem; }

  .promo-card-footer { flex-direction: column; gap: 0.5rem; }
  .promo-card-footer .btn { width: 100%; min-height: 44px; }

  /* ── Game providers ── */
  .providers-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .provider-logo-wrap { height: 72px; }
  .provider-card { padding: 1.1rem 0.9rem 1rem; }

  /* ── VIP ── */
  .vip-cta-strip {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
  }

  .vip-cta-strip .btn { width: 100%; min-height: 48px; }

  /* ── Payments ── */
  .payment-grid { grid-template-columns: 1fr; gap: 0.7rem; }
  .payment-card { padding: 0.9rem 1rem; min-height: 64px; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* ── Contact ── */
  .contact-grid { grid-template-columns: 1fr; gap: 1rem; }
  .contact-card { padding: 2rem 1.5rem; }
  .contact-card .btn { width: 100%; justify-content: center; min-height: 48px; }

  /* ── Section padding ── */
  .section { padding: var(--space-2xl) 1rem; }

  /* ── Section titles ── */
  .section-title { font-size: clamp(1.4rem, 6vw, 2rem); }

  /* ── Footer ── */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { padding: 2.5rem 1rem 2rem; }
  .footer-bottom { padding: 1.2rem 1rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.6rem; }
  .footer-logo-box { height: 40px; width: 130px; }
  .footer-tagline { font-size: 0.78rem; }

  /* ── FAQ ── */
  .faq-wrap { max-width: 100%; }
  .faq-q { font-size: 0.88rem; padding: 1.1rem 0; }

  /* ── VIP perks readability ── */
  .vip-perks li { font-size: 0.72rem; }
}


/* ================================================================
   25. RESPONSIVE — SMALL MOBILE (max 430px)
   iPhone 17 Pro Max safe zone, Android 412px
   ================================================================ */
@media (max-width: 430px) {
  .hero-logo-wrap { width: 110px; height: 110px; }
  .hero-title { font-size: clamp(1.6rem, 7.5vw, 2.2rem); }

  .promos-grid { grid-template-columns: repeat(6, 220px); }

  .announce-track span { font-size: 0.6rem; letter-spacing: 1px; }

  .trust-item { min-width: 50px; }
}


/* ================================================================
   26. RESPONSIVE — EXTRA SMALL (max 390px)
   iPhone 12 / 13 / 14 standard (390px)
   ================================================================ */
@media (max-width: 390px) {
  .hero-logo-wrap { width: 100px; height: 100px; }
  .hero-title { font-size: 1.55rem; }
  .hero-sub { font-size: 0.83rem; }

  .promos-grid { grid-template-columns: repeat(6, 200px); }

  .header-inner { padding: 0 0.8rem; }
  .logo-img-box { width: 120px; }
  .logo-img-box img { width: 118px; }

  .section { padding: 3rem 0.8rem; }

  .payment-name { font-size: 0.8rem; }
  .payment-note { font-size: 0.65rem; }

  .hero-promo-body { padding: 0.6rem 0.9rem 0.9rem; }
  .promo-amount-display { font-size: 1.7rem; }

  .vip-grid { grid-template-columns: repeat(6, minmax(160px, 1fr)); }

  .footer-socials { flex-direction: column; }
  .footer-social-btn { width: 100%; justify-content: center; }

  .contact-card { padding: 1.5rem 1rem; }

  .responsible-gaming { font-size: 0.65rem; }
  .footer-copy { font-size: 0.65rem; }
}


/* ================================================================
   SAFE AREA INSETS (iPhone notch / Dynamic Island support)
   ================================================================ */
@supports (padding: max(0px)) {
  .site-header {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .mobile-bottom-bar {
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
    height: calc(66px + env(safe-area-inset-bottom));
  }

  body.has-mobile-bar {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .hero {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
}


/* ================================================================
   TOUCH — improve tap experience
   ================================================================ */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects on touch devices */
  .promo-card:hover { transform: none; }
  .provider-card:hover { transform: none; }
  .payment-card:hover { transform: none; }
  .testimonial-card:hover { box-shadow: none; }
  .contact-card:hover { transform: none; }
  .vip-card:hover { transform: none; }

  /* Larger touch targets */
  .btn { min-height: 44px; }
  .btn-sm { min-height: 40px; }
  .faq-q { min-height: 52px; }
  .mobile-nav-link { min-height: 52px; display: flex; align-items: center; }
  .game-cat { min-height: 40px; }
  .footer-links a { min-height: 36px; }

  /* Active states instead of hover */
  .promo-card:active { transform: scale(0.98); }
  .btn:active { transform: scale(0.96); opacity: 0.9; }
  .float-btn:active { transform: scale(0.92); }
}