/* template:uw99id */
/**
 * uw99id — — slimmed monolith (listing + form unified groups).
 * Defaults live in :root so merchant token overrides (later in bundle) win.
 * Motion: single prefers-reduced-motion block at file end.
 * Breakpoints (rem only): 36 / 40 / 48 / 56 / 64 / 80.
 */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap");

/* =============================================================================
   1. Tokens
   ============================================================================= */
:root {
  /* Theme */
  --color-primary: #efbc15;
  --color-accent: #ffc300;
  --color-surface: #13131C;
  --color-text: #ffffff;
  --color-text-sec: #b3bec1;
  --color-background: #0B0B0B;
  --color-background-sec: #181823;

  /* Dark Theme */
  --color-dark-1: #000000;
  --color-dark-2: #13131C;
  --color-dark-3: #323738;
  --color-dark-4: #3a3e49;
  --color-dark-5: #242938;
  --color-dark-6: #0f0f13;
  --color-dark-7: #4a5354;
  --color-dark-8: #1e2121;
  --color-dark-9: #b3bec1;
  --color-dark-10: #b0b9b9;
  --color-dark-11: #1F1F27;
  --color-dark-12: #181823;
  --color-dark-13: #9A9BAA;
  --color-border: linear-gradient(90deg, #3E3E3E 0%, #1A1D2D 100%);

  /* Light Theme */
  --color-light-1: #f1f2f3;
  --color-light-2: #ffffff;
  --color-light-3: #f9f9f9;
  --color-light-4: #f1f2f3;
  --color-light-5: #e4e6e6;
  --color-light-6: #59647f;
  --color-light-7: #171a1a;
  --color-light-8: #fbfbfb;
  --color-light-9: #000000;
  --color-light-10: #5f6d6d;
  --color-light-11: #aaaaaa;
  --color-border-light: #efefef;

  --color-text-strong: #fafafa;
  --color-text-muted: #8c8c8c;
  --color-container-bg: linear-gradient(180deg, #151515 60%, rgb(36 37 44) 90%);
  --color-highlight: #fde047;
  --color-on-primary: #fff;
  --color-success: #22c55e;
  --color-error: #ef4444;
  --color-live: #22c55e;

  /* Other Css */
  --font-heading: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --font-body: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --font-size-base: 17px;
  --space-unit: 9px;
  --radius-base: 14px;
  --border-width: 1px;
  --shadow-sm: 0 4px 24px color-mix(in srgb, var(--color-accent) 22%, transparent);
  --container-max-w: 76rem;
  --prose-line-height: 1.72;
  --table-header-bg: color-mix(in srgb, var(--color-primary) 18%, var(--color-surface));
  --table-border: color-mix(in srgb, var(--color-accent) 35%, var(--color-surface));
  --list-marker-color: var(--color-accent);
  --list-gap: 0.55rem;
  --casino-bg-image: url("https://images.unsplash.com/photo-1596838132738-32404f177bef?auto=format&fit=crop&w=1920&q=80");
  --casino-bg-overlay: linear-gradient(
    165deg,
    color-mix(in srgb, var(--color-surface) 88%, transparent) 0%,
    color-mix(in srgb, var(--color-primary) 12%, var(--color-surface)) 45%,
    color-mix(in srgb, var(--color-surface) 94%, transparent) 100%
  );
  --casino-neon-glow: 0 0 28px color-mix(in srgb, var(--color-primary) 55%, transparent);
  --token-primary: var(--color-primary);
  --token-accent: var(--color-accent);
  --token-surface: var(--color-surface);
  --token-background: var(--color-background);
  --token-highlight: var(--color-highlight);
  --shell-stack-site-header: 1000;
  --shell-stack-hero-base: 0;
  --shell-stack-nav-flyout: 100;
  /* Form tokens */
  --form-field-height: 48px;
  --form-field-height-sm: 44px;
  --form-radius: var(--radius-base);
  --form-border: color-mix(in srgb, var(--color-text) 22%, transparent);
  --form-border-focus: color-mix(in srgb, var(--color-accent) 62%, var(--color-text));
  --form-bg: color-mix(in srgb, var(--color-surface) 58%, transparent);
  --form-focus-ring: 0 0 0 3px color-mix(in srgb, var(--color-accent) 35%, transparent);
  --form-gap: calc(var(--space-unit) * 1.15);
  /* Button tokens */
  --btn-height: var(--form-field-height);
  --btn-height-sm: var(--form-field-height-sm);
  --btn-radius: var(--radius-base);
  --btn-radius-pill: 999px;
  --btn-pad-y: calc(var(--space-unit) * 1.35);
  --btn-pad-x: calc(var(--space-unit) * 2.5);
  --btn-font-weight: 600;
  --btn-transition: filter 160ms ease, transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  --btn-primary-bg: linear-gradient(
    160deg,
    color-mix(in srgb, var(--color-primary) 85%, white),
    color-mix(in srgb, var(--color-primary) 55%, var(--color-surface))
  );
  --btn-primary-border: color-mix(in srgb, var(--color-primary) 40%, var(--color-accent));
  --btn-accent-bg: linear-gradient(135deg, var(--color-accent), color-mix(in srgb, var(--color-primary) 55%, var(--color-accent)));
  --btn-ghost-bg: color-mix(in srgb, var(--color-primary) 8%, var(--color-surface));
  --btn-ghost-border: color-mix(in srgb, var(--color-primary) 45%, transparent);
  --btn-secondary-bg: color-mix(in srgb, var(--color-accent) 11%, transparent);
  --btn-secondary-border: color-mix(in srgb, var(--color-accent) 38%, transparent);
  /* Listing tokens (also set on .m-template-casino-blue for cascade) */
  --listing-gap-sm: calc(var(--space-unit) * 1);
  --listing-gap-md: calc(var(--space-unit) * 1.35);
  --listing-gap-lg: calc(var(--space-unit) * 1.65);
  --listing-border: color-mix(in srgb, var(--color-accent) 14%, var(--table-border));
  --listing-border-accent: color-mix(in srgb, var(--color-accent) 18%, var(--table-border));
  --listing-border-soft: color-mix(in srgb, var(--color-accent) 12%, var(--table-border));
  --listing-border-hover: color-mix(in srgb, var(--color-primary) 38%, transparent);
  --listing-surface: color-mix(in srgb, var(--color-surface) 92%, transparent);
  --listing-surface-elevated: color-mix(in srgb, var(--color-surface) 93%, transparent);
  --listing-transition-shell: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  --listing-transition-shell-flat: border-color 200ms ease, box-shadow 200ms ease;
  --listing-hover-lift: translateY(-2px);
  --listing-shadow-card: 0 1px 0 color-mix(in srgb, var(--color-accent) 14%, transparent),
    0 4px 20px color-mix(in srgb, var(--color-primary) 10%, transparent);
  --listing-shadow-card-hover: 0 1px 0 color-mix(in srgb, var(--color-accent) 22%, transparent),
    0 12px 36px color-mix(in srgb, var(--color-primary) 16%, transparent);
  --listing-ring-focus: 2px solid color-mix(in srgb, var(--color-primary) 70%, transparent);
  --listing-grid-min-sm: 10rem;
  --listing-grid-min-md: 14rem;
  --listing-grid-min-lg: 18rem;
}

@keyframes casino-shimmer {
  0% {
    opacity: 0.35;
    transform: translate3d(-8%, 0, 0);
  }
  50% {
    opacity: 0.55;
    transform: translate3d(8%, 0, 0);
  }
  100% {
    opacity: 0.35;
    transform: translate3d(-8%, 0, 0);
  }
}

@keyframes casino-spotlight {
  0% {
    background-position: 12% 20%, 88% 80%;
  }
  50% {
    background-position: 52% 40%, 48% 60%;
  }
  100% {
    background-position: 12% 20%, 88% 80%;
  }
}

@keyframes m-hub-intro-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sf-contact-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================================================
   2. Base + utilities
   ============================================================================= */
body.m-template-uw99id {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background-color: var(--color-background);
  position: relative;
  isolation: isolate;
}

body.m-template-uw99id::before {
  content: "";
}

body.m-template-uw99id::after {
  content: "";
}

.m-template-uw99id #main-content {
  position: relative;
  max-width: var(--container-max-w);
  margin-inline: auto;
  padding-top: calc(var(--space-unit) * 3);
  padding-bottom: calc(var(--space-unit) * 3);
  padding-left: max(calc(var(--space-unit) * 3), env(safe-area-inset-left, 0px));
  padding-right: max(calc(var(--space-unit) * 3), env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

.m-template-uw99id #main-content::before {
  content: "";
  position: absolute;
  inset: calc(var(--space-unit) * -1);
  border-radius: calc(var(--radius-base) + 6px);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--color-accent) 55%, transparent),
    color-mix(in srgb, var(--color-primary) 45%, transparent),
    color-mix(in srgb, var(--color-accent) 40%, transparent)
  );
  opacity: 0.35;
  z-index: -1;
  filter: blur(12px);
}

.m-template-uw99id #page-title,
.m-template-uw99id .c-page h1,
.m-template-uw99id .prose h1 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  text-shadow: var(--casino-neon-glow), 0 2px 0 color-mix(in srgb, var(--color-surface) 80%, transparent);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.m-template-uw99id .prose h2,
.m-template-uw99id .prose h3 {
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--color-text) 92%, var(--color-accent));
}

.m-template-uw99id #main-content article.c-page,
.m-template-uw99id .c-page.prose {
  background: color-mix(in srgb, var(--color-surface) 72%, transparent);
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 42%, transparent);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-sm), inset 0 1px 0 color-mix(in srgb, var(--color-text) 12%, transparent);
  padding: calc(var(--space-unit) * 3);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}

@media (max-width: 36rem) {
  .m-template-uw99id #main-content article.c-page,
  .m-template-uw99id .c-page.prose {
    padding-left: calc(var(--space-unit) * 3.25);
    padding-right: calc(var(--space-unit) * 3.25);
  }
}

.m-template-uw99id article.c-page.prose,
.m-template-uw99id .prose {
  color: var(--color-text);
  --prose-links: var(--color-primary);
  --prose-headings: var(--color-text);
  --prose-borders: var(--table-border);
  line-height: var(--prose-line-height);
}

.m-template-uw99id .prose :where(p, li, td, th, blockquote, span) {
  color: color-mix(in srgb, var(--color-text) 94%, var(--color-surface));
}

.m-template-uw99id .prose :where(h1, h2, h3, h4) { color: var(--color-text); }

.m-template-uw99id .prose a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.m-template-uw99id .prose a:hover {
  color: color-mix(in srgb, var(--color-primary) 70%, white);
  text-shadow: var(--casino-neon-glow);
}

.m-template-uw99id .prose img {
  max-width: 100%;
  height: auto;
  border-radius: calc(var(--radius-base) - 4px);
  box-shadow: var(--shadow-sm);
}

.m-template-uw99id .prose blockquote {
  border-left: 4px solid var(--color-accent);
  background: color-mix(in srgb, var(--color-primary) 8%, var(--color-surface));
  padding: calc(var(--space-unit) * 1.5) calc(var(--space-unit) * 2);
  border-radius: 0 var(--radius-base) var(--radius-base) 0;
}

.m-template-uw99id .prose table { border-collapse: collapse; width: 100%; }
.m-template-uw99id .prose th {
  background: var(--table-header-bg);
  border: var(--border-width) solid var(--table-border);
  padding: calc(var(--space-unit) * 1.2);
}
.m-template-uw99id .prose td {
  border: var(--border-width) solid var(--table-border);
  padding: calc(var(--space-unit) * 1);
}

.m-template-uw99id .min-touch {
  min-height: 44px;
  min-width: 44px;
}

/* Single visually-hidden / sr-only / skip-link */
.m-template-uw99id .sr-only,
.m-template-uw99id .visually-hidden,
.m-template-uw99id .lv2-visually-hidden,
.m-template-uw99id .m-livescore-announce,
.m-template-uw99id .m-product-detail__visually-hidden,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  left: var(--space-unit);
  top: var(--space-unit);
  z-index: 9999;
  width: auto;
  height: auto;
  margin: 0;
  padding: calc(var(--space-unit) * 2) calc(var(--space-unit) * 3);
  clip-path: none;
  overflow: visible;
  white-space: normal;
  background: var(--color-surface);
  color: var(--color-text);
  border-radius: var(--radius-base);
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  box-shadow: var(--shadow-sm);
}

/* =============================================================================
   4. Unified Listing group
   ============================================================================= */
.m-template-uw99id .m-listing-grid {
  display: grid;
  gap: var(--listing-gap-md);
  grid-template-columns: repeat(auto-fill, minmax(var(--listing-grid-min-md), 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.m-template-uw99id .m-listing-grid--sm {
  grid-template-columns: repeat(auto-fill, minmax(var(--listing-grid-min-sm), 1fr));
  gap: var(--listing-gap-sm);
}

.m-template-uw99id .m-listing-grid--lg {
  grid-template-columns: repeat(auto-fill, minmax(var(--listing-grid-min-lg), 1fr));
  gap: var(--listing-gap-lg);
}

/* Shared media + card body */
.m-template-uw99id .m-card__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-base);
  background: color-mix(in srgb, var(--color-surface) 90%, var(--color-primary) 10%);
  aspect-ratio: 4 / 3;
}

.m-template-uw99id .m-card__media--empty {
  display: block;
  width: 100%;
  min-height: 8rem;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--color-primary) 8%, var(--color-surface)),
    color-mix(in srgb, var(--color-accent) 12%, var(--color-surface))
  );
}

.m-template-uw99id .m-card__media--has-img { aspect-ratio: 4 / 3; }
.m-template-uw99id .m-card__media--ratio-16-9,
.m-template-uw99id .m-card__media--ratio-16-9.m-card__media--has-img { aspect-ratio: 16 / 9; }
.m-template-uw99id .m-card__media--ratio-1-1,
.m-template-uw99id .m-card__media--ratio-1-1.m-card__media--has-img { aspect-ratio: 1 / 1; }

.m-template-uw99id .m-card__media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.m-template-uw99id a:hover .m-card__media-img,
.m-template-uw99id a:focus-visible .m-card__media-img,
.m-template-uw99id a:hover .m-gallery__img,
.m-template-uw99id a:focus-visible .m-gallery__img {
  transform: scale(1.03);
}

.m-template-uw99id .m-card__body {
  padding: calc(var(--space-unit) * 1.25) calc(var(--space-unit) * 1.5) calc(var(--space-unit) * 1.5);
}

.m-template-uw99id .m-card__title {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.35;
}

.m-template-uw99id .m-card__price {
  margin: calc(var(--space-unit) * 0.75) 0 0;
  font-weight: 600;
  color: color-mix(in srgb, var(--color-accent) 70%, var(--color-text));
}

.m-template-uw99id .m-card__price-was {
  margin-left: 0.35em;
  opacity: 0.55;
  font-weight: 400;
}

.m-template-uw99id .m-card__copy {
  margin: calc(var(--space-unit) * 0.75) 0 0;
  color: color-mix(in srgb, var(--color-text) 82%, transparent);
  line-height: var(--prose-line-height);
}

.m-template-uw99id .m-card__eyebrow,
.m-template-uw99id .m-news__date,
.m-template-uw99id .m-faq__cat-badge,
.m-template-uw99id .m-card__badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.m-template-uw99id .m-card__badge {
  position: absolute;
  top: calc(var(--space-unit) * 0.75);
  left: calc(var(--space-unit) * 0.75);
  z-index: 2;
  padding: 0.2em 0.55em;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-accent) 88%, var(--color-surface));
  color: var(--color-background);
}

.m-template-uw99id .m-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: calc(var(--space-unit) * 1.25);
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--color-primary) 82%, #000) 0%,
    transparent 62%
  );
  color: var(--color-on-primary);
  pointer-events: none;
}

.m-template-uw99id .m-card__overlay-label {
  margin: 0;
  color: var(--color-on-primary);
  font-weight: 600;
}

/* Shared card shell — one hover rule for all listing cards */
.m-template-uw99id .m-card,
.m-template-uw99id .m-news-card,
.m-template-uw99id .m-faq__tile,
.m-template-uw99id .m-product-masonry .m-card--masonry,
.m-template-uw99id .m-gallery-masonry .m-gallery__item,
.m-template-uw99id .m-gallery-cards .m-gallery-cards__card,
.m-template-uw99id .m-module-hub__category .m-card--category,
.m-template-uw99id .m-faq-card .m-card--faq,
.m-template-uw99id .m-product-list .m-card--product {
  border-radius: calc(var(--radius-base) + 2px);
  border: var(--border-width) solid var(--listing-border);
  background: var(--listing-surface);
  box-shadow: var(--listing-shadow-card);
  transition: var(--listing-transition-shell);
}

.m-template-uw99id .m-news-card,
.m-template-uw99id .m-faq__tile,
.m-template-uw99id .m-module-hub__category .m-card--category {
  height: 100%;
}

.m-template-uw99id .m-news-card {
  overflow: hidden;
  background: var(--listing-surface-elevated);
}

.m-template-uw99id .m-faq__tile {
  padding: calc(var(--space-unit) * 1.2) calc(var(--space-unit) * 1.25);
}

.m-template-uw99id .m-product-masonry .m-card--masonry,
.m-template-uw99id .m-gallery-masonry .m-gallery__item,
.m-template-uw99id .m-gallery-cards .m-gallery-cards__card {
  break-inside: avoid;
  overflow: hidden;
}

.m-template-uw99id .m-product-masonry .m-card--masonry {
  margin: 0 0 calc(var(--space-unit) * 1.25);
  padding: 0;
}

.m-template-uw99id .m-gallery-masonry .m-gallery__item {
  margin: 0 0 var(--listing-gap-md);
}

.m-template-uw99id .m-product-bento .m-card--bento,
.m-template-uw99id .m-gallery-bento__album {
  box-shadow: var(--listing-shadow-card);
  transition: var(--listing-transition-shell-flat);
}

.m-template-uw99id .m-card:hover,
.m-template-uw99id .m-news-card:hover,
.m-template-uw99id .m-faq__tile:hover,
.m-template-uw99id .m-faq-card .m-card--faq:hover,
.m-template-uw99id .m-module-hub__category .m-card--category:hover,
.m-template-uw99id .m-product-masonry .m-card--masonry:hover,
.m-template-uw99id .m-product-list .m-card--product:hover,
.m-template-uw99id .m-gallery-masonry .m-gallery__item:hover,
.m-template-uw99id .m-gallery-cards .m-gallery-cards__card:hover,
.m-template-uw99id .m-product-bento .m-card--bento:hover,
.m-template-uw99id .m-gallery-bento__album:hover {
  border-color: var(--listing-border-hover);
  box-shadow: var(--listing-shadow-card-hover);
  transform: var(--listing-hover-lift);
}

.m-template-uw99id .m-gallery-masonry .m-gallery__item:hover,
.m-template-uw99id .m-gallery-cards .m-gallery-cards__card:hover,
.m-template-uw99id .m-product-bento .m-card--bento:hover,
.m-template-uw99id .m-gallery-bento__album:hover {
  transform: none;
}

/* Listing focus ring (shared) */
.m-template-uw99id .m-product-list .m-card__link:focus-visible,
.m-template-uw99id .m-product-grid .m-card__link:focus-visible,
.m-template-uw99id .m-product-masonry .m-card__link:focus-visible,
.m-template-uw99id .m-product-bento .m-card--bento:focus-visible,
.m-template-uw99id .m-product-center .m-card__link:focus-visible,
.m-template-uw99id .m-product-center .m-card--thumb:focus-visible,
.m-template-uw99id .m-news__lead-link:focus-visible,
.m-template-uw99id .m-news-card__link:focus-visible,
.m-template-uw99id .m-news-bento-card:focus-visible,
.m-template-uw99id .m-news__node-link:focus-visible,
.m-template-uw99id .m-news-spotlight__link:focus-visible,
.m-template-uw99id .m-news__tail-link:focus-visible,
.m-template-uw99id .m-news__list-link:focus-visible,
.m-template-uw99id .m-gallery__link:focus-visible,
.m-template-uw99id .m-gallery-bento__album:focus-visible,
.m-template-uw99id .m-gallery-filmstrip__frame:focus-visible,
.m-template-uw99id .m-gallery__hero-link:focus-visible,
.m-template-uw99id .m-gallery-carousel__slide-link:focus-visible,
.m-template-uw99id .m-module-hub__category-link:focus-visible,
.m-template-uw99id .m-module-hub__search-btn:focus-visible,
.m-template-uw99id .m-listing-search__btn:focus-visible,
.m-template-uw99id .m-form__submit:focus-visible {
  outline: var(--listing-ring-focus);
  outline-offset: 3px;
}

.m-template-uw99id .m-faq__q:focus-visible {
  outline: var(--listing-ring-focus);
  outline-offset: -2px;
}

/* Unified listing search bar */
.m-template-uw99id .m-listing-search,
.m-template-uw99id .m-faq__search,
.m-template-uw99id .m-module-hub__search {
  display: flex;
  flex-wrap: wrap;
  gap: var(--form-gap);
  align-items: center;
  margin: 0 0 var(--listing-gap-md);
}

.m-template-uw99id .m-listing-search__input,
.m-template-uw99id .m-faq__search-input,
.m-template-uw99id .m-module-hub__search-input {
  flex: 1 1 12rem;
  min-width: 0;
  width: 100%;
  min-height: var(--form-field-height-sm);
  padding: calc(var(--space-unit) * 0.75) calc(var(--space-unit) * 1);
  border: var(--border-width) solid var(--listing-border);
  border-radius: calc(var(--radius-base) + 2px);
  background: color-mix(in srgb, var(--color-surface) 94%, transparent);
  color: var(--color-text);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  box-sizing: border-box;
}

.m-template-uw99id .m-listing-search__input:focus-visible,
.m-template-uw99id .m-faq__search-input:focus-visible,
.m-template-uw99id .m-module-hub__search-input:focus-visible {
  outline: none;
  border-color: color-mix(in srgb, var(--color-primary) 55%, var(--color-accent));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 18%, transparent);
}

.m-template-uw99id .m-listing-search__btn,
.m-template-uw99id .m-module-hub__search-btn {
  /* visual styles → unified .m-btn below; keep layout hook only */
  flex: 0 0 auto;
}

/* =============================================================================
   5b. Unified Button group (.m-btn)
   Variants: default/primary · --accent · --ghost · --secondary · --pill · --icon
   Legacy aliases: .m-casino-btn, .m-form__submit, .m-cta, .m-pwa__btn, .lv2-remote-*
   ============================================================================= */
.m-template-uw99id .m-btn,
.m-template-uw99id .m-casino-btn,
.m-template-uw99id .m-form__submit,
.m-template-uw99id .m-contact-page__submit,
.m-template-uw99id .m-listing-search__btn,
.m-template-uw99id .m-module-hub__search-btn,
.m-template-uw99id .m-lotto-toolbar__btn,
.m-template-uw99id .lv2-remote-submit,
.m-template-uw99id .c-newsletter-php .m-form__submit,
.cms-pwa-root .m-pwa__btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(var(--space-unit) * 1);
  box-sizing: border-box;
  min-height: var(--btn-height);
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font: inherit;
  font-weight: var(--btn-font-weight);
  line-height: 1.25;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  color: var(--color-on-primary);
  background: var(--btn-primary-bg);
  border: var(--border-width) solid var(--btn-primary-border);
  border-radius: var(--btn-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--btn-transition);
}

.m-template-uw99id .m-btn:hover,
.m-template-uw99id .m-casino-btn:hover,
.m-template-uw99id .m-form__submit:hover,
.m-template-uw99id .m-contact-page__submit:hover,
.m-template-uw99id .m-listing-search__btn:hover,
.m-template-uw99id .m-module-hub__search-btn:hover,
.m-template-uw99id .lv2-remote-submit:hover:not(:disabled),
.cms-pwa-root .m-pwa__btn:hover:not(:disabled) {
  filter: brightness(1.06);
  box-shadow: var(--casino-neon-glow);
}

.m-template-uw99id .m-btn:active,
.m-template-uw99id .m-casino-btn:active,
.m-template-uw99id .m-form__submit:active,
.m-template-uw99id .lv2-remote-submit:active:not(:disabled),
.cms-pwa-root .m-pwa__btn:active:not(:disabled) {
  transform: translateY(1px);
}

.m-template-uw99id .m-btn:focus-visible,
.m-template-uw99id .m-casino-btn:focus-visible,
.m-template-uw99id .m-form__submit:focus-visible,
.m-template-uw99id .m-listing-search__btn:focus-visible,
.m-template-uw99id .m-module-hub__search-btn:focus-visible,
.m-template-uw99id .lv2-remote-submit:focus-visible {
  outline: var(--listing-ring-focus);
  outline-offset: 3px;
}

.m-template-uw99id .m-btn:disabled,
.m-template-uw99id .m-btn[aria-disabled="true"],
.m-template-uw99id .m-form__submit:disabled,
.m-template-uw99id .lv2-remote-submit:disabled,
.cms-pwa-root .m-pwa__btn:disabled,
.cms-pwa-root .m-pwa__btn--installed {
  opacity: 0.68;
  cursor: not-allowed;
  filter: saturate(0.85);
  box-shadow: none;
  transform: none;
}

/* Accent (gold CTA — forms / newsletter / LinkV2 submit) */
.m-template-uw99id .m-btn--accent,
.m-template-uw99id .m-form__submit,
.m-template-uw99id .m-contact-page__submit,
.m-template-uw99id .lv2-remote-submit,
.m-template-uw99id .m-lotto-toolbar__btn,
.m-template-uw99id .c-newsletter-php .m-form__submit {
  color: var(--color-background);
  background: var(--btn-accent-bg);
  border-color: color-mix(in srgb, var(--color-accent) 55%, var(--color-background));
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--color-on-primary) 35%, transparent);
}

.m-template-uw99id .m-btn--accent:hover,
.m-template-uw99id .m-form__submit:hover,
.m-template-uw99id .lv2-remote-submit:hover:not(:disabled) {
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--color-on-primary) 18%, transparent),
    0 8px 24px color-mix(in srgb, var(--color-accent) 26%, transparent);
}

/* Ghost / outline */
.m-template-uw99id .m-btn--ghost,
.m-template-uw99id .m-casino-btn--ghost,
.m-template-uw99id .m-cta {
  color: var(--color-primary);
  background: var(--btn-ghost-bg);
  border-color: var(--btn-ghost-border);
  box-shadow: none;
}

.m-template-uw99id .m-btn--ghost:hover,
.m-template-uw99id .m-casino-btn--ghost:hover {
  background: color-mix(in srgb, var(--color-primary) 16%, var(--color-surface));
  box-shadow: none;
  filter: none;
}

/* Secondary (LinkV2 check-user / muted actions) */
.m-template-uw99id .m-btn--secondary,
.m-template-uw99id .lv2-remote-secondary-btn,
.m-template-uw99id .lv2-remote-icon-btn,
.m-template-uw99id .btnCheckUser.lv2-btn-check-user {
  color: color-mix(in srgb, var(--color-text) 96%, transparent);
  background: var(--btn-secondary-bg);
  border-color: var(--btn-secondary-border);
  box-shadow: none;
  min-width: clamp(44px, 11vw, 7.5rem);
  font-size: clamp(0.8rem, 2vw, 0.875rem);
  font-weight: 700;
}

.m-template-uw99id .m-btn--secondary:hover,
.m-template-uw99id .lv2-remote-secondary-btn:hover:not(:disabled),
.m-template-uw99id .lv2-remote-icon-btn:hover:not(:disabled) {
  filter: brightness(1.06);
  box-shadow: none;
}

/* Pill (PWA install) */
.m-template-uw99id .m-btn--pill,
.cms-pwa-root .m-pwa__btn {
  border: none;
  border-radius: var(--btn-radius-pill);
  font-weight: 700;
}

/* Icon-only square */
.m-template-uw99id .m-btn--icon,
.m-template-uw99id .lv2-remote-icon-btn.lv2-captcha-reload {
  min-width: var(--btn-height);
  padding-inline: 0;
  font-size: 1.15rem;
}

/* Compact (search bars) */
.m-template-uw99id .m-btn--sm,
.m-template-uw99id .m-listing-search__btn,
.m-template-uw99id .m-module-hub__search-btn {
  min-height: var(--btn-height-sm);
  padding: 0.55rem 1.1rem;
}

/* =============================================================================
   5. Unified Form group (fields; submit → .m-btn)
   ============================================================================= */
.m-template-uw99id .m-form {
  display: flex;
  flex-direction: column;
  gap: var(--form-gap);
}

.m-template-uw99id .m-form__field,
.m-template-uw99id .m-form__field-row,
.m-template-uw99id .m-contact-page__field-row {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-unit) * 0.45);
}

.m-template-uw99id .m-form__label,
.m-template-uw99id .m-contact-page__label {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-unit) * 0.4);
  font-weight: 500;
  color: color-mix(in srgb, var(--color-text) 92%, var(--color-accent));
}

.m-template-uw99id .m-form__input,
.m-template-uw99id .m-form__textarea,
.m-template-uw99id .m-form__select,
.m-template-uw99id .m-contact-page__input,
.m-template-uw99id .m-contact-page__textarea,
.m-template-uw99id .lv2-remote-input,
.m-template-uw99id .lv2-remote-select,
.m-template-uw99id .m-lotto-toolbar__input,
.m-template-uw99id .m-livescorepro-field__control,
.m-template-uw99id .c-newsletter-php .m-form__input {
  width: 100%;
  min-height: var(--form-field-height);
  padding: calc(var(--space-unit) * 0.75) calc(var(--space-unit) * 1);
  border: var(--border-width) solid var(--form-border);
  border-radius: var(--form-radius);
  background: var(--form-bg);
  color: var(--color-text);
  font: inherit;
  box-sizing: border-box;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.m-template-uw99id .m-form__textarea,
.m-template-uw99id .m-contact-page__textarea {
  min-height: 8rem;
  resize: vertical;
}

.m-template-uw99id .m-form__input:focus-visible,
.m-template-uw99id .m-form__textarea:focus-visible,
.m-template-uw99id .m-form__select:focus-visible,
.m-template-uw99id .m-contact-page__input:focus-visible,
.m-template-uw99id .m-contact-page__textarea:focus-visible,
.m-template-uw99id .lv2-remote-input:focus-visible,
.m-template-uw99id .lv2-remote-select:focus-visible,
.m-template-uw99id .m-lotto-toolbar__input:focus-visible,
.m-template-uw99id .m-livescorepro-field__control:focus-visible {
  outline: none;
  border-color: var(--form-border-focus);
  box-shadow: inset 0 1px 2px color-mix(in srgb, var(--color-background) 55%, transparent), var(--form-focus-ring);
}

.m-template-uw99id .m-form__hint,
.m-template-uw99id .m-contact-page__hint {
  font-size: 0.85em;
  color: color-mix(in srgb, var(--color-text) 65%, transparent);
}

.m-template-uw99id .m-form__feedback,
.m-template-uw99id .sf-contact-feedback {
  padding: calc(var(--space-unit) * 1) calc(var(--space-unit) * 1.25);
  border-radius: var(--form-radius);
  border: var(--border-width) solid transparent;
}

.m-template-uw99id .m-form__feedback--success,
.m-template-uw99id .sf-contact-feedback--success {
  border-color: color-mix(in srgb, var(--color-success) 45%, transparent);
  background: color-mix(in srgb, var(--color-success) 14%, var(--color-surface));
}

.m-template-uw99id .m-form__feedback--error,
.m-template-uw99id .sf-contact-feedback--error {
  border-color: color-mix(in srgb, var(--color-error) 45%, transparent);
  background: color-mix(in srgb, var(--color-error) 14%, var(--color-surface));
}

.m-template-uw99id .m-form__captcha,
.m-template-uw99id .m-contact-page__captcha {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-unit) * 0.6);
}

.m-template-uw99id .m-form__captcha-inner,
.m-template-uw99id .m-contact-page__captcha-inner,
.m-template-uw99id .lv2-remote-captcha-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: calc(var(--space-unit) * 0.75);
  align-items: center;
}

@media (max-width: 28rem) {
  .m-template-uw99id .m-form__captcha-inner,
  .m-template-uw99id .m-contact-page__captcha-inner,
  .m-template-uw99id .lv2-remote-captcha-grid {
    grid-template-columns: 1fr;
  }
}

/* Newsletter (theme-aware, no inline styles) */
.m-template-uw99id .c-newsletter-php {
  margin-top: 2rem;
  padding: 1.25rem;
  border: var(--border-width) solid var(--listing-border);
  border-radius: calc(var(--radius-base) + 2px);
  background: var(--listing-surface);
}

.m-template-uw99id .c-newsletter-php h2 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.m-template-uw99id .c-newsletter-php > p {
  margin: 0 0 0.75rem;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
  font-size: 0.9rem;
}

.m-template-uw99id .c-newsletter-php .m-form--inline {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
}

.m-template-uw99id .c-newsletter-php .m-form--inline .m-form__input {
  flex: 1 1 220px;
}

.m-template-uw99id .c-newsletter-php .m-form__hp,
.m-template-uw99id .m-form__hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* =============================================================================
   3. Shell (header / nav / banner chrome)
   ============================================================================= */

.m-site-header {
  /* Stack above following `.m-banner` / main (`body` uses `isolation: isolate`). */
  position: relative;
  z-index: var(--shell-stack-site-header);
  border-bottom: var(--border-width) solid var(--table-border);
  background: color-mix(in srgb, var(--color-surface) 92%, var(--color-accent) 8%);
}
.m-site-header__inner {
  max-width: var(--container-max-w);
  margin: 0 auto;
  padding-top: max(calc(var(--space-unit) * 2), env(safe-area-inset-top, 0px));
  padding-bottom: calc(var(--space-unit) * 2);
  padding-left: max(calc(var(--space-unit) * 2.25), env(safe-area-inset-left, 0px));
  padding-right: max(calc(var(--space-unit) * 2.25), env(safe-area-inset-right, 0px));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: calc(var(--space-unit) * 2);
  overflow: visible;
  box-sizing: border-box;
}
.m-lang-zone {
  align-self: center;
  flex-shrink: 0;
}
.m-lang-switch__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.m-lang-switch__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 0.35rem 0.55rem;
  border: var(--border-width) solid color-mix(in srgb, var(--color-text) 22%, transparent);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  color: color-mix(in srgb, var(--color-text) 88%, transparent);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.m-lang-switch__link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.m-lang-switch__link--active {
  border-color: var(--color-accent);
  background: color-mix(in srgb, var(--color-accent) 14%, var(--color-surface));
  color: var(--color-accent);
  font-weight: 700;
  pointer-events: none;
}

.m-logo-area {
  display: inline-flex;
  align-items: center;
  gap: calc(var(--space-unit) * 1.5);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
}
.m-logo-area__text {
  font-size: calc(var(--font-size-base) + 2px);
}
.m-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: calc(var(--space-unit) * 1.5);
  list-style: none;
  margin: 0;
  padding: 0;
}
.m-nav__link {
  font-weight: 500;
  text-decoration: none;
  color: color-mix(in srgb, var(--color-text) 94%, transparent);
  border-radius: var(--radius-base);
  padding-inline: calc(var(--space-unit) * 1.5);
}
.m-nav__link:hover {
  color: var(--color-accent);
}
.m-banner {
  position: relative;
  z-index: var(--shell-stack-hero-base);
  /* Default strip; use `.m-banner--hero` on homepage for a taller hero */
  --m-banner-height: clamp(5.5rem, 12vh, 8.5rem);
  height: var(--m-banner-height);
  max-height: 9.5rem;
  min-height: 0;
  overflow: hidden;
  border-bottom: var(--border-width) solid var(--table-border);
}
.m-banner--hero {
  --m-banner-height: clamp(10rem, 22vh, 15rem);
  max-height: 15rem;
}
.m-banner--strip {
  --m-banner-height: clamp(4.25rem, 9vh, 6.5rem);
  max-height: 6.5rem;
}
.m-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.m-banner__overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--color-surface) 55%, transparent) 0%,
    transparent 60%
  );
}
.m-banner__content {
  pointer-events: none;
  position: absolute;
  left: max(calc(var(--space-unit) * 2.25), env(safe-area-inset-left, 0px));
  right: max(calc(var(--space-unit) * 2.25), env(safe-area-inset-right, 0px));
  bottom: max(calc(var(--space-unit) * 2), env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}
.m-banner__kicker {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 0.8vw + 0.75rem, 1.35rem);
  color: var(--color-text);
  text-shadow: var(--shadow-sm);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.m-banner--strip .m-banner__kicker {
  font-size: clamp(0.8rem, 0.55vw + 0.7rem, 1rem);
}

.m-main-slot {
  max-width: none;
}
.m-band {
  padding-block: calc(var(--space-unit) * 5);
}
.m-band__inner {
  max-width: var(--container-max-w);
  margin: 0 auto;
  padding-inline: calc(var(--space-unit) * 3);
}
.m-band--muted {
  background: color-mix(in srgb, var(--color-accent) 8%, var(--color-surface));
  border-block: var(--border-width) solid var(--table-border);
}
.m-site-footer {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  border-top: var(--border-width) solid var(--table-border);
  background:
    linear-gradient(
      165deg,
      color-mix(in srgb, var(--color-surface) 88%, transparent) 0%,
      color-mix(in srgb, var(--color-primary) 7%, var(--color-surface)) 42%,
      color-mix(in srgb, var(--color-accent) 9%, var(--color-surface)) 100%
    );
}

body.m-template-uw99id #footer-contact .m-site-footer__glow {
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--color-primary) 55%, transparent),
    color-mix(in srgb, var(--color-accent) 45%, transparent),
    transparent
  );
  pointer-events: none;
}

body.m-template-uw99id #footer-contact .m-site-footer__inner {
  position: relative;
  max-width: var(--container-max-w);
  margin: 0 auto;
  padding-top: calc(var(--space-unit) * 4);
  padding-bottom: max(calc(var(--space-unit) * 3.25), env(safe-area-inset-bottom, 0px));
  padding-left: max(calc(var(--space-unit) * 3.25), env(safe-area-inset-left, 0px));
  padding-right: max(calc(var(--space-unit) * 3.25), env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

@media (min-width: 48rem) {
  body.m-template-uw99id #footer-contact .m-footer-zone__cols.m-site-footer__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 1.05fr);
    gap: calc(var(--space-unit) * 3.25);
    align-items: start;
  }
}

body.m-template-uw99id #footer-contact .m-site-footer__title {
  margin: 0 0 calc(var(--space-unit) * 1.35);
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 72%, transparent);
}

body.m-template-uw99id #footer-contact .m-site-footer__text {
  margin: 0;
  max-width: 28rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--color-text) 90%, transparent);
}

body.m-template-uw99id #footer-contact .m-site-footer__hint {
  margin: 0 0 calc(var(--space-unit) * 1.35);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--color-text) 62%, transparent);
}

body.m-template-uw99id #footer-contact .m-site-footer__newsletter-slot {
  padding: calc(var(--space-unit) * 1.15);
  border-radius: calc(var(--radius-base) + 2px);
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 14%, var(--table-border));
  background: color-mix(in srgb, var(--color-surface) 94%, transparent);
  box-shadow: var(--listing-shadow-card);
}

body.m-template-uw99id #footer-contact .m-site-footer__newsletter-slot:empty {
  display: none;
}

body.m-template-uw99id #footer-contact .m-site-footer__subscribe:has(.m-site-footer__newsletter-slot:empty) .m-site-footer__hint {
  margin-bottom: 0;
}

body.m-template-uw99id #footer-contact .m-site-footer__meta {
  margin-top: calc(var(--space-unit) * 3.5);
  padding-top: calc(var(--space-unit) * 2.75);
  border-top: var(--border-width) solid color-mix(in srgb, var(--color-accent) 12%, var(--table-border));
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-unit) * 1.15);
}

@media (min-width: 40rem) {
  body.m-template-uw99id #footer-contact .m-site-footer__meta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: calc(var(--space-unit) * 1.5) calc(var(--space-unit) * 2);
  }
}

body.m-template-uw99id #footer-contact .m-site-footer__copyright {
  margin: 0;
  flex: 1 1 12rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--color-text) 58%, transparent);
  overflow-wrap: anywhere;
  word-break: break-word;
}

body.m-template-uw99id #footer-contact .m-site-footer__footer-html {
  margin: 0;
  flex: 2 1 18rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--color-text) 72%, transparent);
  overflow-wrap: anywhere;
  word-break: break-word;
}

body.m-template-uw99id #footer-contact .m-site-footer__footer-html:empty {
  display: none;
}

body.m-template-uw99id #footer-contact .m-footer-zone__links {
  gap: calc(var(--space-unit) * 1);
}

body.m-template-uw99id #footer-contact .m-footer-zone__link:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--color-primary) 65%, transparent);
  outline-offset: 3px;
  border-radius: 2px;
}
/* Region hooks (shell + content zone) */
.m-logo-zone {
  display: flex;
  align-items: center;
}

.m-menu-zone.m-nav {
  flex: 1 1 auto;
  min-width: 0;
}

/*
 * Scoped nav chrome — driven by **`menu_style_vars`** in **`setting.php`** → `#menu-nav` **`style`** (`--tp-nav-*`).
 * Fallbacks preserve previous look when vars omitted.
 */
body.m-template-uw99id #menu-nav.m-menu-zone {
  background: var(--tp-nav-bg, transparent);
  border: var(--border-width) solid var(--tp-nav-border, transparent);
  border-radius: var(--radius-base);
  padding-inline: calc(var(--space-unit) * 1.25);
  padding-block: calc(var(--space-unit) * 0.65);
  box-sizing: border-box;
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--color-text) 6%, transparent),
    0 12px 40px color-mix(in srgb, var(--color-primary) 14%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
}

body.m-template-uw99id #menu-nav.m-menu-zone .m-nav__link {
  color: var(--tp-nav-link, color-mix(in srgb, var(--color-text) 94%, transparent));
  touch-action: manipulation;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  box-sizing: border-box;
  cursor: pointer;
}

body.m-template-uw99id #menu-nav.m-menu-zone .m-nav__label {
  min-width: 0;
}

body.m-template-uw99id #menu-nav.m-menu-zone .m-nav__link img,
body.m-template-uw99id #menu-nav.m-menu-zone .m-nav__link svg {
  width: 1.125em;
  height: 1.125em;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

body.m-template-uw99id #menu-nav.m-menu-zone .m-nav__link svg {
  display: inline-block;
  fill: currentColor;
}

body.m-template-uw99id #menu-nav.m-menu-zone .m-nav__chev {
  display: inline-flex;
  flex-shrink: 0;
  opacity: 0.82;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

body.m-template-uw99id #menu-nav.m-menu-zone .m-nav__chev-svg {
  display: block;
}

body.m-template-uw99id #menu-nav:is([data-submenu="dropdown"], [data-submenu="none"]) .m-nav__item--has-sub:is(:hover, :focus-within) .m-nav__chev,
body.m-template-uw99id #menu-nav[data-submenu="stacked"] .m-nav__item--has-sub:is(:hover, :focus-within) .m-nav__chev {
  opacity: 1;
}

body.m-template-uw99id #menu-nav.m-menu-zone .m-nav__link:hover {
  color: var(--tp-nav-link-hover, var(--color-accent));
}

body.m-template-uw99id #menu-nav.m-menu-zone .m-nav__link:focus-visible {
  outline: 2px solid var(--tp-nav-link-hover, var(--color-accent));
  outline-offset: 2px;
}

/* ----- Menu `#menu-nav`: layout + submenu — submenu panels still use `--color-*` ----- */
body.m-template-uw99id .m-site-header__inner[data-site-header-layout="vertical"] {
  flex-direction: column;
  align-items: stretch;
}

body.m-template-uw99id .m-site-header__inner[data-site-header-layout="vertical"] .m-menu-zone.m-nav {
  width: 100%;
}

body.m-template-uw99id #menu-nav[data-menu-layout="horizontal"] .m-nav__list {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: calc(var(--space-unit) * 0.5);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--color-primary) 45%, transparent) transparent;
  padding-bottom: calc(var(--space-unit) * 0.5);
  scroll-padding-inline: calc(var(--space-unit) * 2);
  -webkit-overflow-scrolling: touch;
}

/* `overflow-x: auto` pairs with implicit non-visible block axis and clips abs-positioned `.m-nav__sub`. */
body.m-template-uw99id #menu-nav[data-menu-layout="horizontal"]:is([data-submenu="dropdown"], [data-submenu="none"], [data-submenu="stacked"]) {
  overflow: visible;
}

body.m-template-uw99id #menu-nav[data-menu-layout="horizontal"]:is([data-submenu="dropdown"], [data-submenu="none"], [data-submenu="stacked"]) .m-nav__list {
  overflow: visible;
  flex-wrap: wrap;
  row-gap: calc(var(--space-unit) * 0.5);
}

body.m-template-uw99id #menu-nav[data-menu-layout="vertical"] .m-nav__list {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  overflow-x: visible;
  width: 100%;
  gap: calc(var(--space-unit) * 1);
}

body.m-template-uw99id #menu-nav[data-menu-layout="vertical"] .m-nav__link {
  width: 100%;
  box-sizing: border-box;
}

/* `data-submenu="none"` (default menu presentation) still emits nested `.m-nav__sub` from DB — share flyout hide/show with `dropdown`. */
body.m-template-uw99id #menu-nav:is([data-submenu="dropdown"], [data-submenu="none"]) .m-nav__item--has-sub {
  position: relative;
}

body.m-template-uw99id #menu-nav:is([data-submenu="dropdown"], [data-submenu="none"]) .m-nav__sub {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: var(--shell-stack-nav-flyout);
  /* Match parent item width; avoid oversized 12rem panels. */
  min-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: calc(var(--space-unit) * 0.5) 0;
  list-style: none;
  background: var(--tp-sub-panel-bg, color-mix(in srgb, var(--color-surface) 94%, transparent));
  border: var(--border-width) solid var(--tp-sub-panel-border, var(--table-border));
  border-radius: var(--tp-sub-panel-radius, var(--radius-base));
  box-shadow: var(--tp-sub-panel-box-shadow, var(--shadow-sm));
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.35rem);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}

body.m-template-uw99id #menu-nav:is([data-submenu="dropdown"], [data-submenu="none"]) .m-nav__sub .m-nav__item--has-sub {
  position: relative;
}

body.m-template-uw99id #menu-nav:is([data-submenu="dropdown"], [data-submenu="none"]) .m-nav__sub .m-nav__item--has-sub > .m-nav__sub {
  left: calc(100% + var(--tp-sub-flyout-gap, 0.125rem));
  top: 0;
  z-index: 40;
}

body.m-template-uw99id #menu-nav:is([data-submenu="dropdown"], [data-submenu="none"]) .m-nav__sub .m-nav__sub .m-nav__item--has-sub > .m-nav__sub {
  z-index: 50;
}

body.m-template-uw99id #menu-nav:is([data-submenu="dropdown"], [data-submenu="none"]) .m-nav__sub::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.5rem;
  height: 0.5rem;
}

/* Child combinator: only the direct submenu of the hovered/focused parent opens (not deeper nested panels). */
body.m-template-uw99id #menu-nav:is([data-submenu="dropdown"], [data-submenu="none"]) .m-nav__item--has-sub:hover > .m-nav__sub,
body.m-template-uw99id #menu-nav:is([data-submenu="dropdown"], [data-submenu="none"]) .m-nav__item--has-sub:focus-within > .m-nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

body.m-template-uw99id #menu-nav:is([data-submenu="dropdown"], [data-submenu="none"]) .m-nav__sub__link {
  display: flex;
  align-items: center;
  /* Same rhythm as top-level `.m-nav__link` (no oversized touch row). */
  min-height: 0;
  padding-block: calc(var(--space-unit) * 0.65);
  padding-inline: calc(var(--space-unit) * 1.5);
  font-size: var(--font-size-base);
  line-height: 1.35;
  color: var(--tp-sub-link-color, color-mix(in srgb, var(--color-text) 92%, transparent));
  text-decoration: none;
  font-weight: 500;
  border-radius: 0;
  transition: background 0.22s ease, color 0.22s ease;
  touch-action: manipulation;
  cursor: pointer;
}

body.m-template-uw99id #menu-nav:is([data-submenu="dropdown"], [data-submenu="none"]) .m-nav__sub__link:focus-visible {
  outline: 2px solid var(--tp-nav-link-hover, var(--color-accent));
  outline-offset: -2px;
  background: var(
    --tp-sub-link-focus-bg,
    color-mix(in srgb, var(--color-primary) 10%, var(--color-surface))
  );
}

body.m-template-uw99id #menu-nav:is([data-submenu="dropdown"], [data-submenu="none"]) .m-nav__sub__link:hover {
  background: var(
    --tp-sub-link-hover-bg,
    color-mix(in srgb, var(--color-primary) 16%, var(--color-surface))
  );
  color: var(--tp-sub-link-hover-color, var(--color-primary));
}

/* Stacked: submenus collapsed until parent row is hovered or contains focus (keyboard / touch). */
body.m-template-uw99id #menu-nav[data-submenu="stacked"] .m-nav__item--has-sub > .m-nav__sub {
  display: none;
}

body.m-template-uw99id #menu-nav[data-submenu="stacked"] .m-nav__item--has-sub:hover > .m-nav__sub,
body.m-template-uw99id #menu-nav[data-submenu="stacked"] .m-nav__item--has-sub:focus-within > .m-nav__sub {
  display: block;
  position: static;
  margin: calc(var(--space-unit) * 1) 0 0 calc(var(--space-unit) * 1.5);
  padding: calc(var(--space-unit) * 1) 0 calc(var(--space-unit) * 1) calc(var(--space-unit) * 2);
  list-style: none;
  border-left: var(--border-width) solid
    var(--tp-sub-stacked-rail, color-mix(in srgb, var(--color-primary) 55%, transparent));
  background: var(
    --tp-sub-stacked-bg,
    color-mix(in srgb, var(--color-primary) 6%, var(--color-surface))
  );
  border-radius: 0 var(--radius-base) var(--radius-base) 0;
}

body.m-template-uw99id #menu-nav[data-submenu="stacked"] .m-nav__sub .m-nav__sub {
  margin-left: var(--tp-sub-stacked-nested-margin, 0.65rem);
}

body.m-template-uw99id #menu-nav[data-submenu="stacked"] .m-nav__sub__link {
  display: block;
  padding-block: calc(var(--space-unit) * 0.65);
  padding-inline: calc(var(--space-unit) * 1.5);
  font-size: var(--font-size-base);
  line-height: 1.35;
  color: var(--tp-sub-link-color, color-mix(in srgb, var(--color-text) 90%, transparent));
  text-decoration: none;
  font-weight: 500;
}

body.m-template-uw99id #menu-nav[data-submenu="stacked"] .m-nav__sub__link:hover {
  color: var(--tp-sub-link-hover-color, var(--color-primary));
}

body.m-template-uw99id #menu-nav[data-submenu="stacked"] .m-nav__sub__link:focus-visible {
  outline: 2px solid var(--tp-nav-link-hover, var(--color-accent));
  outline-offset: 2px;
}

.m-content-zone {
  min-width: 0;
}

body.m-template-uw99id .m-content-zone > .m-content-block:first-child {
  margin-top: 0;
}

.m-footer-zone__cols {
  display: grid;
  gap: calc(var(--space-unit) * 4);
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}

.m-footer-zone__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-unit) * 1.25);
}

.m-footer-zone__link {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.m-footer-zone__link:hover {
  color: var(--color-accent);
}

.m-footer-zone__fineprint {
  margin-top: calc(var(--space-unit) * 3);
  padding-top: calc(var(--space-unit) * 3);
  border-top: var(--border-width) solid var(--table-border);
}
.m-site-footer__title {
  font-family: var(--font-heading);
  margin: 0 0 calc(var(--space-unit) * 2);
  color: var(--color-text);
}
.m-site-footer__line {
  margin: 0;
  opacity: 0.88;
  line-height: var(--prose-line-height);
  color: color-mix(in srgb, var(--color-text) 88%, transparent);
}

/* =============================================================================
   Preview / marketing catalogue (deduped legacy c-card)
   ============================================================================= */

.m-template-uw99id .m-band--elevated {
  background: color-mix(in srgb, var(--color-surface) 78%, transparent);
  border-block: var(--border-width) solid var(--table-border);
  backdrop-filter: blur(8px);
}

.m-template-uw99id .m-band--cta {
  background: linear-gradient(
    95deg,
    color-mix(in srgb, var(--color-accent) 18%, var(--color-surface)),
    color-mix(in srgb, var(--color-primary) 12%, var(--color-surface))
  );
  border-block: var(--border-width) solid var(--table-border);
}

.m-template-uw99id .m-casino-section-head .m-casino-lead:last-child {
  margin-bottom: 0;
}

.m-template-uw99id .m-casino-h2 {
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 1.2vw + 0.95rem, 1.45rem);
  margin-block: 0 calc(var(--space-unit) * 2);
  color: var(--color-text);
}

.m-template-uw99id .m-casino-h2--inline {
  margin-bottom: calc(var(--space-unit) * 1);
}

.m-template-uw99id .m-casino-lead {
  margin: 0 0 calc(var(--space-unit) * 3);
  max-width: 55ch;
  line-height: var(--prose-line-height);
  color: color-mix(in srgb, var(--color-text) 90%, transparent);
}

.m-template-uw99id .m-casino-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
  padding: 0.12em 0.35em;
  border-radius: calc(var(--radius-base) - 6px);
  background: color-mix(in srgb, var(--color-primary) 12%, var(--color-surface));
}

.m-template-uw99id .m-casino-stats {
  display: grid;
  gap: calc(var(--space-unit) * 3);
  list-style: none;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.m-template-uw99id .m-casino-stats__num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw + 1rem, 2.4rem);
  color: color-mix(in srgb, var(--color-accent) 65%, var(--color-text));
  text-shadow: var(--casino-neon-glow);
}

.m-template-uw99id .m-casino-stats__suffix {
  font-size: 0.72em;
  vertical-align: super;
}

.m-template-uw99id .m-casino-stats__label {
  display: block;
  margin-top: calc(var(--space-unit) * 0.75);
  color: color-mix(in srgb, var(--color-text) 78%, transparent);
  font-weight: 500;
}

/* .m-casino-btn → unified .m-btn (see §5b) */

.m-template-uw99id .m-product-detail .m-product-detail__title {
  text-transform: none;
  letter-spacing: -0.02em;
  text-shadow: none;
  font-weight: 700;
}

/* PHP/Astro product / news / gallery / FAQ detail: hide shell `.m-page-intro` when the slot supplies its own `<h1 id="page-title">`. */
.m-template-uw99id article.c-page:has(.m-product-detail) .m-page-intro,
.m-template-uw99id article.c-page:has(.m-news-detail) .m-page-intro,
.m-template-uw99id article.c-page:has(.m-gallery-detail) .m-page-intro,
.m-template-uw99id article.c-page:has(.m-faq-detail) .m-page-intro {
  display: none;
}

.m-template-uw99id .m-news-detail {
  margin: 0;
}

.m-template-uw99id .m-gallery-detail {
  margin: 0;
}

.m-template-uw99id .m-faq-detail {
  margin: 0;
}

.m-template-uw99id .m-news-detail__crumb,
.m-template-uw99id .m-gallery-detail__crumb,
.m-template-uw99id .m-faq-detail__crumb {
  margin: 0 0 calc(var(--space-unit) * 1.5);
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--color-text) 62%, transparent);
  line-height: 1.5;
}

.m-template-uw99id .m-news-detail__crumb a,
.m-template-uw99id .m-gallery-detail__crumb a,
.m-template-uw99id .m-faq-detail__crumb a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.m-template-uw99id .m-news-detail__crumb a:hover,
.m-template-uw99id .m-gallery-detail__crumb a:hover,
.m-template-uw99id .m-faq-detail__crumb a:hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.m-template-uw99id .m-news-detail__crumb-sep,
.m-template-uw99id .m-gallery-detail__crumb-sep,
.m-template-uw99id .m-faq-detail__crumb-sep {
  margin: 0 calc(var(--space-unit) * 0.45);
  opacity: 0.55;
}

.m-template-uw99id .m-news-detail__hero,
.m-template-uw99id .m-gallery-detail__hero,
.m-template-uw99id .m-faq-detail__hero {
  margin: 0 0 calc(var(--space-unit) * 1.75);
}

.m-template-uw99id .m-gallery-detail__lead {
  margin: 0 0 calc(var(--space-unit) * 1.5);
  border-radius: calc(var(--radius-base) + 3px);
  overflow: hidden;
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 16%, var(--table-border));
  box-shadow: var(--listing-shadow-card);
  background: color-mix(in srgb, var(--color-surface) 94%, #000);
}

.m-template-uw99id .m-gallery-detail__lead img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(58vh, 32rem);
  object-fit: cover;
}

.m-template-uw99id .m-gallery-detail__mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(var(--space-unit) * 0.85);
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .m-template-uw99id .m-gallery-detail__mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: calc(var(--space-unit) * 1);
  }

  .m-template-uw99id .m-gallery-detail__tile--hero {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (min-width: 960px) {
  .m-template-uw99id .m-gallery-detail__mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.m-template-uw99id .m-gallery-detail__tile {
  position: relative;
  margin: 0;
  padding: 0;
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 14%, var(--table-border));
  border-radius: calc(var(--radius-base) + 2px);
  overflow: hidden;
  cursor: pointer;
  background: color-mix(in srgb, var(--color-surface) 92%, #000);
  box-shadow: var(--listing-shadow-card);
}

.m-template-uw99id .m-gallery-detail__tile img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 8rem;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 260ms ease, filter 260ms ease;
}

.m-template-uw99id .m-gallery-detail__tile--hero img {
  aspect-ratio: 16 / 10;
  min-height: 12rem;
}

.m-template-uw99id .m-gallery-detail__tile:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--color-primary) 55%, transparent);
  outline-offset: 2px;
}

.m-template-uw99id .m-gallery-detail__lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--space-unit) * 1.25);
  background: color-mix(in srgb, #000 72%, transparent);
  backdrop-filter: blur(6px);
}

.m-template-uw99id .m-gallery-detail__lightbox[hidden] {
  display: none !important;
}

.m-template-uw99id body.m-gallery-detail--lightbox-open {
  overflow: hidden;
}

.m-template-uw99id .m-gallery-detail__lightbox-panel {
  position: relative;
  width: min(96vw, 72rem);
  max-height: 92vh;
  padding: calc(var(--space-unit) * 1.25);
  border-radius: calc(var(--radius-base) + 4px);
  background: color-mix(in srgb, var(--color-surface) 96%, #111);
  box-shadow: 0 24px 64px color-mix(in srgb, #000 45%, transparent);
}

.m-template-uw99id .m-gallery-detail__lightbox-close {
  position: absolute;
  top: calc(var(--space-unit) * 0.65);
  right: calc(var(--space-unit) * 0.65);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text);
  background: color-mix(in srgb, var(--color-surface) 88%, transparent);
}

.m-template-uw99id .m-gallery-detail__lightbox-img {
  display: block;
  max-width: 100%;
  max-height: min(72vh, 40rem);
  margin: 0 auto;
  object-fit: contain;
}

.m-template-uw99id .m-gallery-detail__lightbox-caption {
  margin: calc(var(--space-unit) * 0.85) 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-text) 75%, transparent);
}

.m-template-uw99id .m-news-detail__cover,
.m-template-uw99id .m-faq-detail__cover {
  margin: 0 0 calc(var(--space-unit) * 1.5);
  border-radius: calc(var(--radius-base) + 3px);
  overflow: hidden;
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 16%, var(--table-border));
  box-shadow: var(--listing-shadow-card);
  background: color-mix(in srgb, var(--color-surface) 94%, #000);
}

.m-template-uw99id .m-news-detail__cover img,
.m-template-uw99id .m-faq-detail__cover img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(52vh, 28rem);
  object-fit: cover;
}

.m-template-uw99id .m-news-detail__meta,
.m-template-uw99id .m-gallery-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: calc(var(--space-unit) * 0.65) calc(var(--space-unit) * 1.35);
  margin: 0 0 calc(var(--space-unit) * 1.15);
  padding: calc(var(--space-unit) * 0.85) calc(var(--space-unit) * 1.05);
  border-radius: calc(var(--radius-base) + 1px);
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 12%, var(--table-border));
  background: color-mix(in srgb, var(--color-surface) 93%, transparent);
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--color-text) 68%, transparent);
}

.m-template-uw99id .m-news-detail__meta time,
.m-template-uw99id .m-gallery-detail__meta time {
  color: color-mix(in srgb, var(--color-text) 58%, transparent);
}

.m-template-uw99id .m-news-detail__cat,
.m-template-uw99id .m-gallery-detail__cat {
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.m-template-uw99id .m-news-detail__cat:hover,
.m-template-uw99id .m-gallery-detail__cat:hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.m-template-uw99id .m-gallery-detail__count {
  font-weight: 600;
  color: color-mix(in srgb, var(--color-text) 78%, transparent);
}

.m-template-uw99id .m-news-detail__author {
  font-weight: 600;
  color: color-mix(in srgb, var(--color-text) 82%, transparent);
}

.m-template-uw99id .m-news-detail__title,
.m-template-uw99id .m-gallery-detail__title,
.m-template-uw99id .m-faq-detail__title {
  margin: 0 0 calc(var(--space-unit) * 1.35);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 1.4vw + 0.85rem, 2rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.03em;
  text-transform: none;
  text-shadow: none;
  color: var(--color-text);
}

.m-template-uw99id .m-news-detail__article {
  max-width: 48rem;
  margin: 0 auto;
  padding-top: calc(var(--space-unit) * 0.25);
}

.m-template-uw99id .m-news-detail__divider,
.m-template-uw99id .m-gallery-detail__divider,
.m-template-uw99id .m-faq-detail__divider {
  height: 3px;
  margin: 0 0 calc(var(--space-unit) * 1.75);
  border: 0;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--color-primary) 55%, transparent),
    color-mix(in srgb, var(--color-accent) 35%, transparent),
    transparent
  );
}

.m-template-uw99id .m-faq-detail__answer {
  margin: 0 auto;
  padding-top: calc(var(--space-unit) * 0.35);
  max-width: 48rem;
}

.m-template-uw99id .m-gallery-detail__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(var(--space-unit) * 1);
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .m-template-uw99id .m-gallery-detail__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: calc(var(--space-unit) * 1.25);
  }
}

.m-template-uw99id .m-gallery-detail__cell {
  margin: 0;
  border-radius: calc(var(--radius-base) + 2px);
  overflow: hidden;
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 14%, var(--table-border));
  box-shadow: var(--listing-shadow-card);
  background: color-mix(in srgb, var(--color-surface) 92%, #000);
}

.m-template-uw99id .m-gallery-detail__cell img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.m-template-uw99id .m-gallery-detail__empty {
  margin: calc(var(--space-unit) * 1.5) 0 0;
  padding: calc(var(--space-unit) * 2);
  text-align: center;
  font-size: 0.9375rem;
  color: color-mix(in srgb, var(--color-text) 58%, transparent);
  border-radius: calc(var(--radius-base) + 2px);
  border: var(--border-width) dashed color-mix(in srgb, var(--color-accent) 22%, var(--table-border));
  background: color-mix(in srgb, var(--color-surface) 91%, transparent);
}

.m-template-uw99id .m-product-detail__crumb {
  margin: 0 0 calc(var(--space-unit) * 1.35);
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--color-text) 62%, transparent);
}

.m-template-uw99id .m-product-detail__crumb a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.m-template-uw99id .m-product-detail__crumb a:hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.m-template-uw99id .m-product-detail__review-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-unit) * 1.15);
}

.m-template-uw99id .m-product-detail__review-li {
  margin: 0;
  padding: calc(var(--space-unit) * 1.1) calc(var(--space-unit) * 1.2);
  border-radius: calc(var(--radius-base) + 1px);
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 12%, var(--table-border));
  background: color-mix(in srgb, var(--color-surface) 94%, transparent);
}

.m-template-uw99id .m-product-detail__review-meta {
  margin: 0 0 calc(var(--space-unit) * 0.65);
  font-size: 0.875rem;
}

.m-template-uw99id .m-product-detail__review-stars {
  color: #d97706;
  letter-spacing: 0.06em;
}

.m-template-uw99id .m-product-detail__review-body {
  margin: 0;
  font-size: 0.875rem;
  line-height: var(--prose-line-height);
  color: color-mix(in srgb, var(--color-text) 88%, transparent);
}

/* Product detail — marketplace-style gallery + buy box (theme tokens only) */
.m-template-uw99id .m-product-detail {
  margin: 0;
}

.m-template-uw99id .m-product-detail__layout {
  display: grid;
  gap: var(--listing-gap-lg);
  align-items: start;
}

@media (min-width: 56rem) {
  .m-template-uw99id .m-product-detail__layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: calc(var(--space-unit) * 2.25);
  }
}

.m-template-uw99id .m-product-detail__media {
  position: sticky;
  top: calc(var(--space-unit) * 2);
}

@media (max-width: 55.99rem) {
  .m-template-uw99id .m-product-detail__media {
    position: relative;
    top: auto;
  }
}

.m-template-uw99id .m-product-detail__stage {
  margin: 0;
  border-radius: calc(var(--radius-base) + 3px);
  overflow: hidden;
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 16%, var(--table-border));
  background: color-mix(in srgb, var(--color-surface) 96%, #fff);
  box-shadow: var(--listing-shadow-card);
}

.m-template-uw99id .m-product-detail__main-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(72vh, 36rem);
  object-fit: contain;
  background: color-mix(in srgb, var(--color-surface) 98%, #fff);
}

.m-template-uw99id .m-product-detail__thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--listing-gap-sm);
  margin: calc(var(--space-unit) * 1.35) 0 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}

.m-template-uw99id .m-product-detail__thumb {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.m-template-uw99id .m-product-detail__thumb-btn {
  display: block;
  padding: 3px;
  margin: 0;
  border-radius: calc(var(--radius-base) + 1px);
  border: 2px solid color-mix(in srgb, var(--color-accent) 22%, transparent);
  background: color-mix(in srgb, var(--color-surface) 92%, transparent);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.m-template-uw99id .m-product-detail__thumb-btn:hover {
  border-color: color-mix(in srgb, var(--color-primary) 45%, transparent);
}

.m-template-uw99id .m-product-detail__thumb-btn:focus-visible {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 22%, transparent);
}

.m-template-uw99id .m-product-detail__thumb-btn[aria-current='true'] {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-primary) 35%, transparent);
}

.m-template-uw99id .m-product-detail__thumb-btn img {
  display: block;
  width: 4.25rem;
  height: 4.25rem;
  object-fit: cover;
  border-radius: calc(var(--radius-base) - 2px);
}

.m-template-uw99id .m-product-detail__buybox {
  padding: calc(var(--space-unit) * 1.65) calc(var(--space-unit) * 1.85);
  border-radius: calc(var(--radius-base) + 3px);
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 14%, var(--table-border));
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--color-surface) 96%, transparent),
    color-mix(in srgb, var(--color-surface) 88%, var(--color-primary) 6%)
  );
  box-shadow: var(--listing-shadow-card);
}

.m-template-uw99id .m-product-detail__title {
  margin: 0 0 calc(var(--space-unit) * 1);
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.2vw + 0.85rem, 1.65rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.m-template-uw99id .m-product-detail__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: calc(var(--space-unit) * 0.65) calc(var(--space-unit) * 1.25);
  margin: 0 0 calc(var(--space-unit) * 1.35);
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--color-text) 62%, transparent);
}

.m-template-uw99id .m-product-detail__meta-row time {
  color: color-mix(in srgb, var(--color-text) 52%, transparent);
}

.m-template-uw99id .m-product-detail__cat-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.m-template-uw99id .m-product-detail__cat-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.m-template-uw99id .m-product-detail__reviews-teaser {
  margin: 0 0 calc(var(--space-unit) * 1.25);
  padding: calc(var(--space-unit) * 0.85) calc(var(--space-unit) * 1);
  border-radius: var(--radius-base);
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 12%, var(--table-border));
  background: color-mix(in srgb, var(--color-surface) 94%, transparent);
  font-size: 0.875rem;
}

.m-template-uw99id .m-product-detail__reviews-teaser a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.m-template-uw99id .m-product-detail__reviews-teaser a:hover {
  text-decoration: underline;
}

.m-template-uw99id .m-product-detail__price-block {
  margin: 0 0 calc(var(--space-unit) * 1.5);
  padding: calc(var(--space-unit) * 1.15) calc(var(--space-unit) * 1.25);
  border-radius: calc(var(--radius-base) + 2px);
  background: color-mix(in srgb, var(--color-highlight, var(--color-accent)) 12%, var(--color-surface));
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 18%, transparent);
}

.m-template-uw99id .m-product-detail__price-current {
  margin: 0;
  font-size: clamp(1.45rem, 1.5vw + 0.75rem, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-accent);
}

.m-template-uw99id .m-product-detail__price-original {
  margin: calc(var(--space-unit) * 0.5) 0 0;
  font-size: 0.9375rem;
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
  text-decoration: line-through;
}

.m-template-uw99id .m-product-detail__price-note {
  margin: calc(var(--space-unit) * 0.35) 0 0;
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--color-text) 58%, transparent);
}

.m-template-uw99id .m-product-detail__kv {
  margin: 0 0 calc(var(--space-unit) * 1.5);
  padding: 0;
  display: grid;
  gap: calc(var(--space-unit) * 0.65);
  font-size: 0.875rem;
}

.m-template-uw99id .m-product-detail__kv div {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--space-unit) * 0.5);
  padding-bottom: calc(var(--space-unit) * 0.65);
  border-bottom: var(--border-width) solid color-mix(in srgb, var(--color-accent) 8%, var(--table-border));
}

.m-template-uw99id .m-product-detail__kv dt {
  flex: 0 0 5.5rem;
  margin: 0;
  font-weight: 600;
  color: color-mix(in srgb, var(--color-text) 58%, transparent);
}

.m-template-uw99id .m-product-detail__kv dd {
  margin: 0;
  flex: 1 1 12rem;
  color: var(--color-text);
}

.m-template-uw99id .m-product-detail__stock--in {
  color: color-mix(in srgb, #15803d 85%, var(--color-text));
  font-weight: 600;
}

.m-template-uw99id .m-product-detail__stock--out {
  color: color-mix(in srgb, #b91c1c 88%, var(--color-text));
  font-weight: 600;
}

.m-template-uw99id .m-product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--space-unit) * 1);
  margin: calc(var(--space-unit) * 1.75) 0 0;
}

.m-template-uw99id .m-product-detail__actions .m-casino-btn {
  min-height: 2.75rem;
  padding: calc(var(--space-unit) * 1.35) calc(var(--space-unit) * 2.25);
}

.m-template-uw99id .m-product-detail__trust {
  margin: calc(var(--space-unit) * 1.5) 0 0;
  padding-top: calc(var(--space-unit) * 1.25);
  border-top: var(--border-width) solid color-mix(in srgb, var(--color-accent) 10%, transparent);
  font-size: 0.75rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--color-text) 58%, transparent);
}

.m-template-uw99id .m-product-detail__below {
  margin-top: calc(var(--space-unit) * 3);
  padding-top: calc(var(--space-unit) * 2);
  border-top: var(--border-width) solid color-mix(in srgb, var(--color-accent) 14%, var(--table-border));
}

.m-template-uw99id .m-product-detail__nav {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--space-unit) * 0.5);
  margin: 0 0 calc(var(--space-unit) * 1.75);
  padding: 0;
  list-style: none;
}

.m-template-uw99id .m-product-detail__nav a {
  display: inline-flex;
  align-items: center;
  padding: calc(var(--space-unit) * 0.65) calc(var(--space-unit) * 1.15);
  border-radius: var(--radius-base);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: color-mix(in srgb, var(--color-text) 82%, transparent);
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 16%, transparent);
  background: color-mix(in srgb, var(--color-surface) 94%, transparent);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.m-template-uw99id .m-product-detail__nav a:hover {
  border-color: color-mix(in srgb, var(--color-primary) 45%, transparent);
  color: var(--color-primary);
}

.m-template-uw99id .m-product-detail__panel {
  margin-bottom: calc(var(--space-unit) * 2.5);
  scroll-margin-top: calc(var(--space-unit) * 6);
}

.m-template-uw99id .m-product-detail__panel-title {
  margin: 0 0 calc(var(--space-unit) * 1.15);
  padding-bottom: calc(var(--space-unit) * 0.85);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--color-primary) 35%, transparent);
  color: var(--color-text);
}

.m-template-uw99id .m-product-detail__variants-wrap {
  overflow-x: auto;
}

.m-template-uw99id .m-product-detail__variants {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.m-template-uw99id .m-product-detail__variants th,
.m-template-uw99id .m-product-detail__variants td {
  padding: calc(var(--space-unit) * 0.85) calc(var(--space-unit) * 1);
  text-align: left;
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 12%, var(--table-border));
}

.m-template-uw99id .m-product-detail__variants thead th {
  background: color-mix(in srgb, var(--color-primary) 10%, var(--color-surface));
  font-weight: 700;
  white-space: nowrap;
}

.m-template-uw99id .m-product-detail__variants tbody tr:nth-child(even) {
  background: color-mix(in srgb, var(--color-surface) 96%, transparent);
}

.m-template-uw99id .m-product-detail__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 16rem;
  margin: 0;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
  background: color-mix(in srgb, var(--color-surface) 92%, transparent);
}
.m-template-uw99id article.c-news {
  max-width: 52rem;
  padding: calc(var(--space-unit) * 3);
  border-radius: var(--radius-base);
  border: var(--border-width) solid var(--table-border);
  background: color-mix(in srgb, var(--color-surface) 70%, transparent);
}

.m-template-uw99id .c-news__title {
  margin: 0 0 calc(var(--space-unit) * 1);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.m-template-uw99id .m-casino-meta {
  margin: 0 0 calc(var(--space-unit) * 2);
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-text) 65%, transparent);
}

.m-template-uw99id article.c-news p {
  margin: 0 0 calc(var(--space-unit) * 2);
  line-height: var(--prose-line-height);
}

.m-template-uw99id article.c-news .author {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-text) 72%, transparent);
}

/* Newsletter */
.m-template-uw99id .m-casino-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--space-unit) * 2);
  align-items: flex-end;
  margin-top: calc(var(--space-unit) * 2);
}

.m-template-uw99id .m-casino-newsletter__field {
  flex: 1 1 14rem;
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-unit) * 0.75);
}

.m-template-uw99id .m-casino-newsletter__field label {
  font-weight: 600;
  font-size: 0.875rem;
}

.m-template-uw99id .m-casino-newsletter__field input {
  min-height: var(--form-field-height-sm);
  padding: calc(var(--space-unit) * 1.25) calc(var(--space-unit) * 1.5);
  border-radius: var(--form-radius);
  border: var(--border-width) solid var(--form-border);
  background: var(--form-bg);
  color: var(--color-text);
  font: inherit;
}

.m-template-uw99id .m-casino-newsletter__field input:focus-visible {
  outline: none;
  border-color: var(--form-border-focus);
  box-shadow: var(--form-focus-ring);
}

.m-template-uw99id .m-casino-newsletter__hint {
  margin: calc(var(--space-unit) * 2) 0 0;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--color-text) 65%, transparent);
}

/* Dual CTA */
.m-template-uw99id .m-casino-cta-split {
  display: grid;
  gap: calc(var(--space-unit) * 3);
  align-items: center;
}

@media (min-width: 48rem) {
  .m-template-uw99id .m-casino-cta-split {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  }
}

.m-template-uw99id .m-casino-cta-split p {
  margin: calc(var(--space-unit) * 1) 0 0;
  max-width: 42ch;
  line-height: var(--prose-line-height);
  color: color-mix(in srgb, var(--color-text) 88%, transparent);
}

.m-template-uw99id .m-casino-cta-split__actions {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--space-unit) * 2);
  justify-content: flex-start;
}

@media (min-width: 48rem) {
  .m-template-uw99id .m-casino-cta-split__actions {
    justify-content: flex-end;
  }
}

/* Partners */
.m-template-uw99id ul.m-casino-partners {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--space-unit) * 2);
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.m-template-uw99id .m-casino-partners__mark {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: calc(var(--space-unit) * 1.5) calc(var(--space-unit) * 2.5);
  border-radius: 999px;
  border: var(--border-width) dashed color-mix(in srgb, var(--color-accent) 45%, transparent);
  color: color-mix(in srgb, var(--color-text) 82%, transparent);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Service pills */
.m-template-uw99id ul.m-casino-pill-grid {
  display: grid;
  gap: calc(var(--space-unit) * 2);
  list-style: none;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
}

.m-template-uw99id li.m-casino-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(var(--space-unit) * 1);
  padding: calc(var(--space-unit) * 2);
  border-radius: var(--radius-base);
  border: var(--border-width) solid var(--table-border);
  background: color-mix(in srgb, var(--color-surface) 76%, transparent);
  font-weight: 600;
  color: color-mix(in srgb, var(--color-text) 90%, transparent);
}

/* Contact + aside */
.m-template-uw99id .m-casino-contact {
  display: grid;
  gap: calc(var(--space-unit) * 4);
}

@media (min-width: 48rem) {
  .m-template-uw99id .m-casino-contact {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: start;
  }
}

.m-template-uw99id address.m-casino-address {
  font-style: normal;
  line-height: var(--prose-line-height);
  color: color-mix(in srgb, var(--color-text) 88%, transparent);
}

.m-template-uw99id .m-casino-address__link {
  color: var(--color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.m-template-uw99id aside.m-casino-aside {
  padding: calc(var(--space-unit) * 2.5);
  border-radius: var(--radius-base);
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 30%, transparent);
  background: color-mix(in srgb, var(--color-accent) 6%, var(--color-surface));
}

.m-template-uw99id .m-casino-aside__title {
  margin: 0 0 calc(var(--space-unit) * 1.5);
  font-size: 0.95rem;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
}

.m-template-uw99id ul.m-casino-aside__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-unit) * 1.25);
}

.m-template-uw99id ul.m-casino-aside__list a {
  color: var(--color-primary);
  font-weight: 500;
}

body.m-template-uw99id ::selection {
  background: color-mix(in srgb, var(--color-highlight) 45%, transparent);
}

/* =============================================================================
   Detail layout modifiers
   ============================================================================= */

/* Detail pages inherit listing layout slug via `--lay-{slug}` on root (product/news/gallery/faq). */
@media (min-width: 56rem) {
  .m-template-uw99id .m-product-detail--lay-grid .m-product-detail__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: calc(var(--space-unit) * 1.65);
  }

  .m-template-uw99id .m-product-detail--lay-bento .m-product-detail__layout {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    gap: calc(var(--space-unit) * 2.5);
  }

  .m-template-uw99id .m-product-detail--lay-zigzag .m-product-detail__layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

  .m-template-uw99id .m-product-detail--lay-masonry .m-product-detail__layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }
}

.m-template-uw99id .m-product-detail--lay-center-stage .m-product-detail__layout {
  grid-template-columns: 1fr;
  max-width: 52rem;
  margin-inline: auto;
}

.m-template-uw99id .m-product-detail--lay-center-stage .m-product-detail__media {
  position: relative;
  top: auto;
}

.m-template-uw99id .m-product-detail--lay-bento .m-product-detail__stage,
.m-template-uw99id .m-product-detail--lay-carousel .m-product-detail__stage {
  border-radius: calc(var(--radius-base) + 8px);
}

.m-template-uw99id .m-product-detail--lay-card .m-product-detail__buybox {
  border-radius: calc(var(--radius-base) + 4px);
  padding: calc(var(--space-unit) * 1.25);
  border: var(--border-width) solid var(--listing-border);
  background: color-mix(in srgb, var(--color-surface) 96%, transparent);
}

.m-template-uw99id .m-news-detail--lay-editorial .m-news-detail__article {
  max-width: 40rem;
}

.m-template-uw99id .m-news-detail--lay-bento .m-news-detail__article {
  max-width: 56rem;
  padding: calc(var(--space-unit) * 1.25);
  border-radius: calc(var(--radius-base) + 4px);
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 10%, var(--table-border));
  background: color-mix(in srgb, var(--color-surface) 94%, transparent);
}

.m-template-uw99id .m-news-detail--lay-hybrid-list .m-news-detail__title {
  font-size: clamp(1.2rem, 1vw + 0.9rem, 1.65rem);
}

.m-template-uw99id .m-news-detail--lay-timeline .m-news-detail__article {
  border-left: 4px solid color-mix(in srgb, var(--color-primary) 55%, transparent);
  padding-left: calc(var(--space-unit) * 1.75);
}

.m-template-uw99id .m-gallery-detail--lay-fullscreen .m-gallery-detail__lead img {
  max-height: min(78vh, 40rem);
}

.m-template-uw99id .m-gallery-detail--lay-carousel .m-gallery-detail__lead {
  border-radius: calc(var(--radius-base) + 10px);
  box-shadow: var(--listing-shadow-card), 0 22px 70px color-mix(in srgb, var(--color-primary) 16%, transparent);
}

@media (min-width: 48rem) {
  .m-template-uw99id .m-gallery-detail--lay-masonry .m-gallery-detail__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .m-template-uw99id .m-gallery-detail--lay-filmstrip .m-gallery-detail__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: calc(var(--space-unit) * 0.85);
  }

  .m-template-uw99id .m-gallery-detail--lay-bento .m-gallery-detail__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 48rem) {
  .m-template-uw99id .m-gallery-detail--lay-bento .m-gallery-detail__cell:first-child {
    grid-column: span 2;
  }

  .m-template-uw99id .m-gallery-detail--lay-cards .m-gallery-detail__mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: calc(var(--space-unit) * 0.65);
  }

  .m-template-uw99id .m-gallery-detail--lay-cards .m-gallery-detail__tile--hero {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (min-width: 960px) {
  .m-template-uw99id .m-gallery-detail--lay-cards .m-gallery-detail__mosaic {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .m-template-uw99id .m-gallery-detail--lay-cards .m-gallery-detail__mosaic {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: calc(var(--space-unit) * 0.55);
  }
}

.m-template-uw99id .m-gallery-detail--lay-cards .m-gallery-detail__tile img {
  aspect-ratio: 3 / 2;
  min-height: 5.5rem;
}

.m-template-uw99id .m-gallery-detail--lay-cards .m-gallery-detail__tile--hero img {
  aspect-ratio: 3 / 2;
  min-height: 5.5rem;
}

.m-template-uw99id .m-faq-detail--lay-accordion .m-faq-detail__answer {
  border-left: 4px solid color-mix(in srgb, var(--color-primary) 50%, transparent);
  padding-left: calc(var(--space-unit) * 1.35);
}

.m-template-uw99id .m-faq-detail--lay-card .m-faq-detail__answer {
  padding: calc(var(--space-unit) * 1.5);
  border-radius: calc(var(--radius-base) + 3px);
  border: var(--border-width) solid var(--listing-border);
  box-shadow: var(--listing-shadow-card);
  background: color-mix(in srgb, var(--color-surface) 95%, transparent);
}

.m-template-uw99id .m-faq-detail--lay-sidebar .m-faq-detail__answer {
  padding-left: calc(var(--space-unit) * 1.85);
  border-left: 3px solid color-mix(in srgb, var(--color-accent) 55%, transparent);
}

.m-template-uw99id .m-faq-detail--lay-grid .m-faq-detail__answer {
  max-width: none;
  display: grid;
  gap: calc(var(--space-unit) * 1);
}

.m-template-uw99id .m-faq-detail--lay-search-centric .m-faq-detail__answer {
  max-width: 38rem;
  text-align: left;
}

/* =============================================================================
   Product listings (unique layouts only)
   ============================================================================= */

/* Product listings (lay/p) — shared */
.m-template-uw99id .m-product-list .m-card__link,
.m-template-uw99id .m-product-grid .m-card__link,
.m-template-uw99id .m-product-masonry .m-card__link,
.m-template-uw99id .m-product-center .m-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.m-template-uw99id .m-card__visual {
  position: relative;
  overflow: hidden;
}

.m-template-uw99id .m-card__eyebrow {
  margin: 0 0 calc(var(--space-unit) * 0.5);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-primary) 75%, var(--color-text));
}

/* Product — card */
.m-template-uw99id .m-product-list.m-product-list--card {
  display: grid;
  gap: var(--listing-gap-lg);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 14.5rem), 1fr));
  list-style: none;
  padding: 0;
  margin: calc(var(--space-unit) * 1.5) 0 0;
}

.m-template-uw99id .m-product-list .m-card--product {
  height: 100%;
  padding: 0;
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 28%, transparent);
  border-radius: calc(var(--radius-base) + 2px);
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--color-surface) 94%, transparent),
    color-mix(in srgb, var(--color-surface) 76%, var(--color-primary) 9%)
  );
  box-shadow: var(--listing-shadow-card);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

/* Product — grid */
.m-template-uw99id .m-product-grid {
  display: grid;
  gap: var(--listing-gap-md);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  padding: 0;
  margin: calc(var(--space-unit) * 1.5) 0 0;
}

@media (min-width: 40rem) {
  .m-template-uw99id .m-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .m-template-uw99id .m-product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.m-template-uw99id .m-product-grid .m-card--grid {
  padding: 0;
  border-radius: var(--radius-base);
  border: var(--border-width) solid var(--table-border);
  overflow: hidden;
  background: var(--listing-surface);
  transition: border-color 200ms ease, transform 200ms ease;
}

.m-template-uw99id .m-product-grid .m-card--grid:hover {
  border-color: color-mix(in srgb, var(--color-primary) 40%, transparent);
  transform: scale(1.02);
}

.m-template-uw99id .m-product-grid .m-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--space-unit) * 0.85);
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--color-primary) 82%, #000) 0%,
    transparent 62%
  );
  opacity: 0;
  transition: opacity 220ms ease;
}

.m-template-uw99id .m-product-grid .m-card--grid:hover .m-card__overlay,
.m-template-uw99id .m-product-grid .m-card--grid:focus-within .m-card__overlay {
  opacity: 1;
}

.m-template-uw99id .m-product-grid .m-card__overlay-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.m-template-uw99id .m-product-grid .m-card__price--overlay {
  margin: 0.35em 0 0;
  color: #fff;
  font-weight: 600;
}

.m-template-uw99id .m-product-grid .m-card__body--compact {
  padding: calc(var(--space-unit) * 0.75) calc(var(--space-unit) * 0.9);
  border-top: var(--border-width) solid color-mix(in srgb, var(--color-accent) 12%, transparent);
}

/* Product — bento */
.m-template-uw99id .m-product-bento {
  display: grid;
  gap: var(--listing-gap-md);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(9.5rem, auto);
  list-style: none;
  padding: 0;
  margin: calc(var(--space-unit) * 1.5) 0 0;
}

@media (min-width: 48rem) {
  .m-template-uw99id .m-product-bento {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(10.5rem, auto);
  }
}

.m-template-uw99id .m-product-bento__cell--hero {
  grid-column: span 2;
  grid-row: span 2;
}

.m-template-uw99id .m-product-bento__cell--wide {
  grid-column: span 2;
}

.m-template-uw99id .m-product-bento__cell--tall {
  grid-row: span 2;
}

.m-template-uw99id .m-product-bento .m-card--bento {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  padding: 0;
  border-radius: calc(var(--radius-base) + 2px);
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 22%, transparent);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: color-mix(in srgb, var(--color-surface) 90%, transparent);
}

.m-template-uw99id .m-product-bento .m-card--bento .m-card__visual {
  flex: 1 1 auto;
  min-height: 55%;
}

/* Product — masonry */
.m-template-uw99id .m-product-masonry {
  column-gap: calc(var(--space-unit) * 1.25);
  margin: calc(var(--space-unit) * 1.5) 0 0;
}

@media (min-width: 36rem) {
  .m-template-uw99id .m-product-masonry {
    columns: 2;
  }
}

@media (min-width: 56rem) {
  .m-template-uw99id .m-product-masonry {
    columns: 3;
  }
}

@media (min-width: 80rem) {
  .m-template-uw99id .m-product-masonry {
    columns: 4;
  }
}


/* Product — zigzag */
.m-template-uw99id .m-product-zigzag {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-unit) * 2);
  margin-top: calc(var(--space-unit) * 1.5);
}

.m-template-uw99id .m-card--zig {
  position: relative;
  display: grid;
  gap: var(--listing-gap-md);
  padding: calc(var(--space-unit) * 1.35) calc(var(--space-unit) * 1.45);
  border-radius: calc(var(--radius-base) + 2px);
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 22%, transparent);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--color-surface) 90%, transparent),
    color-mix(in srgb, var(--color-surface) 82%, var(--color-primary) 6%)
  );
  box-shadow: var(--listing-shadow-card);
}

@media (min-width: 48rem) {
  .m-template-uw99id .m-card--zig {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
    padding: calc(var(--space-unit) * 1.5);
  }

  .m-template-uw99id .m-card--zig-reverse {
    direction: rtl;
  }

  .m-template-uw99id .m-card--zig-reverse > * {
    direction: ltr;
  }
}

.m-template-uw99id .m-card--zig .m-cta {
  margin-top: calc(var(--space-unit) * 1.1);
  font-size: 0.9375rem;
}

.m-template-uw99id .m-card--zig .m-card__cover-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

/* Product — center stage */
.m-template-uw99id .m-product-center {
  display: grid;
  gap: calc(var(--space-unit) * 1.25);
  margin-top: calc(var(--space-unit) * 1.5);
}

@media (min-width: 48rem) {
  .m-template-uw99id .m-product-center {
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
    align-items: stretch;
  }
}

.m-template-uw99id .m-product-center .m-card--feature {
  padding: 0;
  border-radius: calc(var(--radius-base) + 3px);
  border: var(--border-width) solid color-mix(in srgb, var(--color-primary) 38%, transparent);
  overflow: hidden;
  background: linear-gradient(
    145deg,
    var(--listing-surface),
    color-mix(in srgb, var(--color-primary) 12%, var(--color-surface))
  );
  box-shadow: var(--listing-shadow-card), 0 16px 48px color-mix(in srgb, var(--color-primary) 14%, transparent);
}

.m-template-uw99id .m-product-center .m-card--feature .m-cta {
  margin-top: calc(var(--space-unit) * 1);
  /* visual → .m-btn--accent when markup includes m-btn */
}

.m-template-uw99id .m-product-center__rail {
  display: flex;
  flex-direction: row;
  gap: calc(var(--space-unit) * 0.85);
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 48rem) {
  .m-template-uw99id .m-product-center__rail {
    flex-direction: column;
    overflow-x: visible;
    overflow-y: auto;
    max-height: 100%;
  }
}

.m-template-uw99id .m-product-center__rail-item {
  flex: 0 0 min(72%, 11rem);
  scroll-snap-align: start;
}

@media (min-width: 48rem) {
  .m-template-uw99id .m-product-center__rail-item {
    flex: 0 0 auto;
  }
}

.m-template-uw99id .m-product-center .m-card--thumb {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 5.5rem;
  padding: 0;
  border-radius: calc(var(--radius-base) + 1px);
  border: var(--border-width) solid var(--listing-border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: var(--listing-surface-elevated);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--color-accent) 12%, transparent);
  transition: var(--listing-transition-shell-flat);
}

@media (min-width: 48rem) {
  .m-template-uw99id .m-product-center .m-card--thumb {
    flex-direction: column;
    min-height: 0;
  }
}

.m-template-uw99id .m-product-center .m-card--thumb:hover {
  border-color: color-mix(in srgb, var(--color-primary) 40%, transparent);
  box-shadow: var(--listing-shadow-card);
}

/* =============================================================================
   News listings (unique layouts only)
   ============================================================================= */

/* News listings (lay/n) — shared */
.m-template-uw99id .m-news__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-base);
  aspect-ratio: 16 / 9;
  background: color-mix(in srgb, var(--color-surface) 88%, var(--color-primary) 12%);
}

.m-template-uw99id .m-news__media--lead {
  aspect-ratio: 16 / 10;
}

.m-template-uw99id .m-news__media--timeline {
  aspect-ratio: 4 / 3;
  max-width: 12rem;
}

.m-template-uw99id .m-news__date {
  display: block;
  margin: 0 0 calc(var(--space-unit) * 0.5);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 62%, transparent);
}

.m-template-uw99id .m-news__headline {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.35;
  color: var(--color-text);
}

.m-template-uw99id .m-news__headline--lead {
  font-size: clamp(1.35rem, 2.2vw + 0.65rem, 2rem);
}

.m-template-uw99id .m-news__headline--spotlight {
  font-size: clamp(1.1rem, 1vw + 0.75rem, 1.35rem);
}

.m-template-uw99id .m-news__excerpt {
  margin: calc(var(--space-unit) * 0.85) 0 0;
  font-size: 0.9375rem;
  line-height: var(--prose-line-height);
  color: color-mix(in srgb, var(--color-text) 80%, transparent);
}

.m-template-uw99id .m-news__read-more {
  display: inline-block;
  margin-top: calc(var(--space-unit) * 1);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* News — bento_grid (story tiles, text below image) */
.m-template-uw99id .m-news-bento {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(10.5rem, auto);
  gap: var(--listing-gap-md);
  list-style: none;
  padding: 0;
  margin: calc(var(--space-unit) * 1.5) 0 0;
}

@media (min-width: 48rem) {
  .m-template-uw99id .m-news-bento {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(11rem, auto);
  }

  .m-template-uw99id .m-news-bento__cell--lead {
    grid-column: span 2;
    grid-row: span 2;
  }

  .m-template-uw99id .m-news-bento__cell--wide {
    grid-column: span 2;
  }

  .m-template-uw99id .m-news-bento__cell--feature {
    grid-row: span 2;
  }
}

/* Soft 2-col mosaic on small screens */
.m-template-uw99id .m-news-bento__cell--lead,
.m-template-uw99id .m-news-bento__cell--wide {
  grid-column: span 2;
}

.m-template-uw99id .m-news-bento__cell--feature {
  grid-row: span 2;
}

.m-template-uw99id .m-news-bento__card {
  height: 100%;
  margin: 0;
  border-radius: calc(var(--radius-base) + 2px);
  border: var(--border-width) solid var(--listing-border);
  background: var(--listing-surface);
  box-shadow: var(--listing-shadow-card);
  overflow: visible;
  transition: var(--listing-transition-shell);
}

.m-template-uw99id .m-news-bento__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: inherit;
}

.m-template-uw99id .m-news-bento__cell:hover .m-news-bento__card,
.m-template-uw99id .m-news-bento__cell:focus-within .m-news-bento__card {
  border-color: var(--listing-border-hover);
  box-shadow: var(--listing-shadow-card-hover);
  transform: var(--listing-hover-lift);
}

.m-template-uw99id .m-news-bento__body {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-unit) * 0.35);
  padding: calc(var(--space-unit) * 0.95) calc(var(--space-unit) * 1.05);
  flex: 1 1 auto;
}

.m-template-uw99id .m-news-bento__cell--lead .m-news-bento__body {
  padding: calc(var(--space-unit) * 1.15) calc(var(--space-unit) * 1.25);
}

.m-template-uw99id .m-news-bento .m-news__media {
  border-radius: 0;
  flex: 0 0 auto;
}

.m-template-uw99id .m-news__media--bento-lead {
  aspect-ratio: 16 / 10;
}

.m-template-uw99id .m-news__media--bento-feature {
  aspect-ratio: 3 / 4;
  flex: 1 1 auto;
  min-height: 8rem;
}

.m-template-uw99id .m-news__media--bento-wide {
  aspect-ratio: 21 / 9;
}

.m-template-uw99id .m-news__media--bento-compact {
  aspect-ratio: 16 / 9;
}

.m-template-uw99id .m-news-bento__cell--lead .m-news-bento__headline {
  font-size: clamp(1.15rem, 1.5vw + 0.75rem, 1.55rem);
}

.m-template-uw99id .m-news-bento__cell--compact .m-news-bento__headline {
  font-size: 0.95rem;
}

.m-template-uw99id .m-news-bento__excerpt {
  margin: calc(var(--space-unit) * 0.35) 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--color-text) 72%, transparent);
}

@media (prefers-reduced-motion: reduce) {
  .m-template-uw99id .m-news-bento__card,
  .m-template-uw99id .m-news-bento__cell:hover .m-news-bento__card,
  .m-template-uw99id .m-news-bento__cell:focus-within .m-news-bento__card {
    transition: none;
    transform: none;
  }
}

/* News — editorial */
.m-template-uw99id .m-news-editorial {
  margin-top: calc(var(--space-unit) * 1.5);
}

.m-template-uw99id .m-news--lead {
  width: 100%;
  max-width: none;
  padding: 0;
  margin-bottom: calc(var(--space-unit) * 2.25);
  border-radius: calc(var(--radius-base) + 3px);
  border: var(--border-width) solid color-mix(in srgb, var(--color-primary) 28%, transparent);
  overflow: hidden;
  background: color-mix(in srgb, var(--color-surface) 90%, transparent);
  box-shadow: var(--listing-shadow-card);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.m-template-uw99id .m-news--lead:hover {
  border-color: color-mix(in srgb, var(--color-primary) 45%, transparent);
  box-shadow: var(--listing-shadow-card-hover);
}

.m-template-uw99id .m-news__lead-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.m-template-uw99id .m-news__lead-grid {
  display: grid;
  gap: calc(var(--space-unit) * 1.25);
}

@media (min-width: 48rem) {
  .m-template-uw99id .m-news__lead-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: center;
  }
}

.m-template-uw99id .m-news__lead-copy {
  padding: calc(var(--space-unit) * 1.1) calc(var(--space-unit) * 1.25);
}

@media (min-width: 48rem) {
  .m-template-uw99id .m-news__lead-copy {
    padding: calc(var(--space-unit) * 1.5);
  }
}

.m-template-uw99id .m-news-editorial__grid {
  display: grid;
  gap: var(--listing-gap-lg);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 14rem), 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}

.m-template-uw99id .m-news-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.m-template-uw99id .m-news-card__body {
  padding: calc(var(--space-unit) * 1.05) calc(var(--space-unit) * 1.15);
}

.m-template-uw99id .m-news-card .m-news__headline {
  font-size: 1rem;
}

.m-template-uw99id .m-news__tail-wrap {
  margin-top: calc(var(--space-unit) * 2.5);
  padding-top: calc(var(--space-unit) * 1.5);
  border-top: var(--border-width) solid var(--table-border);
}

.m-template-uw99id .m-news__tail-title {
  margin: 0 0 calc(var(--space-unit) * 1);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
}

.m-template-uw99id .m-news__tail {
  list-style: none;
  padding: 0;
  margin: 0;
}

.m-template-uw99id .m-news__tail li {
  border-bottom: var(--border-width) solid var(--table-border);
}

.m-template-uw99id .m-news__tail-link {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: calc(var(--space-unit) * 0.75);
  padding: calc(var(--space-unit) * 0.85) 0;
  text-decoration: none;
  color: inherit;
  transition: color 180ms ease;
}

.m-template-uw99id .m-news__tail-link:hover {
  color: var(--color-primary);
}

.m-template-uw99id .m-news__tail-link .m-news__date {
  margin: 0;
  flex: 0 0 auto;
}

.m-template-uw99id .m-news__tail-headline {
  font-weight: 600;
  line-height: 1.4;
}

/* News — timeline */
.m-template-uw99id .m-news-timeline {
  list-style: none;
  padding: 0 0 0 calc(var(--space-unit) * 2.25);
  margin: calc(var(--space-unit) * 1.5) 0 0;
  border-left: 2px solid color-mix(in srgb, var(--color-primary) 50%, var(--table-border));
}

.m-template-uw99id .m-news__node {
  position: relative;
  margin-bottom: calc(var(--space-unit) * 2);
}

.m-template-uw99id .m-news__node-marker {
  position: absolute;
  left: calc(var(--space-unit) * -2.25 - 6px);
  top: 0.55rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-primary) 22%, transparent);
}

.m-template-uw99id .m-news__node-link {
  display: grid;
  gap: calc(var(--space-unit) * 1);
  padding: calc(var(--space-unit) * 1.15);
  border-radius: calc(var(--radius-base) + 2px);
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 10%, transparent);
  background: color-mix(in srgb, var(--color-surface) 94%, transparent);
  box-shadow: var(--listing-shadow-card);
  text-decoration: none;
  color: inherit;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.m-template-uw99id .m-news__node-link:hover {
  border-color: color-mix(in srgb, var(--color-primary) 32%, var(--table-border));
  background: color-mix(in srgb, var(--color-surface) 97%, transparent);
  box-shadow: var(--listing-shadow-card-hover);
}

@media (min-width: 40rem) {
  .m-template-uw99id .m-news__node-link {
    grid-template-columns: minmax(0, 7.5rem) minmax(0, 1fr);
    align-items: start;
  }
}

.m-template-uw99id .m-news__node-date-col .m-news__date {
  font-size: 0.8125rem;
  line-height: 1.4;
}

.m-template-uw99id .m-news__node-content .m-news__headline {
  font-size: 1.05rem;
}

@media (min-width: 40rem) {
  .m-template-uw99id .m-news__node-content {
    display: grid;
    grid-template-columns: minmax(0, 11rem) minmax(0, 1fr);
    gap: calc(var(--space-unit) * 1);
    align-items: start;
  }
}

/* =============================================================================
   FAQ listings (unique layouts only)
   ============================================================================= */

/* FAQ listings (lay/faq) — shared */
.m-template-uw99id .m-faq__item {
  border: var(--border-width) solid var(--listing-border-soft);
  border-radius: calc(var(--radius-base) + 2px);
  background: var(--listing-surface-elevated);
  box-shadow: var(--listing-shadow-card);
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.m-template-uw99id .m-faq__item[open] {
  border-color: color-mix(in srgb, var(--color-primary) 42%, var(--table-border));
  box-shadow: var(--listing-shadow-card-hover);
}

.m-template-uw99id .m-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(var(--space-unit) * 1);
  cursor: pointer;
  padding: calc(var(--space-unit) * 1.1) calc(var(--space-unit) * 1.25);
  font-weight: 600;
  list-style: none;
  font-family: var(--font-heading);
  line-height: 1.4;
}

.m-template-uw99id .m-faq__q::-webkit-details-marker {
  display: none;
}

.m-template-uw99id .m-faq__q-text {
  flex: 1 1 auto;
  min-width: 0;
}

.m-template-uw99id .m-faq__chevron {
  flex-shrink: 0;
  width: 0.65rem;
  height: 0.65rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.65;
  transition: transform 200ms ease, opacity 200ms ease;
}

.m-template-uw99id .m-faq__item[open] .m-faq__chevron {
  transform: rotate(-135deg);
  opacity: 1;
}

.m-template-uw99id .m-faq__panel {
  padding: 0 calc(var(--space-unit) * 1.25) calc(var(--space-unit) * 1.15);
  border-top: var(--border-width) solid color-mix(in srgb, var(--color-accent) 8%, transparent);
}

.m-template-uw99id .m-faq__a {
  margin: 0;
  color: color-mix(in srgb, var(--color-text) 88%, transparent);
  line-height: var(--prose-line-height);
}

.m-template-uw99id .m-faq__more {
  margin: calc(var(--space-unit) * 0.85) 0 0;
}

.m-template-uw99id .m-faq__more-link,
.m-template-uw99id .m-faq__more-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-primary);
  text-decoration: none;
}

.m-template-uw99id .m-faq__more-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.m-template-uw99id .m-faq__q-link {
  color: inherit;
  text-decoration: none;
}

.m-template-uw99id .m-faq__q-link:hover {
  color: var(--color-primary);
}

/* FAQ card / grid — whole-surface link (same pattern as product .m-card__link) */
.m-template-uw99id .m-faq-card .m-card__link,
.m-template-uw99id .m-faq-grid .m-card__link,
.m-template-uw99id .m-faq-card__shell,
.m-template-uw99id .m-faq-grid__shell {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.m-template-uw99id .m-faq-card .m-card__link:hover .m-faq__q--card,
.m-template-uw99id .m-faq-grid .m-card__link:hover .m-faq__q--tile {
  color: var(--color-primary);
}

.m-template-uw99id .m-faq-card .m-card__link:hover .m-faq__more-label,
.m-template-uw99id .m-faq-grid .m-card__link:hover .m-faq__more-label {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.m-template-uw99id .m-faq__excerpt {
  margin: calc(var(--space-unit) * 0.65) 0 0;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-text) 72%, transparent);
  line-height: 1.5;
}

/* FAQ — accordion */
.m-template-uw99id .m-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--listing-gap-sm);
  margin: calc(var(--space-unit) * 1.5) 0 0;
}

/* FAQ — grid */
.m-template-uw99id .m-faq-grid {
  display: grid;
  gap: var(--listing-gap-md);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 16rem), 1fr));
  list-style: none;
  padding: 0;
  margin: calc(var(--space-unit) * 1.5) 0 0;
}

.m-template-uw99id .m-faq__q--tile {
  margin: 0 0 calc(var(--space-unit) * 0.75);
  font-size: 1rem;
  padding: 0;
}

.m-template-uw99id .m-faq__tile--preview {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 9rem;
  padding: 0;
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 20%, transparent);
  border-radius: calc(var(--radius-base) + 2px);
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--color-surface) 96%, transparent),
    color-mix(in srgb, var(--color-surface) 88%, var(--color-primary) 6%)
  );
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  overflow: hidden;
}

.m-template-uw99id .m-faq-grid .m-faq-grid__shell {
  padding: calc(var(--space-unit) * 1.1) calc(var(--space-unit) * 1.15);
}

.m-template-uw99id .m-faq__excerpt--tile {
  flex: 1 1 auto;
  margin: 0 0 calc(var(--space-unit) * 0.85);
  font-size: 0.875rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--color-text) 72%, transparent);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.m-template-uw99id .m-faq__tile--preview .m-faq__more,
.m-template-uw99id .m-faq-card .m-faq__more {
  margin-top: auto;
  margin-bottom: 0;
}

.m-template-uw99id .m-faq__a--tile {
  display: none;
}

/* FAQ — card */
.m-template-uw99id .m-faq-card {
  display: grid;
  gap: var(--listing-gap-md);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr));
  list-style: none;
  padding: 0;
  margin: calc(var(--space-unit) * 1.5) 0 0;
}

.m-template-uw99id .m-faq-card .m-card--faq {
  height: 100%;
  padding: 0;
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 22%, transparent);
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--color-surface) 94%, transparent),
    color-mix(in srgb, var(--color-surface) 82%, var(--color-primary) 8%)
  );
  overflow: hidden;
}

.m-template-uw99id .m-faq-card .m-faq-card__shell {
  padding: calc(var(--space-unit) * 1.2) calc(var(--space-unit) * 1.25) calc(var(--space-unit) * 1.35);
}

.m-template-uw99id .m-faq-card .m-faq__media,
.m-template-uw99id .m-faq-grid .m-faq__media {
  margin: 0 0 calc(var(--space-unit) * 0.85);
  border-radius: calc(var(--radius-base) + 2px);
  overflow: hidden;
}

.m-template-uw99id .m-faq-card .m-faq__media-img,
.m-template-uw99id .m-faq-grid .m-faq__media-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.m-template-uw99id .m-faq__q--card {
  margin: 0;
  padding: 0;
  font-size: 1.05rem;
}

.m-template-uw99id .m-faq__cat-badge {
  margin: 0 0 calc(var(--space-unit) * 0.55);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.m-template-uw99id .m-faq__excerpt--card {
  margin: calc(var(--space-unit) * 0.65) 0 calc(var(--space-unit) * 0.85);
  font-size: 0.875rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--color-text) 72%, transparent);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.m-template-uw99id .m-faq__a--card {
  display: none;
}

/* =============================================================================
   Gallery listings (unique layouts only)
   ============================================================================= */

/* Gallery listings (lay/g) — shared */
.m-template-uw99id .m-gallery__link,
.m-template-uw99id .m-gallery__link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: calc(var(--radius-base) + 2px);
}

.m-template-uw99id .m-gallery__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.m-template-uw99id .m-gallery__placeholder {
  display: block;
  width: 100%;
  min-height: 10rem;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius-base) + 2px);
  background: color-mix(in srgb, var(--color-surface) 88%, var(--color-primary) 12%);
}

.m-template-uw99id .m-gallery__caption {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.35;
}

/* Gallery — masonry */
.m-template-uw99id .m-gallery-masonry {
  column-gap: var(--listing-gap-md);
  margin: calc(var(--space-unit) * 1.5) 0 0;
}

@media (min-width: 36rem) {
  .m-template-uw99id .m-gallery-masonry {
    columns: 2;
  }
}

@media (min-width: 56rem) {
  .m-template-uw99id .m-gallery-masonry {
    columns: 3;
  }
}

@media (min-width: 80rem) {
  .m-template-uw99id .m-gallery-masonry {
    columns: 4;
  }
}

.m-template-uw99id .m-gallery-masonry .m-gallery__link:hover .m-gallery__caption--overlay,
.m-template-uw99id .m-gallery-masonry .m-gallery__link:focus-visible .m-gallery__caption--overlay {
  opacity: 1;
}

.m-template-uw99id .m-gallery-masonry .m-gallery__item--tall .m-gallery__img,
.m-template-uw99id .m-gallery-masonry .m-gallery__item--tall .m-gallery__placeholder {
  aspect-ratio: 3 / 4;
  min-height: 14rem;
}

.m-template-uw99id .m-gallery-masonry .m-gallery__img {
  height: auto;
  width: 100%;
  border-radius: 0;
}

/* Gallery — cards (uniform photo-wall grid) */
.m-template-uw99id .m-gallery-cards {
  display: grid;
  grid-template-columns: repeat(var(--gallery-cards-cols-sm, 2), minmax(0, 1fr));
  gap: calc(var(--space-unit) * 0.75);
  list-style: none;
  padding: 0;
  margin: calc(var(--space-unit) * 1.5) 0 0;
}

@media (min-width: 40rem) {
  .m-template-uw99id .m-gallery-cards {
    grid-template-columns: repeat(var(--gallery-cards-cols-md, 3), minmax(0, 1fr));
    gap: var(--listing-gap-sm, calc(var(--space-unit) * 0.85));
  }
}

@media (min-width: 64rem) {
  .m-template-uw99id .m-gallery-cards {
    grid-template-columns: repeat(var(--gallery-cards-cols-lg, 5), minmax(0, 1fr));
    gap: var(--listing-gap-md);
  }
}

.m-template-uw99id .m-gallery-cards__cell {
  margin: 0;
  min-width: 0;
}

.m-template-uw99id .m-gallery-cards__card {
  margin: 0;
  height: 100%;
}

.m-template-uw99id .m-gallery-cards__link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.m-template-uw99id .m-gallery-cards__img,
.m-template-uw99id .m-gallery-cards__link .m-gallery__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: var(--gallery-cards-aspect, 3 / 2);
  border-radius: 0;
}

.m-template-uw99id .m-gallery__caption--cards {
  position: absolute;
  inset: auto 0 0 0;
  padding: calc(var(--space-unit) * 1.75) calc(var(--space-unit) * 0.75) calc(var(--space-unit) * 0.65);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  background: linear-gradient(to top, color-mix(in srgb, var(--color-primary) 88%, #000), transparent);
  opacity: 0;
  transition: opacity 200ms ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.m-template-uw99id .m-gallery-cards__link:hover .m-gallery__caption--cards,
.m-template-uw99id .m-gallery-cards__link:focus-visible .m-gallery__caption--cards {
  opacity: 1;
}

/* Image Store — grid (flat platform images, no detail links) */
.m-template-uw99id .m-image-grid {
  display: grid;
  grid-template-columns: repeat(var(--image-grid-cols-sm, 2), minmax(0, 1fr));
  gap: calc(var(--space-unit) * 0.75);
  list-style: none;
  padding: 0;
  margin: calc(var(--space-unit) * 1.5) 0 0;
}

@media (min-width: 40rem) {
  .m-template-uw99id .m-image-grid {
    grid-template-columns: repeat(var(--image-grid-cols-md, 3), minmax(0, 1fr));
    gap: var(--listing-gap-sm, calc(var(--space-unit) * 0.85));
  }
}

@media (min-width: 64rem) {
  .m-template-uw99id .m-image-grid {
    grid-template-columns: repeat(var(--image-grid-cols-lg, 4), minmax(0, 1fr));
    gap: var(--listing-gap-md, calc(var(--space-unit) * 1));
  }
}

.m-template-uw99id .m-image-grid__cell {
  margin: 0;
  min-width: 0;
}

/* grid2: first cell double width + double height */
.m-template-uw99id .m-image-grid--featured .m-image-grid__cell--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.m-template-uw99id .m-image-grid--featured .m-image-grid__cell--featured .m-image-grid__figure {
  height: 100%;
}

.m-template-uw99id .m-image-grid__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md, 0.5rem);
  background: var(--surface-2, #e2e8f0);
  aspect-ratio: var(--image-grid-aspect, 1 / 1);
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition:
    outline-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.m-template-uw99id .m-image-grid__cell:hover .m-image-grid__figure,
.m-template-uw99id .m-image-grid__cell:focus-within .m-image-grid__figure {
  outline-color: color-mix(in srgb, var(--color-primary, #2563eb) 55%, transparent);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--color-primary, #2563eb) 35%, transparent),
    0 8px 20px color-mix(in srgb, var(--color-primary, #2563eb) 18%, transparent);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .m-template-uw99id .m-image-grid__figure {
    transition: none;
  }

  .m-template-uw99id .m-image-grid__cell:hover .m-image-grid__figure,
  .m-template-uw99id .m-image-grid__cell:focus-within .m-image-grid__figure {
    transform: none;
  }
}

.m-template-uw99id .m-image-grid__img,
.m-template-uw99id .m-image-grid__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-template-uw99id .m-image-grid__placeholder {
  min-height: 6rem;
  background:
    linear-gradient(135deg, #e2e8f0 25%, #f1f5f9 25%, #f1f5f9 50%, #e2e8f0 50%, #e2e8f0 75%, #f1f5f9 75%);
  background-size: 16px 16px;
}

.m-template-uw99id .m-image-grid__caption {
  margin: 0;
  padding: 0.55rem 0.65rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-muted, #64748b);
  background: var(--surface, #fff);
}

/* grid-caption: caption pinned to image bottom with theme tokens (40% transparent) */
.m-template-uw99id .m-image-grid--caption .m-image-grid__caption--on-image {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  margin: 0;
  padding: calc(var(--space-unit, 0.5rem) * 0.9) calc(var(--space-unit, 0.5rem) * 1);
  font-size: 0.85rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--text, #0f172a);
  background: color-mix(in srgb, var(--surface, #fff) 60%, transparent);
  border-top: 1px solid color-mix(in srgb, var(--border, #e2e8f0) 60%, transparent);
}

.m-template-uw99id .m-gallery__caption--overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: calc(var(--space-unit) * 2.5) calc(var(--space-unit) * 1) calc(var(--space-unit) * 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, color-mix(in srgb, var(--color-primary) 85%, #000), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.m-template-uw99id .m-gallery__link:hover .m-gallery__caption--overlay,
.m-template-uw99id .m-gallery__link:focus-visible .m-gallery__caption--overlay {
  opacity: 1;
}

.m-template-uw99id .m-gallery__link {
  position: relative;
}

.m-template-uw99id .m-gallery__open-hint {
  position: absolute;
  right: calc(var(--space-unit) * 0.65);
  bottom: calc(var(--space-unit) * 0.65);
  z-index: 1;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: color-mix(in srgb, #000 55%, transparent);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}

.m-template-uw99id .m-gallery__link:hover .m-gallery__open-hint,
.m-template-uw99id .m-gallery__link:focus-visible .m-gallery__open-hint {
  opacity: 1;
}

/* Gallery — bento */
.m-template-uw99id .m-gallery-bento {
  display: grid;
  gap: var(--listing-gap-md);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(8.5rem, auto);
  list-style: none;
  padding: 0;
  margin: calc(var(--space-unit) * 1.5) 0 0;
}

@media (min-width: 48rem) {
  .m-template-uw99id .m-gallery-bento {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(9.5rem, auto);
  }
}

.m-template-uw99id .m-gallery-bento__cell--hero {
  grid-column: span 2;
  grid-row: span 2;
}

.m-template-uw99id .m-gallery-bento__cell--wide {
  grid-column: span 2;
}

.m-template-uw99id .m-gallery-bento__cell--tall {
  grid-row: span 2;
}

.m-template-uw99id .m-gallery-bento__album {
  height: 100%;
  min-height: 100%;
  border: var(--border-width) solid var(--listing-border-accent);
}

.m-template-uw99id .m-gallery-bento__album .m-gallery__img,
.m-template-uw99id .m-gallery-bento__album .m-gallery__placeholder {
  min-height: 100%;
  aspect-ratio: auto;
}

.m-template-uw99id .m-gallery__caption--bento {
  position: absolute;
  inset: auto 0 0 0;
  padding: calc(var(--space-unit) * 1);
  font-size: 0.8125rem;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* Gallery — filmstrip */
.m-template-uw99id .m-gallery-filmstrip {
  margin: calc(var(--space-unit) * 1.5) 0 0;
  padding-bottom: calc(var(--space-unit) * 0.75);
}

.m-template-uw99id .m-gallery-filmstrip__hint {
  margin: 0 0 calc(var(--space-unit) * 0.75);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
  text-align: center;
}

.m-template-uw99id .m-gallery-filmstrip__track {
  display: flex;
  gap: var(--listing-gap-md);
  list-style: none;
  padding: 0 calc(var(--space-unit) * 0.5) calc(var(--space-unit) * 0.5);
  margin: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.m-template-uw99id .m-gallery-filmstrip__slide {
  flex: 0 0 clamp(13rem, 38vw, 20rem);
  scroll-snap-align: center;
}

.m-template-uw99id .m-gallery-filmstrip__frame {
  aspect-ratio: 3 / 4;
  border: var(--border-width) solid var(--listing-border-soft);
  transition: var(--listing-transition-shell-flat);
}

.m-template-uw99id .m-gallery-filmstrip__frame:hover {
  border-color: var(--listing-border-hover);
  box-shadow: var(--listing-shadow-card-hover);
}

.m-template-uw99id .m-gallery__caption--filmstrip {
  position: absolute;
  inset: auto 0 0 0;
  padding: calc(var(--space-unit) * 0.85);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
}

/* Gallery — fullscreen */
.m-template-uw99id .m-gallery-fullscreen {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-unit) * 0.5);
  margin: calc(var(--space-unit) * 1.5) 0 0;
  scroll-snap-type: y proximity;
}

.m-template-uw99id .m-gallery__hero {
  position: relative;
  min-height: min(80vh, 42rem);
  border-radius: calc(var(--radius-base) + 3px);
  overflow: hidden;
  border: var(--border-width) solid color-mix(in srgb, var(--color-primary) 28%, transparent);
  box-shadow: var(--listing-shadow-card);
  scroll-snap-align: start;
}

.m-template-uw99id .m-gallery__hero-link {
  min-height: inherit;
  border-radius: inherit;
}

.m-template-uw99id .m-gallery__hero .m-gallery__img {
  position: absolute;
  inset: 0;
  height: 100%;
  border-radius: 0;
}

.m-template-uw99id .m-gallery__hero-scrim {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--space-unit) * 2) calc(var(--space-unit) * 1.75);
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--color-primary) 75%, #000) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.m-template-uw99id .m-gallery__hero-index {
  position: absolute;
  top: calc(var(--space-unit) * 1.25);
  right: calc(var(--space-unit) * 1.25);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  opacity: 0.85;
}

.m-template-uw99id .m-gallery__caption--hero {
  font-size: clamp(1.2rem, 2vw + 0.5rem, 1.75rem);
  color: #fff;
}

.m-template-uw99id .m-gallery__hero-cta {
  margin-top: calc(var(--space-unit) * 0.85);
  font-size: 0.875rem;
  font-weight: 600;
  color: color-mix(in srgb, #fff 88%, var(--color-accent));
}

/* Gallery — carousel */
.m-template-uw99id .m-gallery-carousel {
  margin: calc(var(--space-unit) * 1.5) 0 0;
}

.m-template-uw99id .m-gallery-carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border-radius: calc(var(--radius-base) + 2px);
  border: var(--border-width) solid var(--listing-border);
  box-shadow: var(--listing-shadow-card);
  scrollbar-width: none;
}

.m-template-uw99id .m-gallery-carousel__track::-webkit-scrollbar {
  display: none;
}

.m-template-uw99id .m-gallery-carousel__slide {
  flex: 0 0 100%;
  margin: 0;
  scroll-snap-align: center;
  aspect-ratio: 16 / 9;
  background: var(--listing-surface);
}

.m-template-uw99id .m-gallery-carousel__slide-link {
  height: 100%;
  border-radius: 0;
}

.m-template-uw99id .m-gallery__caption--carousel {
  position: absolute;
  inset: auto 0 0 0;
  padding: calc(var(--space-unit) * 1.1) calc(var(--space-unit) * 1.25);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
}

.m-template-uw99id .m-gallery-carousel__controls {
  display: flex;
  justify-content: center;
  gap: calc(var(--space-unit) * 1);
  margin-top: calc(var(--space-unit) * 1.1);
}

.m-template-uw99id .m-gallery-carousel__btn {
  min-width: 2.75rem;
  min-height: 2.75rem;
  border-radius: 50%;
  border: var(--border-width) solid var(--listing-border);
  background: color-mix(in srgb, var(--color-surface) 94%, transparent);
  box-shadow: var(--listing-shadow-card);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.m-template-uw99id .m-gallery-carousel__btn:hover {
  border-color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 12%, var(--color-surface));
  box-shadow: var(--listing-shadow-card-hover);
}

.m-template-uw99id .m-gallery-carousel__btn:active {
  transform: scale(0.96);
}

.m-template-uw99id .m-gallery-carousel__btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* =============================================================================
   Banner listings (unique layouts only)
   ============================================================================= */

/* Banner listings (lay/banner) — autoplay active states */
.m-template-uw99id .m-banner-stacked {
  position: relative;
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-base);
  overflow: hidden;
}

.m-template-uw99id .m-banner-stacked .m-banner__card {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms ease;
  z-index: 1;
}

.m-template-uw99id .m-banner-stacked .m-banner__card.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.m-template-uw99id .m-banner-accordion .m-banner__panel {
  flex: 1 1 0;
  min-width: 0;
  transition: flex 400ms ease;
}

.m-template-uw99id .m-banner-accordion .m-banner__panel.is-active {
  flex: 4 1 0;
}

.m-template-uw99id .m-banner-marquee {
  position: relative;
  overflow: hidden;
}

.m-template-uw99id .m-banner-stacked-cards {
  position: relative;
  overflow: hidden;
}

.m-template-uw99id .m-banner-stacked-cards [data-banner-slide].is-active {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.m-template-uw99id .m-banner__thumbs [data-banner-thumb] {
  opacity: 0.55;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: opacity 300ms ease, outline-color 300ms ease;
}

.m-template-uw99id .m-banner__thumbs [data-banner-thumb].is-active {
  opacity: 1;
  outline-color: color-mix(in srgb, var(--color-accent) 65%, transparent);
}

/* =============================================================================
   Module hub (unique layouts only)
   ============================================================================= */

/* Module hub — /p/, /n/, /g/, /faq */
.m-template-uw99id .c-module-hub.m-module-hub {
  margin: calc(var(--space-unit) * 1.5) 0 calc(var(--space-unit) * 2.5);
}

.m-template-uw99id .m-module-hub__section + .m-module-hub__section {
  margin-top: calc(var(--space-unit) * 2.75);
}

.m-template-uw99id .m-module-hub__title {
  margin: 0 0 calc(var(--space-unit) * 1.35);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.m-template-uw99id .m-module-hub__intro {
  position: relative;
  isolation: isolate;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1rem, 2.8vw, 1.75rem) clamp(1rem, 3vw, 1.85rem);
  padding-left: clamp(1.1rem, 3vw, 1.95rem);
  border-radius: calc(var(--radius-base) + 6px);
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 28%, var(--table-border));
  background:
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--color-surface) 82%, transparent) 0%,
      color-mix(in srgb, var(--color-surface) 58%, transparent) 100%
    );
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--color-accent) 14%, transparent),
    0 12px 36px color-mix(in srgb, #000 38%, transparent),
    inset 0 1px 0 color-mix(in srgb, var(--color-text) 8%, transparent);
  overflow: hidden;
}

/* Editorial rail — hierarchy without relying on color alone (UI/UX: structure + contrast). */
.m-template-uw99id .m-module-hub__intro::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: calc(var(--radius-base) + 6px) 0 0 calc(var(--radius-base) + 6px);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--color-accent) 95%, #fff),
    color-mix(in srgb, var(--color-primary) 75%, var(--color-accent))
  );
  pointer-events: none;
  z-index: 1;
}

.m-template-uw99id .m-module-hub__intro::after {
  content: "";
  position: absolute;
  inset: -40% -30% auto auto;
  width: min(52vw, 22rem);
  height: min(52vw, 22rem);
  background: radial-gradient(
    circle at 30% 30%,
    color-mix(in srgb, var(--color-primary) 22%, transparent),
    transparent 68%
  );
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .m-template-uw99id .m-module-hub__intro {
    animation: m-hub-intro-rise 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes m-hub-intro-rise {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.m-template-uw99id .m-hub-intro__body {
  position: relative;
  z-index: 2;
  max-width: min(100%, 56rem);
  overflow-x: auto;
  font-size: clamp(0.9375rem, 0.25vw + 0.9rem, 1.0625rem);
  line-height: 1.65;
  color: color-mix(in srgb, var(--color-text) 94%, transparent);
}

.m-template-uw99id .m-hub-intro__body :where(h1, h2, h3, h4) {
  margin-top: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--color-text);
}

.m-template-uw99id .m-hub-intro__body h1 {
  font-size: clamp(1.35rem, 2vw + 0.65rem, 1.85rem);
}

.m-template-uw99id .m-hub-intro__body h2 {
  font-size: clamp(1.2rem, 1.2vw + 0.85rem, 1.5rem);
}

.m-template-uw99id .m-hub-intro__body h3 {
  font-size: clamp(1.05rem, 0.8vw + 0.85rem, 1.2rem);
}

.m-template-uw99id .m-hub-intro__body :where(p, ul, ol, blockquote, pre) {
  margin-top: 0;
}

.m-template-uw99id .m-hub-intro__body :where(p, ul, ol, blockquote, pre, h1, h2, h3, h4):not(:first-child) {
  margin-top: 0.85em;
}

.m-template-uw99id .m-hub-intro__body :where(ul, ol) {
  padding-inline-start: 1.35em;
}

.m-template-uw99id .m-hub-intro__body li + li {
  margin-top: 0.35em;
}

.m-template-uw99id .m-hub-intro__body blockquote {
  margin-inline: 0;
  padding: 0.65rem 0 0.65rem 1rem;
  border-left: 3px solid color-mix(in srgb, var(--color-accent) 55%, transparent);
  background: color-mix(in srgb, var(--color-surface) 35%, transparent);
  border-radius: 0 calc(var(--radius-base) + 2px) calc(var(--radius-base) + 2px) 0;
  font-style: italic;
  color: color-mix(in srgb, var(--color-text) 88%, transparent);
}

.m-template-uw99id .m-hub-intro__body :where(a) {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
  transition: color 180ms ease, text-underline-offset 180ms ease;
}

.m-template-uw99id .m-hub-intro__body :where(a:hover) {
  color: color-mix(in srgb, var(--color-primary) 82%, var(--color-accent));
}

.m-template-uw99id .m-hub-intro__body :where(a:focus-visible) {
  outline: 2px solid color-mix(in srgb, var(--color-primary) 70%, var(--color-accent));
  outline-offset: 3px;
  border-radius: 2px;
}

.m-template-uw99id .m-hub-intro__body :where(img, video, iframe) {
  max-width: 100%;
  height: auto;
  border-radius: calc(var(--radius-base) + 2px);
}

.m-template-uw99id .m-hub-intro__body :where(table) {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94em;
}

.m-template-uw99id .m-hub-intro__body :where(th, td) {
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 18%, var(--table-border));
  padding: 0.5rem 0.65rem;
}

.m-template-uw99id .m-hub-intro__body :where(th) {
  text-align: start;
  background: color-mix(in srgb, var(--color-surface) 42%, transparent);
}

.m-template-uw99id .m-module-hub__notice {
  margin: 0 0 calc(var(--space-unit) * 1.25);
  font-size: 0.9375rem;
  color: color-mix(in srgb, var(--color-text) 72%, transparent);
}

.m-template-uw99id .m-module-hub__categories {
  display: grid;
  gap: var(--listing-gap-md);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 10.5rem), 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}

.m-template-uw99id .m-module-hub__category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(var(--space-unit) * 0.75);
  padding: calc(var(--space-unit) * 1.1) calc(var(--space-unit) * 1.25);
  text-decoration: none;
  color: inherit;
}

.m-template-uw99id .m-module-hub__category-cta {
  flex-shrink: 0;
  opacity: 0.55;
  font-size: 1.125rem;
  transition: transform 200ms ease, opacity 200ms ease;
}

.m-template-uw99id .m-module-hub__category-link:hover .m-module-hub__category-cta,
.m-template-uw99id .m-module-hub__category-link:focus-visible .m-module-hub__category-cta {
  opacity: 1;
  transform: translateX(3px);
}

.m-template-uw99id .m-module-hub__listing {
  margin-top: calc(var(--space-unit) * 0.5);
}

.m-template-uw99id .m-module-hub__empty {
  text-align: center;
  padding: calc(var(--space-unit) * 3) calc(var(--space-unit) * 1.5);
  border: var(--border-width) dashed color-mix(in srgb, var(--color-accent) 35%, transparent);
  border-radius: calc(var(--radius-base) + 2px);
  background: color-mix(in srgb, var(--color-surface) 88%, transparent);
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--color-accent) 8%, transparent);
}

.m-template-uw99id .m-module-hub__empty--inline {
  text-align: left;
  padding: calc(var(--space-unit) * 1.25);
  margin: calc(var(--space-unit) * 0.75) 0 0;
}

.m-template-uw99id .m-module-hub__empty-text {
  margin: 0;
  color: color-mix(in srgb, var(--color-text) 78%, transparent);
}

.m-template-uw99id .m-module-hub__empty-action {
  margin: calc(var(--space-unit) * 1) 0 0;
}

.m-template-uw99id .m-module-hub__empty-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* =============================================================================
   Contact page (layout; fields → .m-form)
   ============================================================================= */

/* ---- Storefront contact hub (/…/c/) — PHP fallback + shared motion tokens ---- */
.sf-contact-entrance {
  animation: sf-contact-rise 440ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.sf-contact-entrance--defer {
  animation-delay: 75ms;
}

@keyframes sf-contact-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.m-template-uw99id .m-contact-page[data-storefront-contact="1"] {
  width: 100%;
  max-width: min(72rem, 100%);
  margin-inline: auto;
}

.m-template-uw99id .m-contact-page__hero {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-base) + 10px);
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 38%, transparent);
  padding: calc(var(--space-unit) * 3.25) calc(var(--space-unit) * 3);
  background:
    radial-gradient(ellipse 120% 90% at 100% 0%, color-mix(in srgb, var(--color-accent) 18%, transparent), transparent 52%),
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--color-surface) 82%, transparent),
      color-mix(in srgb, var(--color-accent) 14%, var(--color-surface)),
      color-mix(in srgb, var(--color-surface) 88%, transparent)
    );
  box-shadow: var(--shadow-sm), inset 0 1px 0 color-mix(in srgb, var(--color-text) 10%, transparent);
  box-sizing: border-box;
}

.m-template-uw99id .m-contact-page__hero-kicker {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-accent) 82%, var(--color-text));
}

.m-template-uw99id .m-contact-page__hero-headline {
  margin: calc(var(--space-unit) * 1.1) 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--color-text);
  text-transform: none;
  text-shadow: none;
}

.m-template-uw99id .m-contact-page__hero-sub {
  margin: calc(var(--space-unit) * 1.25) 0 0;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--color-text) 88%, var(--color-surface));
}

.m-template-uw99id .m-contact-page__layout {
  display: grid;
  gap: calc(var(--space-unit) * 3);
  margin-top: calc(var(--space-unit) * 3.5);
  align-items: start;
}

@media (min-width: 64rem) {
  .m-template-uw99id .m-contact-page__layout {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: calc(var(--space-unit) * 4);
  }
}

.m-template-uw99id .m-contact-page__card {
  border-radius: calc(var(--radius-base) + 8px);
  border: var(--border-width) solid color-mix(in srgb, var(--color-accent) 28%, transparent);
  background: color-mix(in srgb, var(--color-surface) 74%, transparent);
  box-shadow: var(--shadow-sm), inset 0 1px 0 color-mix(in srgb, var(--color-text) 8%, transparent);
  padding: calc(var(--space-unit) * 3);
  box-sizing: border-box;
  backdrop-filter: blur(10px);
}

.m-template-uw99id .m-contact-page__eyebrow {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-accent) 78%, var(--color-text));
}

.m-template-uw99id .m-contact-page__intro-body {
  margin-top: calc(var(--space-unit) * 2);
}

.m-template-uw99id .m-contact-page__intro-body :where(p, li, td, th) {
  color: color-mix(in srgb, var(--color-text) 93%, var(--color-surface));
  line-height: 1.65;
}

.m-template-uw99id .m-contact-page__intro-body :where(a) {
  color: var(--color-primary);
  font-weight: 600;
  text-underline-offset: 0.18em;
}

.m-template-uw99id .m-contact-page__empty {
  margin: calc(var(--space-unit) * 2) 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--color-text) 72%, var(--color-surface));
}

.m-template-uw99id .m-contact-page__notice {
  font-size: 0.95rem;
  line-height: 1.6;
  border-left: 4px solid color-mix(in srgb, var(--color-accent) 55%, transparent);
}

.m-template-uw99id .m-contact-page__form-head {
  margin-bottom: calc(var(--space-unit) * 2.25);
  padding-bottom: calc(var(--space-unit) * 2);
  border-bottom: var(--border-width) solid color-mix(in srgb, var(--color-text) 12%, transparent);
}

.m-template-uw99id .m-contact-page__form-title {
  margin: calc(var(--space-unit) * 0.75) 0 0;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-text);
  text-transform: none;
  text-shadow: none;
}

.m-template-uw99id .m-contact-page__form {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-unit) * 2.25);
}

.m-template-uw99id .m-contact-page__field-row {
  display: grid;
  gap: calc(var(--space-unit) * 2);
}

@media (min-width: 36rem) {
  .m-template-uw99id .m-contact-page__field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.m-template-uw99id .m-contact-page__submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--space-unit) * 2);
  align-items: center;
  justify-content: space-between;
  padding-top: calc(var(--space-unit) * 0.5);
}

.m-template-uw99id .m-contact-page__captcha {
  margin-top: calc(var(--space-unit) * 0.25);
  padding-top: calc(var(--space-unit) * 2);
  border-top: var(--border-width) solid color-mix(in srgb, var(--color-text) 10%, transparent);
}

.m-template-uw99id .m-contact-page__label--captcha {
  margin-bottom: calc(var(--space-unit) * 0.5);
}

.m-template-uw99id .m-contact-page__captcha-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: calc(var(--space-unit) * 1.25);
}

@media (min-width: 40rem) {
  .m-template-uw99id .m-contact-page__captcha-inner {
    flex-direction: row;
    align-items: center;
    gap: calc(var(--space-unit) * 1.75);
  }
}

.m-template-uw99id .m-contact-page__captcha-visual {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: calc(var(--space-unit) * 1.5);
  flex-shrink: 0;
}

.m-template-uw99id .m-contact-page__captcha-img {
  display: block;
  flex-shrink: 0;
  width: 160px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  border-radius: calc(var(--radius-base) + 4px);
  border: var(--border-width) solid color-mix(in srgb, var(--color-text) 18%, transparent);
  box-sizing: border-box;
  background: color-mix(in srgb, var(--color-surface) 70%, var(--color-background));
}

.m-template-uw99id .m-contact-page__captcha-refresh {
  box-sizing: border-box;
  min-height: 48px;
  height: 48px;
  padding-inline: calc(var(--space-unit) * 2);
  cursor: pointer;
  font-size: 0.82rem;
  white-space: nowrap;
}

.m-template-uw99id .m-contact-page__captcha-input-wrap {
  margin-top: 0;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 22rem;
}

@media (min-width: 40rem) {
  .m-template-uw99id .m-contact-page__captcha-input-wrap {
    max-width: none;
  }
}

/* Async contact submit feedback (same hooks as Astro {@code sf-contact-feedback}). */
.sf-contact-feedback {
  display: none;
  margin-bottom: calc(var(--space-unit) * 2.5);
  border-radius: calc(var(--radius-base) + 6px);
  padding: calc(var(--space-unit) * 2) calc(var(--space-unit) * 2.75);
  font-size: 0.875rem;
  line-height: 1.65;
  border-width: var(--border-width);
  border-style: solid;
}

.sf-contact-feedback.sf-contact-feedback--show {
  display: block;
}

.sf-contact-feedback--success {
  border-color: color-mix(in srgb, rgb(16 185 129) 38%, transparent);
  background: color-mix(in srgb, rgb(236 253 245) 96%, var(--color-surface));
  color: rgb(6 78 59);
}

.sf-contact-feedback--error {
  border-color: color-mix(in srgb, rgb(239 68 68) 42%, transparent);
  background: color-mix(in srgb, rgb(254 242 242) 96%, var(--color-surface));
  color: rgb(127 29 29);
}

.sf-contact-feedback__text {
  margin: 0;
}

.sf-contact-feedback__reload {
  margin-top: calc(var(--space-unit) * 1.75);
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius-base) + 4px);
  border: var(--border-width) solid color-mix(in srgb, var(--color-text) 14%, transparent);
  background: color-mix(in srgb, var(--color-surface) 92%, transparent);
  padding: calc(var(--space-unit) * 1) calc(var(--space-unit) * 2.25);
  font-size: 0.8125rem;
  font-weight: 600;
  color: inherit;
  cursor: pointer;
}

.sf-contact-feedback__reload:hover {
  background: color-mix(in srgb, var(--color-surface) 100%, transparent);
}

/* =============================================================================
   Shortcodes (lotto / livescore / livestream / LinkV2 / transferlist / PWA)
   ============================================================================= */

/* =============================================================================
   Storefront shortcodes (lotto, livescore, livestream) — edit in this file
   Mirror: assets/storefront-shortcodes.css (tools/sync_shortcode_css_from_tp.py)
   ============================================================================= */

/* =============================================================================
   Shared design tokens (lotto, livescore, livestream)
   ============================================================================= */

.cms-livescore-root,
.cms-livestream-root,
#cms-lotto-block.cms-lotto-root {
  --cms-widget-ease: cubic-bezier(0.33, 1, 0.68, 1);
  --cms-widget-duration: 260ms;
  --cms-widget-duration-fast: 220ms;
  --cms-widget-panel-bg: color-mix(in srgb, var(--color-surface) 82%, var(--color-background));
  --cms-widget-panel-border: color-mix(in srgb, var(--color-accent) 28%, transparent);
  --cms-widget-league-bg: color-mix(in srgb, var(--color-accent) 22%, var(--color-surface));
  --cms-widget-row-hover: color-mix(in srgb, var(--color-primary) 10%, transparent);
  --cms-widget-live: color-mix(in srgb, var(--color-success) 75%, var(--color-highlight));
  --cms-widget-finished: color-mix(in srgb, var(--color-text) 55%, transparent);
  --cms-widget-bg: var(--color-background, #020617);
  --cms-widget-surface: var(--color-surface, #060a12);
  --cms-widget-text: var(--color-text, #f1f5f9);
  --cms-widget-accent: var(--color-primary, #38bdf8);
}

/* =============================================================================
   Widget chrome (lotto toolbar + match-feed panels share cms-widget tokens)
   ============================================================================= */

#cms-lotto-block .m-lotto-toolbar,
.cms-livescore-root--pro .m-livescorepro-toolbar {
  border: 1px solid var(--cms-widget-panel-border);
  box-shadow: var(--shadow-sm, 0 4px 24px rgba(0, 0, 0, 0.12));
}

/* =============================================================================
   Lottery shortcode (lottoresult) — scoped under #cms-lotto-block
   Editable here for designers; bundled with this template CSS.
   ============================================================================= */
/*
  Lottery shortcode — scoped under #cms-lotto-block.
  Colors follow merchant template :root tokens (--color-*, --table-*, --shadow-*, --radius-base)
  when present; fallbacks keep blocks readable off-template.
*/
#cms-lotto-block.cms-lotto-root {
  --lotto-radius-lg: var(--radius-base, 0.875rem);
  --lotto-radius-md: max(0.375rem, calc(var(--lotto-radius-lg) * 0.55));
  --lotto-radius-sm: max(0.25rem, calc(var(--lotto-radius-lg) * 0.32));
  --lotto-space-1: 0.25rem;
  --lotto-space-2: 0.5rem;
  --lotto-space-3: 0.75rem;
  --lotto-space-4: 1rem;
  --lotto-space-5: 1.25rem;
  --lotto-ease: var(--cms-widget-ease);
  --lotto-duration: var(--cms-widget-duration-fast);
  --lotto-bg: var(--cms-widget-bg);
  --lotto-surface: var(--cms-widget-surface);
  --lotto-cell: color-mix(in srgb, var(--color-surface, #060a12) 88%, var(--color-text, #f1f5f9) 12%);
  --lotto-cell-border: var(
    --table-border,
    color-mix(in srgb, var(--color-accent, #e8c547) 35%, var(--color-surface, #060a12))
  );
  --lotto-text: var(--cms-widget-text);
  --lotto-muted: color-mix(in srgb, var(--color-text, #f1f5f9) 68%, var(--color-surface, #060a12));
  --lotto-accent: var(--cms-widget-accent);
  --lotto-accent-head: color-mix(in srgb, var(--color-primary, #38bdf8) 78%, var(--color-background, #020617));
  --lotto-accent-muted: color-mix(in srgb, var(--color-primary, #38bdf8) 35%, var(--color-surface, #060a12));
  --lotto-border: color-mix(in srgb, var(--color-accent, #e8c547) 40%, var(--color-surface, #060a12));
  --lotto-shadow-1: var(
    --shadow-sm,
    0 4px 24px color-mix(in srgb, var(--color-accent, #e8c547) 22%, transparent)
  );
  --lotto-shadow-2:
    var(--shadow-sm, 0 4px 24px color-mix(in srgb, var(--color-accent, #e8c547) 22%, transparent)),
    0 12px 40px color-mix(in srgb, var(--color-primary, #38bdf8) 18%, transparent);
  --lotto-type-label: 0.75rem;
  --lotto-type-body: 0.8125rem;
  --lotto-type-title: 0.875rem;
  --lotto-type-data: 0.9375rem;
  --lotto-type-subgrid: 1.0625rem;
  isolation: isolate;
  font-family: var(--font-body, ui-sans-serif, system-ui, sans-serif);
}

#cms-lotto-block .m-lotto-result {
  margin: var(--lotto-space-5) 0;
  max-width: none;
}

#cms-lotto-block .m-lotto-toolbar {
  margin-bottom: var(--lotto-space-4);
  padding: var(--lotto-space-4);
  border-radius: var(--lotto-radius-md);
  background: var(--lotto-surface);
  border: 1px solid var(--lotto-cell-border);
  box-shadow: var(--lotto-shadow-1);
}

/* Bento-style toolbar: field group + actions row; 8px rhythm (UI/UX spacing). */
#cms-lotto-block .m-lotto-toolbar__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: var(--lotto-space-4);
}

#cms-lotto-block .m-lotto-toolbar__field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--lotto-space-2);
  min-width: min(100%, 12.5rem);
  flex: 0 1 auto;
}

#cms-lotto-block .m-lotto-toolbar__label {
  font-size: var(--lotto-type-label);
  font-weight: 600;
  color: var(--lotto-muted);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

#cms-lotto-block .m-lotto-toolbar__date-field {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 16rem;
  min-height: 2.75rem;
  border-radius: var(--lotto-radius-sm);
  border: 1px solid var(--lotto-cell-border);
  background: var(--lotto-cell);
  overflow: hidden;
}

#cms-lotto-block .m-lotto-toolbar__open-cal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Touch target ≥ 44px (UI/UX Pro Max) */
  min-width: 2.75rem;
  width: 2.75rem;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: none;
  border-left: 1px solid var(--lotto-cell-border);
  background: color-mix(in srgb, var(--lotto-surface) 55%, var(--lotto-cell));
  color: var(--lotto-accent);
  cursor: pointer;
  transition: background var(--lotto-duration) var(--lotto-ease);
}

#cms-lotto-block .m-lotto-toolbar__open-cal:hover {
  background: color-mix(in srgb, var(--lotto-accent) 12%, var(--lotto-cell));
}

#cms-lotto-block .m-lotto-toolbar__open-cal:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--lotto-accent) 65%, transparent);
  outline-offset: 2px;
  z-index: 1;
}

#cms-lotto-block .m-lotto-toolbar__cal-icon {
  display: block;
}

#cms-lotto-block .m-lotto-toolbar__actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--lotto-space-4);
  margin-left: auto;
  min-height: 2.75rem;
}

#cms-lotto-block .m-lotto-toolbar__credit {
  display: block;
  margin: 0;
  padding: 0;
  text-align: right;
}

/* Single baseline-aligned line: no awkward wrap between “powered by” and brand */
#cms-lotto-block .m-lotto-toolbar__credit-line {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0.25em;
  font-size: 0.75rem;
  line-height: 1.2;
  color: var(--lotto-muted);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

#cms-lotto-block .m-lotto-toolbar__credit-suffix {
  opacity: 0.92;
}

#cms-lotto-block .m-lotto-toolbar__brand {
  color: color-mix(in srgb, var(--lotto-accent) 88%, var(--lotto-text));
  font-weight: 700;
  letter-spacing: 0.03em;
}

#cms-lotto-block .m-lotto-toolbar__btn {
  flex: 0 0 auto;
  min-height: 2.75rem;
  min-width: 2.75rem;
  padding: 0 var(--lotto-space-4);
  border-radius: var(--lotto-radius-sm);
  border: 1px solid color-mix(in srgb, var(--color-accent, #e8c547) 55%, var(--color-background, #020617));
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--color-accent, #e8c547) 92%, var(--color-background, #020617)) 0%,
    color-mix(in srgb, var(--color-accent, #e8c547) 72%, var(--color-primary, #38bdf8)) 100%
  );
  color: var(--color-background, #020617);
  font-size: var(--lotto-type-label);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform var(--lotto-duration) var(--lotto-ease),
    filter var(--lotto-duration) var(--lotto-ease);
}

#cms-lotto-block .m-lotto-toolbar__btn:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--color-accent, #e8c547) 70%, transparent);
  outline-offset: 2px;
}

#cms-lotto-block .m-lotto-toolbar__btn:hover:not(:disabled) {
  filter: brightness(1.06);
}

#cms-lotto-block .m-lotto-toolbar__btn:active:not(:disabled) {
  transform: translateY(1px);
}

#cms-lotto-block .m-lotto-toolbar__btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

#cms-lotto-block .m-lotto-toolbar__status {
  display: block;
  margin-top: var(--lotto-space-2);
  min-height: 1.25rem;
  font-size: var(--lotto-type-label);
  color: var(--lotto-muted);
}

@media (max-width: 639px) {
  #cms-lotto-block .m-lotto-toolbar__row {
    flex-direction: column;
    align-items: stretch;
  }

  #cms-lotto-block .m-lotto-toolbar__field {
    max-width: none;
  }

  #cms-lotto-block .m-lotto-toolbar__date-field {
    max-width: none;
  }

  #cms-lotto-block .m-lotto-toolbar__actions {
    margin-left: 0;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--lotto-space-3);
  }

  #cms-lotto-block .m-lotto-toolbar__credit {
    text-align: left;
    flex: 1 1 auto;
    min-width: 0;
  }

  #cms-lotto-block .m-lotto-toolbar__credit-line {
    white-space: normal;
    justify-content: flex-end;
    text-align: right;
  }
}

#cms-lotto-block .m-lotto-result--empty,
#cms-lotto-block .m-lotto-result--error {
  padding: var(--lotto-space-4) 1.125rem;
  border-radius: var(--lotto-radius-md);
  border: 1px solid var(--lotto-cell-border);
  background: color-mix(in srgb, var(--color-surface, #060a12) 92%, var(--color-text, #f1f5f9) 8%);
  color: var(--lotto-text);
  line-height: 1.55;
}

#cms-lotto-block .m-lotto-result--loading {
  padding: var(--lotto-space-4, 1rem) 0.5rem 1.25rem;
}

#cms-lotto-block .m-lotto-result__msg--loading {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  opacity: 0.75;
}

#cms-lotto-block .m-lotto-result__skeleton {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
  gap: 0.75rem;
}

#cms-lotto-block .m-lotto-result__skeleton-card {
  display: block;
  min-height: 7.5rem;
  border-radius: var(--lotto-radius-md, 0.5rem);
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--color-surface, #060a12) 88%, var(--lotto-cell-border, #334155)) 0%,
    color-mix(in srgb, var(--color-surface, #060a12) 70%, var(--lotto-cell-border, #334155)) 50%,
    color-mix(in srgb, var(--color-surface, #060a12) 88%, var(--lotto-cell-border, #334155)) 100%
  );
  background-size: 200% 100%;
  animation: m-lotto-skeleton-shimmer 1.1s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  #cms-lotto-block .m-lotto-result__skeleton-card {
    animation: none;
  }
}

@keyframes m-lotto-skeleton-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

#cms-lotto-block .m-lotto-result--error {
  border-color: color-mix(in srgb, var(--color-error) 45%, var(--color-surface, #060a12));
  background: color-mix(in srgb, var(--color-error) 12%, var(--color-surface, #060a12));
}

#cms-lotto-block .m-lotto-result--empty .m-lotto-result__msg,
#cms-lotto-block .m-lotto-result__lead,
#cms-lotto-block .m-lotto-result__msg {
  margin: 0;
  font-size: 1rem;
  color: var(--lotto-text);
}

#cms-lotto-block .m-lotto-result__lead {
  font-weight: 600;
  color: color-mix(in srgb, var(--color-accent, #e8c547) 85%, var(--color-text, #f1f5f9));
}

#cms-lotto-block .m-lotto-result__detail {
  margin: var(--lotto-space-2) 0 0;
  font-size: 0.9375rem;
  color: var(--lotto-muted);
  line-height: 1.5;
}

#cms-lotto-block .m-lotto-result__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--lotto-space-4);
  align-items: stretch;
  max-width: 80rem;
  margin-inline: auto;
}

@media (min-width: 40rem) {
  #cms-lotto-block .m-lotto-result__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 68.75rem) {
  #cms-lotto-block .m-lotto-result__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

#cms-lotto-block .m-lotto-result__item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
}

#cms-lotto-block .m-lotto-card {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  position: relative;
  border: 1px solid var(--lotto-border);
  border-radius: var(--lotto-radius-lg);
  background: linear-gradient(180deg, var(--lotto-surface) 0%, var(--lotto-bg) 48%, var(--lotto-bg) 100%);
  color: var(--lotto-text);
  overflow: hidden;
  font-size: var(--lotto-type-body);
  line-height: 1.45;
  box-shadow: var(--lotto-shadow-1);
}

#cms-lotto-block .m-lotto-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-text, #f1f5f9) 8%, transparent) inset;
}

#cms-lotto-block .m-lotto-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--lotto-space-3);
  padding: var(--lotto-space-3) var(--lotto-space-3);
  min-height: 3.25rem;
  background: linear-gradient(
      165deg,
      color-mix(in srgb, var(--color-text, #f1f5f9) 18%, transparent) 0%,
      color-mix(in srgb, var(--color-background, #020617) 35%, transparent) 42%,
      transparent 100%
    ),
    linear-gradient(180deg, var(--lotto-accent) 0%, var(--lotto-accent-head) 100%);
  color: var(--color-background, #020617);
}

#cms-lotto-block .m-lotto-card__brand {
  display: flex;
  align-items: center;
  gap: var(--lotto-space-3);
  min-width: 0;
}

#cms-lotto-block .m-lotto-card__logo {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-background, #020617) 32%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-background, #020617) 45%, transparent);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.8125rem;
}

#cms-lotto-block .m-lotto-card__titles {
  min-width: 0;
}

#cms-lotto-block .m-lotto-card__title {
  margin: 0;
  font-size: var(--lotto-type-title);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: inherit;
}

#cms-lotto-block .m-lotto-card__class {
  display: inline-block;
  margin-top: var(--lotto-space-1);
  padding: 0.125rem 0.4rem;
  border-radius: 999px;
  font-size: var(--lotto-type-label);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--color-background, #020617) 28%, transparent);
  color: color-mix(in srgb, var(--color-background, #020617) 92%, var(--color-text, #f1f5f9));
  line-height: 1.35;
}

#cms-lotto-block .m-lotto-card--empty .m-lotto-card__body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.5rem;
}

#cms-lotto-block .m-lotto-card__empty {
  margin: 0;
  padding: var(--lotto-space-3);
  text-align: center;
  font-size: var(--lotto-type-body);
  color: var(--lotto-muted);
  line-height: 1.5;
}

#cms-lotto-block .m-lotto-card__meta {
  text-align: right;
  flex-shrink: 0;
}

#cms-lotto-block .m-lotto-card__date-label {
  display: block;
  font-size: var(--lotto-type-label);
  font-weight: 600;
  opacity: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

#cms-lotto-block .m-lotto-card__date {
  display: block;
  margin-top: var(--lotto-space-1);
  font-size: var(--lotto-type-body);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
}

#cms-lotto-block .m-lotto-card__body {
  flex: 1 1 auto;
  padding: var(--lotto-space-3) var(--lotto-space-3) var(--lotto-space-4);
  touch-action: manipulation;
}

#cms-lotto-block .m-lotto-card__draw-id {
  display: block;
  margin-top: var(--lotto-space-3);
  padding-top: var(--lotto-space-2);
  border-top: 1px solid var(--lotto-cell-border);
  font-size: var(--lotto-type-label);
  color: var(--lotto-muted);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

#cms-lotto-block .m-lotto-card__top3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--lotto-space-2);
  margin-bottom: var(--lotto-space-3);
}

#cms-lotto-block .m-lotto-card__prize-col {
  text-align: center;
}

#cms-lotto-block .m-lotto-card__prize-label {
  display: block;
  font-size: var(--lotto-type-label);
  font-weight: 600;
  color: var(--lotto-muted);
  margin-bottom: var(--lotto-space-1);
  line-height: 1.35;
}

#cms-lotto-block .m-lotto-card__prize-num {
  display: block;
  padding: var(--lotto-space-2) var(--lotto-space-1);
  background: var(--lotto-cell);
  border: 1px solid var(--lotto-cell-border);
  border-radius: var(--lotto-radius-sm);
  font-weight: 700;
  font-size: var(--lotto-type-data);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

#cms-lotto-block .m-lotto-card__section {
  margin-top: var(--lotto-space-3);
}

#cms-lotto-block .m-lotto-card__section--subdraw .m-lotto-card__section-title {
  font-size: calc(var(--lotto-type-label) + 0.0625rem);
}

#cms-lotto-block .m-lotto-card__section--subdraw .m-lotto-card__cell {
  min-height: 2.625rem;
  font-size: var(--lotto-type-subgrid);
  font-weight: 700;
  letter-spacing: 0.04em;
}

#cms-lotto-block .m-lotto-card__section-title {
  margin: 0 0 var(--lotto-space-2);
  text-align: center;
  font-size: var(--lotto-type-label);
  font-weight: 700;
  color: var(--lotto-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

#cms-lotto-block .m-lotto-card__grid {
  display: grid;
  gap: var(--lotto-space-2);
}

#cms-lotto-block .m-lotto-card__grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#cms-lotto-block .m-lotto-card__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  text-align: center;
  padding: var(--lotto-space-2) var(--lotto-space-1);
  background: var(--lotto-cell);
  border: 1px solid var(--lotto-cell-border);
  border-radius: var(--lotto-radius-sm);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-size: var(--lotto-type-body);
  line-height: 1.2;
}

#cms-lotto-block .m-lotto-card__cell--empty {
  color: var(--lotto-muted);
  font-weight: 500;
}

#cms-lotto-block .m-lotto-card--5d .m-lotto-card__body,
#cms-lotto-block .m-lotto-card--6d .m-lotto-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--lotto-space-2);
}

#cms-lotto-block .m-lotto-card__row {
  display: grid;
  grid-template-columns: minmax(5rem, 36%) 1fr;
  gap: var(--lotto-space-2);
  align-items: stretch;
}

#cms-lotto-block .m-lotto-card__rank {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--lotto-space-2);
  background: var(--lotto-cell);
  border: 1px solid var(--lotto-cell-border);
  border-radius: var(--lotto-radius-sm);
  font-size: var(--lotto-type-label);
  font-weight: 600;
  color: var(--lotto-muted);
  text-align: center;
  line-height: 1.35;
}

#cms-lotto-block .m-lotto-card__num,
#cms-lotto-block .m-lotto-card__nums {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--lotto-space-2);
  padding: var(--lotto-space-2) var(--lotto-space-3);
  background: var(--lotto-cell);
  border: 1px solid var(--lotto-cell-border);
  border-radius: var(--lotto-radius-sm);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: var(--lotto-type-data);
  letter-spacing: 0.04em;
  line-height: 1.25;
}

#cms-lotto-block .m-lotto-card__num--wide {
  width: 100%;
  text-align: center;
}

#cms-lotto-block .m-lotto-card__nums {
  flex-wrap: wrap;
}

#cms-lotto-block .m-lotto-card__nums .m-lotto-card__num {
  flex: 1 1 auto;
  min-width: 0;
  background: transparent;
  padding: 0;
  border: none;
}

#cms-lotto-block .m-lotto-card__n3d {
  max-height: 14rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cms-lotto-block .m-lotto-card__n3d-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--lotto-type-body);
  line-height: 1.45;
}

#cms-lotto-block .m-lotto-card__n3d-table th,
#cms-lotto-block .m-lotto-card__n3d-table td {
  padding: var(--lotto-space-2) var(--lotto-space-2);
  border-bottom: 1px solid var(--lotto-cell-border);
  text-align: left;
}

#cms-lotto-block .m-lotto-card__n3d-table th {
  color: var(--lotto-muted);
  font-weight: 600;
  font-size: var(--lotto-type-label);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: sticky;
  top: 0;
  background: var(--lotto-surface);
  backdrop-filter: blur(6px);
}

#cms-lotto-block .m-lotto-card__n3d-num {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

/* =============================================================================
   Match feed shared (livescore + livestream list / league chrome)
   ============================================================================= */

.cms-livescore-root .m-livescore__list,
.cms-livestream-root .m-livestream__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cms-livescore-root .m-livescore__list {
  display: flex;
  flex-direction: column;
}

.cms-livescore-root[data-has-width="1"] {
  width: var(--cms-ls-width);
  max-width: 100%;
  box-sizing: border-box;
}

.cms-livescore-root .m-livescore__viewport {
  position: relative;
}

.cms-livescore-root[data-has-height="1"] .m-livescore__viewport {
  height: var(--cms-ls-height);
  max-height: var(--cms-ls-height);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.cms-livescore-root[data-autoplay="1"] .m-livescore__viewport,
.cms-livescore-root[data-autoplay="1"][data-has-height="1"] .m-livescore__viewport {
  overflow: hidden;
}

.cms-livescore-root .m-livescore__viewport--marquee {
  overflow: hidden;
}

.cms-livescore-root .m-livescore__track {
  will-change: transform;
}

.cms-livescore-root .m-livescore__track--marquee-x.m-livescore__list--cards,
.cms-livescore-root .m-livescore__track--marquee-x {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: max-content;
  grid-template-columns: unset;
  gap: clamp(0.75rem, 2vw, 1rem);
  padding: clamp(0.5rem, 2vw, 0.85rem);
}

.cms-livescore-root .m-livescore__track--marquee-x .m-livescore__item--card {
  flex: 0 0 auto;
  width: min(18rem, 85vw);
}

.cms-livescore-root .m-livescore__track--marquee-y {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.cms-livescore-root .m-livescore__track--animate-x {
  animation-name: m-livescore-marquee-x;
  animation-duration: var(--cms-ls-marquee-duration, 20s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.cms-livescore-root .m-livescore__track--animate-y {
  animation-name: m-livescore-marquee-y;
  animation-duration: var(--cms-ls-marquee-duration, 20s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes m-livescore-marquee-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--cms-ls-marquee-distance, 50%)));
  }
}

@keyframes m-livescore-marquee-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-1 * var(--cms-ls-marquee-distance, 50%)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .cms-livescore-root[data-autoplay="1"] .m-livescore__track--animate-x,
  .cms-livescore-root[data-autoplay="1"] .m-livescore__track--animate-y {
    animation-duration: var(--cms-ls-marquee-duration, 20s) !important;
    animation-iteration-count: infinite !important;
  }
}

.cms-livescore-root .m-livescore__league-group,
.cms-livestream-root .m-livestream__league-group {
  list-style: none;
}

.cms-livescore-root .m-livescore__fixtures,
.cms-livestream-root .m-livestream__fixtures {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cms-livescore-root .m-livescore--has-data,
.cms-livestream-root .m-livestream--has-data {
  border-radius: calc(var(--radius-base, 0.5rem) + 4px);
  border: 1px solid var(--cms-widget-panel-border);
  background: var(--cms-widget-panel-bg);
  box-shadow: var(--shadow-sm, 0 4px 24px rgba(0, 0, 0, 0.12));
  overflow: hidden;
}

.cms-livescore-root .m-livescore__loading,
.cms-livescore-root .m-livescore__msg,
.cms-livestream-root .m-livestream__loading,
.cms-livestream-root .m-livestream__msg {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--color-text) 86%, transparent);
}

.cms-livescore-root .m-livescore,
.cms-livestream-root .m-livestream {
  margin-block: clamp(0.75rem, 2vw, 1.25rem);
}

.cms-livescore-root .m-livescore__league-bar,
.cms-livestream-root .m-livestream__league-bar {
  margin: 0;
  padding: 0.55rem 1rem;
  font-family: var(--font-heading, inherit);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
  color: color-mix(in srgb, var(--color-text) 92%, transparent);
  background: var(--cms-widget-league-bg);
  border-block: 1px solid color-mix(in srgb, var(--color-accent) 18%, transparent);
  border-inline-start: 3px solid var(--color-accent);
}

.cms-livescore-root .m-livescore__item,
.cms-livestream-root .m-livestream__item {
  list-style: none;
  border-block-end: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
}

.cms-livescore-root .m-livescore__item:last-child,
.cms-livestream-root .m-livestream__item:last-child {
  border-block-end: none;
}

.cms-livescore-root .m-livescore__fixture,
.cms-livestream-root .m-livestream__fixture {
  transition: background-color var(--cms-widget-duration) var(--cms-widget-ease);
}

.cms-livescore-root .m-livescore__item:hover .m-livescore__fixture,
.cms-livescore-root .m-livescore__item:focus-within .m-livescore__fixture,
.cms-livestream-root .m-livestream__fixture:hover {
  background: var(--cms-widget-row-hover);
}

.cms-livescore-root .m-livescore__skeleton-bar,
.cms-livescore-root .m-livescore__skeleton-row,
.cms-livestream-root .m-livestream__skeleton-bar,
.cms-livestream-root .m-livestream__skeleton-row {
  border-radius: calc(var(--radius-base, 0.5rem) - 4px);
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--color-text) 8%, transparent) 0%,
    color-mix(in srgb, var(--color-text) 16%, transparent) 50%,
    color-mix(in srgb, var(--color-text) 8%, transparent) 100%
  );
  background-size: 200% 100%;
  animation: cms-widget-shimmer 1.2s ease-in-out infinite;
}

@keyframes cms-widget-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.cms-livescore-root .m-livescore--empty .m-livescore__empty-panel,
.cms-livescore-root .m-livescore--offline,
.cms-livescore-root .m-livescore--error {
  padding: clamp(1.25rem, 3vw, 2rem);
  text-align: center;
}

.cms-livescore-root .m-livescore-toast {
  position: fixed;
  bottom: 5%;
  inset-inline: 0;
  margin: 0 auto;
  z-index: 60;
  width: min(22rem, calc(100vw - 2rem));
  padding: 0.72rem 1rem;
  border-radius: calc(var(--radius-base, 0.5rem) + 2px);
  background: color-mix(in srgb, var(--color-surface) 88%, transparent);
  color: var(--color-text);
  border: 1px solid var(--cms-widget-panel-border);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 color-mix(in srgb, #fff 8%, transparent);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity var(--cms-widget-duration) var(--cms-widget-ease),
    transform var(--cms-widget-duration) var(--cms-widget-ease);
}

.cms-livescore-root .m-livescore-toast--on {
  opacity: 1;
  transform: translateY(0);
}

.cms-livescore-root .m-livescore-mount[data-state="loading"] .m-livescore__loading {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.cms-livescore-root .m-livescore__skeleton {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: clamp(0.85rem, 2vw, 1.1rem);
}

.cms-livescore-root .m-livescore__skeleton-bar {
  height: 2rem;
  width: 42%;
}

.cms-livescore-root .m-livescore__skeleton-row {
  height: 3.25rem;
}

.cms-livescore-root .m-livescore--offline .m-livescore__msg,
.cms-livescore-root .m-livescore--error .m-livescore__msg {
  color: color-mix(in srgb, #fca5a5 90%, var(--color-text));
}

.cms-livescore-root .m-livescore__card {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.cms-livescore-root .m-livescore__fixture {
  display: grid;
  grid-template-columns: minmax(4.75rem, 5.75rem) minmax(0, 1fr) minmax(4.5rem, auto);
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 0.72rem 1rem;
}

.cms-livescore-root .m-livescore__col--time {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  min-width: 0;
}

.cms-livescore-root .m-livescore__date {
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: color-mix(in srgb, var(--color-text) 62%, transparent);
  white-space: nowrap;
}

.cms-livescore-root .m-livescore__kick {
  font-size: 0.9375rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  color: var(--color-text);
  white-space: nowrap;
}

.cms-livescore-root .m-livescore__minute {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cms-widget-live);
  font-variant-numeric: tabular-nums;
}

.cms-livescore-root .m-livescore__col--match {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 0.5rem 0.75rem;
  min-width: 0;
}

.cms-livescore-root .m-livescore__team {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.cms-livescore-root .m-livescore__team--home {
  justify-content: flex-start;
}

.cms-livescore-root .m-livescore__team--away {
  justify-content: flex-end;
  flex-direction: row-reverse;
  text-align: end;
}

.cms-livescore-root .m-livescore__name {
  font-weight: 600;
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cms-livescore-root .m-livescore__col--score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.35rem;
}

.cms-livescore-root .m-livescore__score {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem 0.55rem;
  border-radius: calc(var(--radius-base) - 6px);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  line-height: 1;
  background: color-mix(in srgb, var(--color-background) 65%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent);
}

.cms-livescore-root .m-livescore__sep {
  opacity: 0.65;
  font-weight: 700;
}

.cms-livescore-root .m-livescore__state {
  display: inline-block;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
  border: 1px solid transparent;
}

.cms-livescore-root .m-livescore__state--running {
  color: #052e16;
  background: color-mix(in srgb, var(--cms-widget-live) 88%, #fff);
  border-color: color-mix(in srgb, var(--cms-widget-live) 55%, transparent);
  box-shadow: 0 0 12px color-mix(in srgb, var(--cms-widget-live) 35%, transparent);
}

.cms-livescore-root .m-livescore__state--finished,
.cms-livescore-root .m-livescore__state--cancelled {
  color: var(--cms-widget-finished);
  background: color-mix(in srgb, var(--color-text) 8%, transparent);
  border-color: color-mix(in srgb, var(--color-text) 12%, transparent);
}

.cms-livescore-root .m-livescore__state--suspended {
  color: color-mix(in srgb, #fbbf24 90%, var(--color-text));
  background: color-mix(in srgb, #fbbf24 15%, transparent);
}

.cms-livescore-root .m-livescore__badge {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--color-text) 14%, transparent);
  background: color-mix(in srgb, var(--color-background) 80%, transparent);
}

.cms-livescore-root .m-livescore__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================================================
   Card layout (style:card) — responsive match tiles
   ============================================================================= */

.cms-livescore-root .m-livescore--layout-card.m-livescore--has-data {
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.cms-livescore-root .m-livescore__list--cards {
  list-style: none;
  margin: 0;
  padding: clamp(0.5rem, 2vw, 0.85rem);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr));
  gap: clamp(0.75rem, 2vw, 1rem);
  align-items: stretch;
}

.cms-livescore-root .m-livescore__item--card {
  list-style: none;
  border: none;
  margin: 0;
  min-width: 0;
  display: flex;
}

.cms-livescore-root .m-livescore__card--tile {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: clamp(0.85rem, 2.2vw, 1.1rem);
  gap: 0.85rem;
  border-radius: calc(var(--radius-base) + 2px);
  border: 1px solid color-mix(in srgb, var(--color-text) 12%, transparent);
  background: color-mix(in srgb, var(--color-surface) 96%, var(--color-background));
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition:
    transform var(--cms-widget-duration) var(--cms-widget-ease),
    box-shadow var(--cms-widget-duration) var(--cms-widget-ease),
    border-color var(--cms-widget-duration) var(--cms-widget-ease);
}

.cms-livescore-root .m-livescore__item--card:hover .m-livescore__card--tile,
.cms-livescore-root .m-livescore__item--card:focus-within .m-livescore__card--tile {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--color-accent) 42%, transparent);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 color-mix(in srgb, #fff 10%, transparent);
}

.cms-livescore-root .m-livescore__card--tile[data-playstate="running"] {
  border-color: color-mix(in srgb, var(--cms-widget-live) 35%, transparent);
}

.cms-livescore-root .m-livescore__card-head {
  margin: 0;
  padding: 0;
}

.cms-livescore-root .m-livescore__card-meta-line {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
  color: color-mix(in srgb, var(--color-text) 78%, transparent);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cms-livescore-root .m-livescore__card-league {
  font-weight: 600;
  color: color-mix(in srgb, var(--color-text) 92%, transparent);
}

.cms-livescore-root .m-livescore__card-dot {
  opacity: 0.55;
}

.cms-livescore-root .m-livescore__card-when {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.cms-livescore-root .m-livescore__card-match {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.5rem 0.65rem;
  flex: 1;
}

.cms-livescore-root .m-livescore__card-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  min-width: 0;
  text-align: center;
}

.cms-livescore-root .m-livescore__card-hub {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  padding-inline: 0.15rem;
}

.cms-livescore-root .m-livescore__card-vs {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
  text-transform: lowercase;
}

.cms-livescore-root .m-livescore__card-score {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.125rem, 3.2vw, 1.5rem);
  line-height: 1;
  color: var(--color-text);
}

.cms-livescore-root .m-livescore__card-sep {
  opacity: 0.5;
  font-weight: 700;
}

.cms-livescore-root .m-livescore__card-name {
  width: 100%;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cms-livescore-root .m-livescore__card-foot {
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  color: color-mix(in srgb, var(--color-text) 62%, transparent);
}

.cms-livescore-root .m-livescore__badge--card {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.cms-livescore-root .m-livescore__badge--placeholder {
  background: color-mix(in srgb, var(--color-text) 10%, transparent);
  border-style: dashed;
}

.cms-livescore-root .m-livescore-mount[data-style="card"] .m-livescore__skeleton {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17.5rem), 1fr));
  gap: 0.75rem;
  padding: 0.75rem;
}

.cms-livescore-root .m-livescore-mount[data-style="card"] .m-livescore__skeleton-bar {
  display: none;
}

.cms-livescore-root .m-livescore-mount[data-style="card"] .m-livescore__skeleton-row {
  height: 10.5rem;
  border-radius: calc(var(--radius-base) + 2px);
}

@media (max-width: 36rem) {
  .cms-livescore-root .m-livescore--layout-list .m-livescore__fixture {
    grid-template-columns: minmax(4.25rem, 5rem) minmax(0, 1fr) minmax(3.5rem, auto);
    gap: 0.5rem 0.65rem;
    padding: 0.65rem 0.75rem;
  }

  .cms-livescore-root .m-livescore--layout-list .m-livescore__col--match {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .cms-livescore-root .m-livescore--layout-list .m-livescore__team--away {
    flex-direction: row;
    justify-content: flex-start;
    text-align: start;
  }

  .cms-livescore-root .m-livescore--layout-list .m-livescore__badge {
    width: 2rem;
    height: 2rem;
  }

  .cms-livescore-root .m-livescore__list--cards {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------------------- */
/* Livescore Pro — toolbar ([[type:livescorepro;...]])                        */
/* -------------------------------------------------------------------------- */
.cms-livescore-root--pro .m-livescorepro-toolbar {
  margin-block: 0 0.85rem;
  padding: 0.65rem 0.75rem;
  border-radius: calc(var(--radius-base, 0.5rem) + 4px);
  border: 1px solid var(--cms-widget-panel-border, color-mix(in srgb, var(--color-accent) 28%, transparent));
  background: color-mix(in srgb, var(--color-surface) 65%, var(--color-background));
}

.cms-livescore-root--pro .m-livescorepro-toolbar__inner {
  display: grid;
  gap: 0.55rem 1rem;
  grid-template-columns: repeat(auto-fit, minmax(11.5rem, 1fr));
  align-items: end;
}

.cms-livescore-root--pro .m-livescorepro-field {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
}

.cms-livescore-root--pro .m-livescorepro-field__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 72%, transparent);
}

.cms-livescore-root--pro .m-livescorepro-market-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.cms-livescore-root--pro .m-livescorepro-market-btn {
  flex: 1 1 auto;
  min-width: min(5.25rem, 100%);
  cursor: pointer;
  padding: 0.42rem 0.65rem;
  border-radius: var(--radius-base, 0.5rem);
  border: 1px solid var(--cms-widget-panel-border, color-mix(in srgb, var(--color-accent) 28%, transparent));
  background: color-mix(in srgb, var(--color-background) 88%, var(--color-surface));
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  transition:
    border-color 240ms cubic-bezier(0.33, 1, 0.68, 1),
    background 240ms cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 240ms cubic-bezier(0.33, 1, 0.68, 1),
    transform 200ms cubic-bezier(0.33, 1, 0.68, 1);
}

.cms-livescore-root--pro .m-livescorepro-market-btn:hover {
  border-color: color-mix(in srgb, var(--color-accent) 45%, transparent);
  background: color-mix(in srgb, var(--color-primary) 10%, var(--color-background));
}

.cms-livescore-root--pro .m-livescorepro-market-btn:active {
  transform: scale(0.98);
}

.cms-livescore-root--pro .m-livescorepro-market-btn--active {
  border-color: color-mix(in srgb, var(--color-accent) 55%, transparent);
  background: color-mix(in srgb, var(--color-accent) 24%, var(--color-surface));
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 18%, transparent);
}

.cms-livescore-root--pro .m-livescorepro-market-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--color-primary) 22%, transparent),
    0 0 0 4px color-mix(in srgb, var(--color-primary) 12%, transparent);
}

.cms-livescore-root--pro .m-livescorepro-date-row {
  display: flex;
  align-items: stretch;
  gap: 0.4rem;
  min-width: 0;
}

.cms-livescore-root--pro .m-livescorepro-date-row .m-livescorepro-field__control--date {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  max-width: 100%;
}

.cms-livescore-root--pro .m-livescorepro-calendar-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-sizing: border-box;
  min-width: 2.35rem;
  min-height: 2.35rem;
  padding: 0.35rem;
  border-radius: var(--radius-base, 0.5rem);
  border: 1px solid var(--cms-widget-panel-border, color-mix(in srgb, var(--color-accent) 28%, transparent));
  background: color-mix(in srgb, var(--color-background) 92%, var(--color-surface));
  color: var(--color-text);
  transition:
    border-color 200ms cubic-bezier(0.33, 1, 0.68, 1),
    background 200ms cubic-bezier(0.33, 1, 0.68, 1),
    transform 220ms cubic-bezier(0.33, 1, 0.68, 1);
}

.cms-livescore-root--pro .m-livescorepro-calendar-btn:hover {
  border-color: color-mix(in srgb, var(--color-accent) 45%, transparent);
  background: color-mix(in srgb, var(--color-primary) 12%, var(--color-background));
}

.cms-livescore-root--pro .m-livescorepro-calendar-btn:active {
  transform: scale(0.97);
}

.cms-livescore-root--pro .m-livescorepro-calendar-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--color-primary) 22%, transparent),
    0 0 0 4px color-mix(in srgb, var(--color-primary) 12%, transparent);
}

.cms-livescore-root--pro .m-livescorepro-calendar-btn svg {
  display: block;
}

.cms-livescore-root--pro .m-livescorepro-field--date .m-livescorepro-field__control--date {
  min-height: 2.35rem;
}

/* Isolate from article.c-page.prose (not-prose utility is not in template CSS) */
.m-template-uw99id .prose .cms-livescore-root,
.m-template-casino-gold .prose .cms-livescore-root {
  max-width: none;
}

.m-template-uw99id .prose .cms-livescore-root :where(p, li, span),
.m-template-casino-gold .prose .cms-livescore-root :where(p, li, span) {
  color: inherit;
}

.m-template-uw99id .prose .cms-livescore-root :where(ul, ol),
.m-template-casino-gold .prose .cms-livescore-root :where(ul, ol) {
  margin: 0;
  padding: 0;
}

.m-template-uw99id .prose .cms-livescore-root .m-livescore__league-bar,
.m-template-casino-gold .prose .cms-livescore-root .m-livescore__league-bar {
  margin: 0;
}

/* =============================================================================
   Livestream shortcode ([[type:livestream;...]]) — scoped under .cms-livestream-root
   ============================================================================= */

.cms-livestream-root .m-livestream-mount[data-state="loading"] .m-livestream__loading {
  text-align: center;
  padding: 1rem;
}

.cms-livestream-root .m-livestream__skeleton {
  padding: 0.75rem 1rem;
}

.cms-livestream-root .m-livestream__skeleton-bar {
  height: 0.65rem;
  width: 40%;
  margin-bottom: 0.5rem;
}

.cms-livestream-root .m-livestream__skeleton-row {
  height: 0.65rem;
  margin-bottom: 0.5rem;
}

.cms-livestream-root .m-livestream__fixture {
  display: grid;
  grid-template-columns: minmax(3.5rem, auto) 1fr auto;
  gap: 0.65rem 1rem;
  align-items: center;
  padding: 0.65rem 1rem;
}

.cms-livestream-root .m-livestream__col--time {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

.cms-livestream-root .m-livestream__live-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--cms-widget-live);
  text-transform: uppercase;
}

.cms-livestream-root .m-livestream__col--match {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  min-width: 0;
}

.cms-livestream-root .m-livestream__name {
  font-size: 0.875rem;
  font-weight: 600;
}

.cms-livestream-root .m-livestream__vs {
  font-size: 0.75rem;
  opacity: 0.65;
}

.cms-livestream-root .m-livestream__watch-btn {
  min-height: 2.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: calc(var(--radius-base, 0.5rem) + 2px);
  border: 1px solid color-mix(in srgb, var(--color-accent) 55%, transparent);
  background: color-mix(in srgb, var(--color-accent) 18%, var(--color-surface));
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background var(--cms-widget-duration) var(--cms-widget-ease),
    transform var(--cms-widget-duration) var(--cms-widget-ease);
}

.cms-livestream-root .m-livestream__watch-btn:hover:not(:disabled) {
  background: color-mix(in srgb, var(--color-accent) 28%, var(--color-surface));
}

.cms-livestream-root .m-livestream__watch-btn:active:not(:disabled) {
  transform: translateY(1px);
}

.cms-livestream-root .m-livestream__watch-btn--disabled,
.cms-livestream-root .m-livestream__watch-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  border-color: color-mix(in srgb, var(--color-text) 18%, transparent);
  background: color-mix(in srgb, var(--color-text) 6%, transparent);
}

.cms-livestream-root .m-livestream__list--cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 0.75rem;
  padding: 0.75rem;
}

.cms-livestream-root .m-livestream__card--tile {
  padding: 0.85rem;
  border-radius: calc(var(--radius-base, 0.5rem) + 2px);
  border: 1px solid var(--cms-widget-panel-border);
  background: color-mix(in srgb, var(--color-surface) 94%, transparent);
}

.cms-livestream-root .m-livestream__card-league {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.75;
}

.cms-livestream-root .m-livestream__card-teams {
  margin: 0.35rem 0;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Modal may be portaled to document.body — do not scope under .cms-livestream-root */
.m-livestream-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.m-livestream-modal[hidden] {
  display: none !important;
}

.m-livestream-modal__backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, #000 55%, transparent);
}

.m-livestream-modal__panel {
  position: relative;
  z-index: 1;
  width: min(56rem, 100%);
  max-height: min(90vh, 40rem);
  display: flex;
  flex-direction: column;
  border-radius: calc(var(--radius-base, 0.5rem) + 6px);
  border: 1px solid var(--cms-widget-panel-border);
  background: var(--cms-widget-panel-bg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.m-livestream-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--cms-widget-panel-border);
}

.m-livestream-modal__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
}

.m-livestream-modal__close {
  min-width: 2.25rem;
  min-height: 2.25rem;
  border: none;
  border-radius: var(--radius-base, 0.5rem);
  background: color-mix(in srgb, var(--color-text) 8%, transparent);
  color: var(--color-text);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.m-livestream-modal__body {
  padding: 0.75rem 1rem 1rem;
}

.m-livestream-modal__player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: calc(var(--radius-base, 0.5rem) + 2px);
  overflow: hidden;
}

.m-livestream-modal__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.m-livestream-modal__status {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  text-align: center;
  color: color-mix(in srgb, var(--color-text) 80%, transparent);
}

body.m-livestream-modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

@media (max-width: 640px) {
  .cms-livestream-root .m-livestream__fixture {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .cms-livestream-root .m-livestream__col--action {
    justify-self: start;
  }
}

/* ==========================================================================
   Movie shortcode ([[type:movie;...]]) — cinema widget + ArtPlayer modal
   Progressive category disclosure (parent → child) + poster wall
   ========================================================================== */

.cms-movie-root {
  --movie-gap: clamp(0.85rem, 2.2vw, 1.35rem);
  --movie-chip-min: 2.75rem;
  margin-block: clamp(1rem, 3vw, 1.75rem);
  color: var(--color-text);
}

.cms-movie-root .m-movie__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--movie-gap);
  padding: 0.85rem 1rem;
  border-radius: calc(var(--radius-base, 0.5rem) + 4px);
  background: color-mix(in srgb, var(--color-surface, #fff) 88%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent);
}

.cms-movie-root .m-movie__nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1 1 16rem;
  min-width: 0;
}

.cms-movie-root .m-movie__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  max-width: 100%;
}

.cms-movie-root .m-movie__cats--children {
  padding: 0.45rem 0.15rem 0.1rem;
  border-top: 1px dashed color-mix(in srgb, var(--color-text) 14%, transparent);
  animation: cms-movie-child-in 220ms ease;
}

@keyframes cms-movie-child-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.cms-movie-root .m-movie__chip {
  appearance: none;
  min-height: var(--movie-chip-min);
  border: 1px solid color-mix(in srgb, var(--color-text) 16%, transparent);
  background: var(--color-surface, #fff);
  color: inherit;
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font: inherit;
  font-size: 0.875rem;
  line-height: 1.2;
  cursor: pointer;
  touch-action: manipulation;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.cms-movie-root .m-movie__chip--parent {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.cms-movie-root .m-movie__chip--child {
  font-weight: 500;
  font-size: 0.8125rem;
  background: color-mix(in srgb, var(--color-text) 4%, var(--color-surface, #fff));
}

.cms-movie-root .m-movie__chip:hover,
.cms-movie-root .m-movie__chip:active {
  border-color: var(--color-primary, #e11d48);
}

.cms-movie-root .m-movie__chip:focus-visible {
  outline: 2px solid var(--color-primary, #e11d48);
  outline-offset: 2px;
}

.cms-movie-root .m-movie__chip.is-active {
  background: color-mix(in srgb, var(--color-primary, #e11d48) 16%, transparent);
  border-color: var(--color-primary, #e11d48);
  color: var(--color-primary, #e11d48);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-primary, #e11d48) 35%, transparent);
}

.cms-movie-root .m-movie__search {
  display: flex;
  gap: 0.45rem;
  flex: 0 1 18rem;
  max-width: 22rem;
  width: 100%;
}

.cms-movie-root .m-movie__search .m-form__input {
  min-height: var(--movie-chip-min);
  flex: 1 1 auto;
}

.cms-movie-root .m-movie__search .m-btn {
  min-height: var(--movie-chip-min);
  min-width: var(--movie-chip-min);
}

.cms-movie-root .m-movie__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--movie-gap);
}

.cms-movie-root .m-movie__grid--cards {
  grid-template-columns: repeat(auto-fill, minmax(9.75rem, 1fr));
}

.cms-movie-root .m-movie__grid--list {
  grid-template-columns: 1fr;
}

.cms-movie-root .m-movie__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: left;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  border-radius: calc(var(--radius-base, 0.5rem) + 2px);
  overflow: hidden;
  transition: transform 220ms ease;
}

.cms-movie-root .m-movie__item--list .m-movie__card {
  flex-direction: row;
  gap: 0.95rem;
  align-items: stretch;
}

.cms-movie-root .m-movie__card:hover,
.cms-movie-root .m-movie__card:active {
  transform: translateY(-3px);
}

.cms-movie-root .m-movie__card:focus-visible {
  outline: 2px solid var(--color-primary, #e11d48);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .cms-movie-root .m-movie__card,
  .cms-movie-root .m-movie__chip,
  .cms-movie-root .m-movie__spinner,
  .cms-movie-root .m-movie__cats--children {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

.cms-movie-root .m-movie__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  background: color-mix(in srgb, var(--color-text) 10%, transparent);
  border-radius: calc(var(--radius-base, 0.5rem) + 2px);
  overflow: hidden;
  box-shadow: 0 10px 28px color-mix(in srgb, #000 18%, transparent);
  isolation: isolate;
}

.cms-movie-root .m-movie__item--list .m-movie__media {
  width: 5.75rem;
  flex: 0 0 5.75rem;
  aspect-ratio: 2 / 3;
  box-shadow: 0 6px 16px color-mix(in srgb, #000 14%, transparent);
}

/* Fill frame without distortion (crop overflow). Beat global img { height:auto }. */
.cms-movie-root .m-movie__media > img.m-movie__poster {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: cover !important;
  object-position: center center;
  display: block;
}

.cms-movie-root .m-movie__media > img.m-movie__poster.is-broken,
.cms-movie-root .m-movie__media > .m-movie__poster--empty {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--color-text) 10%, transparent),
      color-mix(in srgb, var(--color-primary, #e11d48) 22%, transparent)
    );
}

.cms-movie-root .m-movie__badge {
  position: absolute;
  left: 0.45rem;
  bottom: 0.45rem;
  max-width: calc(100% - 0.9rem);
  padding: 0.18rem 0.45rem;
  border-radius: 0.3rem;
  font-size: 0.7rem;
  line-height: 1.2;
  background: color-mix(in srgb, #000 68%, transparent);
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cms-movie-root .m-movie__meta {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  padding: 0.6rem 0.15rem 0.25rem;
}

.cms-movie-root .m-movie__type {
  font-size: 0.75rem;
  opacity: 0.68;
}

.cms-movie-root .m-movie__title {
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cms-movie-root .m-movie__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: var(--movie-gap);
}

.cms-movie-root .m-movie__pager .m-btn {
  min-height: 2.75rem;
  min-width: 2.75rem;
}

.cms-movie-root .m-movie__page-indicator {
  font-size: 0.875rem;
  opacity: 0.85;
  font-variant-numeric: tabular-nums;
}

.cms-movie-root .m-movie__loading,
.cms-movie-root .m-movie__empty-panel,
.cms-movie-root .m-movie__panel {
  display: grid;
  place-items: center;
  gap: 0.75rem;
  min-height: 12rem;
  text-align: center;
  padding: 1.25rem;
}

.cms-movie-root .m-movie__spinner {
  width: 1.55rem;
  height: 1.55rem;
  border: 2px solid color-mix(in srgb, var(--color-text) 20%, transparent);
  border-top-color: var(--color-primary, #e11d48);
  border-radius: 50%;
  animation: cms-movie-spin 0.7s linear infinite;
}

@keyframes cms-movie-spin {
  to {
    transform: rotate(360deg);
  }
}

.cms-movie-root .m-movie__disclaimer {
  margin-top: clamp(1rem, 2.5vw, 1.5rem);
  padding-top: 0.85rem;
  border-top: 1px solid color-mix(in srgb, var(--color-text) 12%, transparent);
  font-size: 0.75rem;
  line-height: 1.55;
  opacity: 0.72;
}

.cms-movie-root .m-movie__disclaimer p {
  margin: 0;
}

.cms-movie-root .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.m-movie-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.m-movie-modal[hidden] {
  display: none !important;
}

.m-movie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, #000 62%, transparent);
}

.m-movie-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 56rem);
  max-height: min(92vh, 48rem);
  overflow: auto;
  border-radius: calc(var(--radius-base, 0.5rem) + 4px);
  background: var(--color-surface, #111);
  color: var(--color-text, #f8fafc);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  padding: 1rem 1rem 1.25rem;
}

.m-movie-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.m-movie-modal__title {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.3;
}

.m-movie-modal__player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-base, 0.5rem);
  overflow: hidden;
}

.m-movie-modal__status {
  margin-top: 0.75rem;
  text-align: center;
}

.m-movie-modal__meta {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

.m-movie-modal__blurb {
  flex: 1 1 100%;
  margin: 0.35rem 0 0;
  line-height: 1.5;
  opacity: 0.85;
}

.m-movie-modal__label {
  margin: 0.85rem 0 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.75;
}

.m-movie-modal__line-tabs,
.m-movie-modal__ep-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.m-movie-modal__line-btn.is-active,
.m-movie-modal__ep-btn.is-active {
  border-color: var(--color-primary, #e11d48);
  color: var(--color-primary, #e11d48);
}

html.m-movie-modal-open,
html.m-movie-modal-open body {
  overflow: hidden;
  overscroll-behavior: none;
}

@media (max-width: 640px) {
  .cms-movie-root .m-movie__toolbar {
    padding: 0.75rem;
  }

  .cms-movie-root .m-movie__search {
    flex: 1 1 100%;
    max-width: none;
  }

  .cms-movie-root .m-movie__grid--cards {
    grid-template-columns: repeat(auto-fill, minmax(8.25rem, 1fr));
    gap: 0.75rem;
  }
}

.lv2-json-bootstrap {
  display: none !important;
}

/* Panel shell — energy near .m-contact-page__card (merchant :root tokens) */
.lv2-remote-shell {
  --lv2-shell-pad: calc(var(--space-unit, 10px) * 3);
  --lv2-field-gap-y: clamp(0.85rem, 2.2vw, 1.1rem);
  --lv2-ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  max-width: min(100%, 26.75rem);
  margin-block: clamp(1rem, 3vw, 1.75rem);
  box-sizing: border-box;
  border-radius: calc(var(--radius-base, 0.5rem) + 6px);
  border: var(--border-width, 1px) solid color-mix(in srgb, var(--color-accent) 26%, transparent);
  background: color-mix(in srgb, var(--color-surface) 72%, transparent);
  padding: var(--lv2-shell-pad);
  box-shadow: var(--shadow-sm, 0 4px 24px rgba(0, 0, 0, 0.06)),
    inset 0 1px 0 color-mix(in srgb, var(--color-text) 7%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lv2-remote-shell--login {
  max-width: min(100%, 22.5rem);
}

.registerform.lv2-remote-register,
.customform.lv2-remote-login {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-unit, 10px) * 0.25);
  touch-action: manipulation;
  margin: 0;
}

.lv2-remote-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
  margin: 0 0 var(--lv2-field-gap-y);
}

.lv2-remote-field:last-child {
  margin-bottom: 0;
}

.lv2-remote-field__lbl {
  margin: 0;
  padding: 0;
  font-size: clamp(0.82rem, 1.95vw, 0.9rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: color-mix(in srgb, var(--color-text) 92%, transparent);
}

.lv2-remote-field__body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  min-width: 0;
}

.lv2-remote-inline.lv2-remote-inline--check {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.6rem;
}

.registerform.lv2-remote-register .lv2-remote-input--captcha-num {
  max-width: 12rem;
  font-variant-numeric: tabular-nums;
}

.lv2-remote-hint {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--color-text) 64%, transparent);
}

.registerform.lv2-remote-register .lv2-remote-feedback.lv2-msg {
  min-height: 1rem;
  font-size: 0.8125rem;
  line-height: 1.42;
  color: color-mix(in srgb, var(--color-text) 62%, transparent);
}

.registerform.lv2-remote-register .lv2-msg--warn {
  color: color-mix(in srgb, var(--color-error) 88%, var(--color-text));
}

.registerform.lv2-remote-register .lv2-msg--ok {
  color: color-mix(in srgb, var(--color-success) 88%, var(--color-text));
}

.customform.lv2-remote-login .lv2-remote-login-status {
  margin-top: calc(var(--space-unit, 10px) * 1.5);
  min-height: 1.35rem;
  padding: calc(var(--space-unit, 10px) * 0.9) calc(var(--space-unit, 10px) * 1.25);
  border-radius: var(--radius-base, 0.5rem);
  border: var(--border-width, 1px) solid color-mix(in srgb, var(--color-text) 10%, transparent);
  background: color-mix(in srgb, var(--color-surface) 55%, transparent);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.42;
}

.customform.lv2-remote-login .lv2-remote-login-status:empty {
  display: none;
}

.customform.lv2-remote-login .lv2-remote-login-status:not(:empty) {
  display: block;
}

.registerform.lv2-remote-register .lv2-remote-captcha-grid {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: clamp(0.65rem, 2vw, 1rem);
  align-items: center;
}

.customform.lv2-remote-login .lv2-remote-captcha-grid,
.customform.lv2-remote-login .lv2-remote-captcha-grid--login {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: clamp(0.65rem, 2vw, 1rem);
  align-items: center;
}

@media (max-width: 28rem) {
  .registerform.lv2-remote-register .lv2-remote-captcha-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .registerform.lv2-remote-register .lv2-remote-input--captcha-num {
    max-width: none;
  }

  .customform.lv2-remote-login .lv2-remote-captcha-grid,
  .customform.lv2-remote-login .lv2-remote-captcha-grid--login {
    grid-template-columns: minmax(0, 1fr);
  }

  .customform.lv2-remote-login .lv2-remote-input--captcha-num {
    max-width: none;
  }
}

.registerform.lv2-remote-register .lv2-remote-captcha-visual {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.customform.lv2-remote-login .lv2-remote-captcha-visual {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.registerform.lv2-remote-register .lv2-reg-captcha-img {
  display: block;
  flex-shrink: 0;
  border-radius: calc(var(--radius-base, 0.5rem) * 0.55);
  border: var(--border-width, 1px) solid color-mix(in srgb, var(--color-accent) 24%, transparent);
  background: #fff;
}

.customform.lv2-remote-login .lv2-captcha-img {
  display: block;
  flex-shrink: 0;
  border-radius: calc(var(--radius-base, 0.5rem) * 0.55);
  border: var(--border-width, 1px) solid color-mix(in srgb, var(--color-accent) 24%, transparent);
  background: #fff;
  min-width: 60px;
  min-height: 24px;
}

.customform.lv2-remote-login .lv2-remote-input--captcha-num {
  max-width: 12rem;
  font-variant-numeric: tabular-nums;
}

.registerform.lv2-remote-register .lv2-remote-secondary-btn,
.registerform.lv2-remote-register .lv2-remote-icon-btn,
.registerform.lv2-remote-register .btnCheckUser.lv2-btn-check-user,
.customform.lv2-remote-login .lv2-remote-secondary-btn,
.customform.lv2-remote-login .lv2-remote-icon-btn {
  /* visual → .m-btn--secondary; keep LinkV2 layout sizing */
  min-height: 48px;
}

.registerform.lv2-remote-register .lv2-remote-icon-btn.lv2-captcha-reload,
.customform.lv2-remote-login .lv2-remote-icon-btn.lv2-captcha-reload {
  min-width: 48px;
  padding-inline: 0;
  font-size: 1.15rem;
  line-height: 1;
}

.registerform.lv2-remote-register .lv2-remote-icon-slot {
  display: inline-flex;
}

.registerform.lv2-remote-register .lv2-hp-field,
.customform.lv2-remote-login .lv2-hp-field {
  position: absolute !important;
  opacity: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
}

.registerform.lv2-remote-register .lv2-remote-field--submit,
.customform.lv2-remote-login .lv2-remote-field--submit-login {
  margin-top: calc(var(--space-unit, 10px) * 0.5);
}

.registerform.lv2-remote-register .lv2-remote-field--submit .lv2-remote-field__body,
.customform.lv2-remote-login .lv2-remote-field--submit-login .lv2-remote-field__body {
  padding-top: 0.35rem;
}

/* .lv2-remote-submit hover/focus/disabled → unified .m-btn */

/* =============================================================================
   Transferlist shortcode ([[type:transferlist;...]]) — scoped under .cms-transferlist-root
   ============================================================================= */

.cms-transferlist-root .m-transferlist__header {
  margin-bottom: 0.75rem;
}

.cms-transferlist-root .m-transferlist__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

.cms-transferlist-root .m-transferlist__badge--deposit {
  background: color-mix(in srgb, var(--color-success) 22%, var(--color-surface, #0f172a));
  color: #86efac;
}

.cms-transferlist-root .m-transferlist__badge--withdraw {
  background: color-mix(in srgb, #f59e0b 22%, var(--color-surface, #0f172a));
  color: #fcd34d;
}

.cms-transferlist-root .m-transferlist-mount[data-state="loading"] .m-transferlist__loading {
  text-align: center;
  padding: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted, #94a3b8);
}

.cms-transferlist-root .m-transferlist__skeleton {
  padding: 0.75rem 1rem;
}

.cms-transferlist-root .m-transferlist__skeleton-bar {
  height: 0.65rem;
  width: 35%;
  margin-bottom: 0.5rem;
  border-radius: 4px;
  background: color-mix(in srgb, var(--color-text, #e2e8f0) 12%, transparent);
  animation: m-transferlist-pulse 1.2s ease-in-out infinite;
}

.cms-transferlist-root .m-transferlist__skeleton-row {
  height: 0.55rem;
  margin-bottom: 0.45rem;
  border-radius: 4px;
  background: color-mix(in srgb, var(--color-text, #e2e8f0) 8%, transparent);
  animation: m-transferlist-pulse 1.2s ease-in-out infinite;
}

@keyframes m-transferlist-pulse {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

.cms-transferlist-root .m-transferlist__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cms-transferlist-root[data-has-width="1"] {
  width: var(--cms-tl-width);
  max-width: 100%;
  box-sizing: border-box;
}

.cms-transferlist-root .m-transferlist__viewport {
  position: relative;
}

.cms-transferlist-root[data-has-height="1"] .m-transferlist__viewport {
  height: var(--cms-tl-height);
  max-height: var(--cms-tl-height);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.cms-transferlist-root[data-autoplay="1"] .m-transferlist__viewport,
.cms-transferlist-root[data-autoplay="1"][data-has-height="1"] .m-transferlist__viewport {
  overflow: hidden;
}

.cms-transferlist-root .m-transferlist__viewport--marquee {
  overflow: hidden;
}

.cms-transferlist-root .m-transferlist__viewport--static {
  overflow-y: auto;
  overflow-x: hidden;
}

.cms-transferlist-root .m-transferlist__track {
  will-change: transform;
}

.cms-transferlist-root .m-transferlist__list--cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
  gap: 0.65rem;
}

.cms-transferlist-root .m-transferlist__track--marquee-x.m-transferlist__list--cards,
.cms-transferlist-root .m-transferlist__track--marquee-x {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.65rem;
  width: max-content;
  grid-template-columns: unset;
}

.cms-transferlist-root .m-transferlist__track--marquee-y {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.cms-transferlist-root .m-transferlist__track--marquee-x .m-transferlist__item--card {
  flex: 0 0 auto;
  width: 10.5rem;
}

.cms-transferlist-root .m-transferlist__track--animate-x {
  animation-name: m-transferlist-marquee-x;
  animation-duration: var(--cms-tl-marquee-duration, 20s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.cms-transferlist-root .m-transferlist__track--animate-y {
  animation-name: m-transferlist-marquee-y;
  animation-duration: var(--cms-tl-marquee-duration, 20s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes m-transferlist-marquee-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--cms-tl-marquee-distance, 50%)));
  }
}

@keyframes m-transferlist-marquee-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-1 * var(--cms-tl-marquee-distance, 50%)));
  }
}

@media (prefers-reduced-motion: reduce) {
  /* Keep opted-in transferlist marquee looping (autoplay:1); global gate would otherwise stop it. */
  .cms-transferlist-root[data-autoplay="1"] .m-transferlist__track--animate-x,
  .cms-transferlist-root[data-autoplay="1"] .m-transferlist__track--animate-y {
    animation-duration: var(--cms-tl-marquee-duration, 20s) !important;
    animation-iteration-count: infinite !important;
  }
}

.cms-transferlist-root .m-transferlist__thead {
  display: grid;
  grid-template-columns: minmax(6rem, 1.2fr) minmax(4rem, 0.8fr) minmax(6.5rem, 1fr) minmax(6.5rem, 1fr);
  gap: 0.65rem 1rem;
  padding: 0.35rem 1rem 0.25rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  opacity: 0.65;
}

.cms-transferlist-root .m-transferlist__th--money {
  text-align: right;
}

.cms-transferlist-root .m-transferlist__row {
  display: grid;
  grid-template-columns: minmax(6rem, 1.2fr) minmax(4rem, 0.8fr) minmax(6.5rem, 1fr) minmax(6.5rem, 1fr);
  gap: 0.65rem 1rem;
  align-items: center;
  padding: 0.65rem 1rem;
  border-radius: calc(var(--radius-base, 0.5rem) + 2px);
  background: color-mix(in srgb, var(--color-surface-elevated, #1e293b) 88%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-border, #334155) 65%, transparent);
}

.cms-transferlist-root .m-transferlist__col--money {
  text-align: right;
}

.cms-transferlist-root .m-transferlist--group-deposit .m-transferlist__thead,
.cms-transferlist-root .m-transferlist--group-deposit .m-transferlist__row--feed,
.cms-transferlist-root .m-transferlist--group-withdraw .m-transferlist__thead,
.cms-transferlist-root .m-transferlist--group-withdraw .m-transferlist__row--feed {
  grid-template-columns: minmax(6rem, 1.2fr) minmax(4rem, 0.8fr) minmax(6.5rem, 1fr);
}

.cms-transferlist-root .m-transferlist__card--deposit {
  border-left: 3px solid var(--color-success);
}

.cms-transferlist-root .m-transferlist__card--withdraw {
  border-left: 3px solid #f59e0b;
}

.cms-transferlist-root .m-transferlist__label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  opacity: 0.65;
  margin-bottom: 0.15rem;
}

.cms-transferlist-root .m-transferlist__value {
  font-size: 0.875rem;
  font-weight: 600;
}

.cms-transferlist-root .m-transferlist__amount {
  font-variant-numeric: tabular-nums;
  color: var(--color-accent, #38bdf8);
}

.cms-transferlist-root .m-transferlist__time {
  font-size: 0.8125rem;
  opacity: 0.85;
  white-space: nowrap;
}

.cms-transferlist-root .m-transferlist__card--tile {
  padding: 0.85rem 1rem;
  border-radius: calc(var(--radius-base, 0.5rem) + 2px);
  background: color-mix(in srgb, var(--color-surface-elevated, #1e293b) 88%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-border, #334155) 65%, transparent);
}

.cms-transferlist-root .m-transferlist__card-amount {
  font-size: 1.125rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  margin: 0 0 0.35rem;
  color: var(--color-accent, #38bdf8);
}

.cms-transferlist-root .m-transferlist__card-user {
  margin: 0 0 0.35rem;
  font-size: 0.875rem;
}

.cms-transferlist-root .m-transferlist__card-type {
  font-size: 0.8125rem;
  opacity: 0.75;
  font-weight: 500;
}

.cms-transferlist-root .m-transferlist__card-line {
  margin: 0 0 0.35rem;
  font-size: 0.875rem;
}

.cms-transferlist-root .m-transferlist__summary {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: calc(var(--radius-base, 0.5rem) + 2px);
  background: color-mix(in srgb, var(--color-surface-elevated, #1e293b) 88%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-border, #334155) 65%, transparent);
}

.cms-transferlist-root .m-transferlist__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.35rem 0;
}

.cms-transferlist-root .m-transferlist__summary-label {
  font-size: 0.8125rem;
  opacity: 0.85;
}

.cms-transferlist-root .m-transferlist__summary-value {
  font-size: 1.125rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--color-accent, #38bdf8);
}

.cms-transferlist-root .m-transferlist__hint {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.75;
}

.cms-transferlist-root .m-transferlist__empty-panel,
.cms-transferlist-root .m-transferlist--offline .m-transferlist__msg,
.cms-transferlist-root .m-transferlist--error .m-transferlist__msg {
  text-align: center;
  padding: 1.25rem 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted, #94a3b8);
}

@media (max-width: 640px) {
  .cms-transferlist-root .m-transferlist__thead {
    display: none;
  }

  .cms-transferlist-root .m-transferlist__row {
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
  }

  .cms-transferlist-root .m-transferlist__col--player {
    grid-column: 1 / -1;
  }
}

/* =============================================================================
/* =============================================================================
   PWA shortcode ([[type:pwa;...]]) â€” scoped under .cms-pwa-root
   ============================================================================= */

.cms-pwa-root {
  margin: 1rem 0;
}

/* .m-pwa__btn base → unified .m-btn--pill; size modifiers only */
.cms-pwa-root .m-pwa__btn--size-1 {
  font-size: 0.75rem;
  padding: 0.45rem 0.9rem;
  min-height: auto;
}

.cms-pwa-root .m-pwa__btn--size-2 {
  font-size: 0.8125rem;
  padding: 0.55rem 1rem;
  min-height: auto;
}

.cms-pwa-root .m-pwa__btn--size-3 {
  font-size: 0.9375rem;
}

.cms-pwa-root .m-pwa__btn--size-4 {
  font-size: 1.0625rem;
  padding: 0.75rem 1.5rem;
}

.cms-pwa-root .m-pwa__btn--size-5 {
  font-size: 1.1875rem;
  padding: 0.85rem 1.75rem;
}

.cms-pwa-root .m-pwa__guide {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.cms-pwa-root .m-pwa__guide[hidden] {
  display: none;
}

.cms-pwa-root .m-pwa__guide-backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, #000 55%, transparent);
}

.cms-pwa-root .m-pwa__guide-panel {
  position: relative;
  width: min(100%, 22rem);
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  background: var(--color-surface, #fff);
  color: var(--color-text, #1c1917);
  box-shadow: 0 20px 50px color-mix(in srgb, #000 25%, transparent);
}

.cms-pwa-root .m-pwa__guide-title {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.cms-pwa-root .m-pwa__guide-steps {
  margin: 0 0 0.75rem 1.1rem;
  padding: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.cms-pwa-root .m-pwa__guide-note {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted, #78716c);
}

.cms-pwa-root .m-pwa__guide-close {
  width: 100%;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 0.65rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--color-primary, #2563eb);
  color: var(--color-on-primary, #fff);
}

body.m-pwa-guide-open {
  overflow: hidden;
}

/* =============================================================================
   Motion — single prefers-reduced-motion gate
   ============================================================================= */
@media (prefers-reduced-motion: reduce) {
  body.m-template-uw99id::before,
  body.m-template-uw99id::after {
    animation: none !important;
  }
  body.m-template-uw99id::after { opacity: 0.28; }

  .m-template-uw99id *,
  .m-template-uw99id *::before,
  .m-template-uw99id *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .m-template-uw99id .m-card__media-img,
  .m-template-uw99id .m-gallery__img {
    transition: none !important;
    transform: none !important;
  }

  .m-template-uw99id .m-card:hover,
  .m-template-uw99id .m-news-card:hover,
  .m-template-uw99id .m-faq__tile:hover,
  .m-template-uw99id .m-product-list .m-card--product:hover,
  .m-template-uw99id .m-product-masonry .m-card--masonry:hover,
  .m-template-uw99id .m-faq-card .m-card--faq:hover,
  .m-template-uw99id .m-module-hub__category .m-card--category:hover {
    transform: none !important;
  }

  /* autoplay:1 opted into continuous marquee — restore infinite duration under reduce gate */
  .m-template-uw99id .cms-transferlist-root[data-autoplay="1"] .m-transferlist__track--animate-x,
  .m-template-uw99id .cms-transferlist-root[data-autoplay="1"] .m-transferlist__track--animate-y {
    animation-duration: var(--cms-tl-marquee-duration, 20s) !important;
    animation-iteration-count: infinite !important;
  }

  .m-template-uw99id .cms-livescore-root[data-autoplay="1"] .m-livescore__track--animate-x,
  .m-template-uw99id .cms-livescore-root[data-autoplay="1"] .m-livescore__track--animate-y {
    animation-duration: var(--cms-ls-marquee-duration, 20s) !important;
    animation-iteration-count: infinite !important;
  }
}


/* MYCSS MYCSS MYCSS MYCSS MYCSS MYCSS MYCSS MYCSS MYCSS MYCSS MYCSS MYCSS MYCSS MYCSS */
body {
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif !important;
}
body.light {
  background: var(--color-light-1);
}
.desktop {
  display: block;
}
.mobile {
  display: none;
}
.burger {
  display: none;
}

::-webkit-scrollbar {
  background: var(--color-accent);
  width: 11px;
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border: 3px solid var(--color-primary);
}
::-webkit-scrollbar-track {
  background: var(--color-primary);
  border-radius: 0px;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.2;
  font-size: 15px;
  color: var(--color-background);
  background: var(--body-background-color);
  scroll-behavior: smooth;
}
body.noscroll {
  overflow: hidden;
  touch-action: none;
}

a {
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover,
a:focus,
button:focus,
button:hover,
input:focus,
select:focus {
  text-decoration: none;
  outline: none;
}

img {
  max-width: 100%;
}

button {
  background: none;
  border: none;
  padding: 0;
}
.t-body {
  overflow: hidden;
}
.deco {
  position: absolute;
}
.max-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.body-container {
  display: grid;
  grid-template-columns: 290px auto;
  transition: 0.3s;
}
.small.w3-text-green {
  color: var(--color-background);
}
.darkMode .small.w3-text-green {
  color: var(--color-text);
}

.darkmodelogo {
  display: none;
}

.lightmodelogo {
  display: block;
}

.darkMode .darkmodelogo {
  display: block;
}

.darkMode .lightmodelogo {
  display: none;
}

.back-link {
  display: flex;
  border-radius: 5px;
  height: 30px;
  width: 30px;
  background: var(--color-light-5);
  z-index: 3;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  margin: 10px;
}
.backmenu {
  position: relative;
}
.backmenu h3 {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  margin: 0;
  font-weight: bold;
  font-size: 18px;
  margin-top: -50px;
  color: var(--color-background);
}
.subbanner {
  position: relative;
}
.bannerwords {
  font-family: arial;
  position: absolute;
  top: calc(50% + 8%);
  left: 5%;
  transform: translateY(-50%);
  z-index: 1;
  color: var(--color-text);
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
}
.footerterms {
  margin: 10px 0;
  font-size: 16px;
}
/*News page css*/
#backtolist {
  max-width: 120px;
}
#theme-contain-news {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
#cms5-news-view div#message p,
#cms5-news-view div#message ul {
  color: var(--color-light-7) !important;
  line-height: 1.5;
}
#cms5-news-view div#message h2,
#cms5-news-view div#message h3,
#cms5-news-view div#message h4 {
  color: var(--color-primary) !important;
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: bold;
}
#cms5-news-view div#photo {
  float: initial;
  padding: 0;
  width: 100%;
  display: none;
}
#cms5-news-view div#datepublish {
  float: right;
  font-size: 12px;
  color: #222;
  margin: 0;
}
#cms5-news-view h1 {
  text-align: left;
  font-weight: bold;
  color: #222 !important;
  font-size: 30px;
}

#cms5-news-view {
  border-radius: 15px;
  background: var(--color-text);
  padding: 16px;
  margin: 90px 20px 40px 20px;
}
#cms5-news-view div#backtolist a,
#cms5-news-view div#backtolist a:visited {
  display: block;
  text-align: left;
  text-decoration: none;
  background: linear-gradient(#b2181b, #7b0003);
  color: #ddd;
  width: max-content;
  height: auto;
  padding: 10px;
  border-radius: 30px;
  text-align: center;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 20px;
}
#cms5-newscatlist,
#cms5-news-view div#sharelink {
  display: none;
}
#api-facebook-like {
  display: none;
}

#cms5-newscatlist ul {
  margin: 0;
}
#pages {
  text-align: center;
  margin: 5px;
}
#pages a {
  margin: 1px;
  padding: 0px 2px 0px 2px;
  border: 1px solid #cccccc;
}

#cms5-news-list {
  padding: 25px 20px 40px 20px;
  padding-bottom: 40px;
}
#cms5-news-list ul li div#details {
  float: right;
}
#cms5-news-list ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(3, 1fr);
}
#cms5-news-list ul li {
  display: block;
  clear: both;
  text-align: left;
  border: 1px solid #e4d0b9;
  border-radius: 5px;
  padding: 16px;
  width: 100%;
  background: var(--color-light-3);
}
#cms5-news-list ul li div#title {
  font-size: 15px;
  font-weight: bold;
}
#cms5-news-list ul li div#message {
  color: var(--color-light-10);
  padding-top: 5px;
}
#cms5-news-list ul li div#title a,
#cms5-news-list ul li div#title a:visited {
  color: var(--color-light-7);
  text-decoration: none;
  line-height: 16px;
  font-size: 16px;
}
#cms5-news-list ul li div#details a:hover,
#cms5-news-view div#backtolist a:hover {
  filter: contrast(0.9);
}
#cms5-news-list ul li div#details a,
#cms5-news-list ul li div#details a:visited,
#cms5-news-view div#backtolist a,
#cms5-news-view div#backtolist a:visited {
  display: block;
  text-align: center;
  width: 100%;
  padding: 10px 5px;
  border: 0;
  margin: auto;
  min-width: 80px;
  background: var(--color-primary);
  border-radius: 5px;
  color: var(--color-background);
  font-size: 14px;
  font-weight: normal;
  box-shadow: #e0c7ae 0px -2px inset;
}
#cms5-news-list ul li div#photo {
  float: left;
  padding: 0px 5px 5px 0px;
}

table.vip-table tr {
  border-bottom: 1px solid #383f56;
}

.badgestitle td {
  padding: 20px !important;
}

.badgestitle {
  background: var(--color-dark-4);
}
.circle {
  border: 1px solid #fdd961;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 34px;
  margin: auto;
  font-weight: bold;
  color: var(--color-light-7);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
}
.darkMode .circle {
  color: var(--color-text);
}

.bonustable2 {
  display: grid;
  width: 100%;
  max-width: 600px;
  grid-template-columns: auto 30px auto 30px auto;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  grid-gap: 5px;
}

.bstt4 {
  margin: 30px 0;
  margin-bottom: 20px;
  font-weight: bold;
}
.bstt3 {
  margin: 30px 0;
  font-size: 24px;
  color: var(--color-light-7);
}
.bonustable img,
.bonustable2 img {
  width: 100%;
  margin: auto;
  max-width: 60px;
}
.bonustable {
  display: grid;
  width: 100%;
  max-width: 300px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  justify-content: center;
  align-items: center;
  text-align: center;
  grid-gap: 5px;
}
.smallline {
  display: block;
  width: 100%;
  height: 1px;
  margin: auto;
  background: #353840;
}
.bonustable p,
.bonustable2 p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.table_component {
  overflow: auto;
  width: 100%;
  margin-bottom: 30px;
  margin-top: 10px;
}

.table_component table {
  border: 0;
  height: 100%;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 1px;
  text-align: left;
  font-size: 12px;
}

.table_component caption {
  caption-side: top;
  text-align: left;
}
.bonustable p,
.bonustable2 p,
.bttitle h5,
.bstt4 {
  color: var(--color-light-7);
}
.darkMode .table_component td,
.darkMode .table_component th,
.darkMode .bstt2,
.darkMode .bonustable p,
.darkMode .bonustable2 p,
.darkMode .bstt3,
.darkMode .bttitle h5,
.darkMode .bstt4 {
  color: var(--color-text);
}
.bstt2 {
  color: var(--color-light-7);
  margin-top: 10px;
}
.table_component td {
  border-bottom: 1px solid var(--color-light-1);
  background-color: transparent;
  color: var(--color-light-7);
  padding: 5px 20px;
}
.darkMode .table_component td {
  border-bottom: 1px solid var(--color-dark-4);
}

.table_component th {
  border-bottom: 1px solid var(--color-light-1);
  background-color: var(--color-light-1);
  color: var(--color-light-7);
  padding: 15px 20px;
}
.darkMode .table_component th {
  border-bottom: 1px solid #292c34;
  background-color: #292c34;
  color: var(--color-text);
}

/** PROMOTION **/
.darkMode .countdown {
  color: var(--color-text);
}
.countdown {
  font-size: 14px;
  color: var(--color-light-7);
}
.countdown p {
  margin: 0;
  font-size: 12px;
}
.darkMode .countdown span img {
  filter: invert(1);
}
.countdown span img {
  width: 14px;
  height: 14px;
}
.countdown span {
  display: flex;
  gap: 5px;
  font-weight: bold;
  margin-bottom: 3px;
}

#theme-contain-promotion {
  min-height: 70vh;
}
.promo-img-color {
  display: flex;
  position: relative;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 10px 10px 0 0;
}
.promo-img-color img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.promo-img-color h3 {
  font-weight: bold;
  font-size: 18px;
  width: 55%;
  text-transform: uppercase;
  color: var(--color-text);
  padding-left: 15px;
  line-height: 1.2;
  margin: 0;
  z-index: 2;
  position: absolute;
}
.promo-img-color:before {
  content: "";
  display: block;
  height: 100%;
  width: 70%;
  /*background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);*/
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.darkMode .promo-img-color h3 {
  color: var(--color-text);
}

.promo-img-color p {
  color: #666;
  font-size: 14px;
  width: 55%;
  padding-left: 15px;
  margin: 0;
}
.darkMode .promo-img-color p {
  color: var(--color-text-sec);
}
/*====================  ACCESS DENEID ========================*/
#webpage-access-denied #theme-header-link,
.body-container:has(#theme-contain-access-denied) #theme-header-link,
.body-container:has(#theme-contain-access-denied) .t-menu,
.body-container:has(#theme-contain-access-denied) #theme-footer {
  display: none;
}
.body-container:has(#theme-contain-access-denied) {
  display: block;
}

div#theme-contain-access-denied {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

#theme-contain-access-denied .container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
}

.icon-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #ff4d4f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 100;
  color: white;
  box-shadow: 0 0 20px rgba(255, 77, 79, 0.6);
}

.message {
  font-size: 1.8rem;
  margin-top: 20px;
}

.description {
  margin-top: 10px;
  font-size: 16px;
  color: #666;
}

.home-btn {
  margin-top: 30px;
  padding: 12px 24px;
  font-size: 16px;
  background-color: #ff4d4f;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.home-btn:hover {
  background-color: #dd0000;
  color: var(--color-text);
}

/*====================  POPUP ========================*/
.no-scroll {
  overflow: hidden;
  height: 100%;
}

a.yabtn.bts-popup-close::before,
a.yabtn.bts-popup-close::after {
  display: none;
}
a.yabtn.bts-popup-close {
  position: inherit;
  top: inherit;
  right: inherit;
  width: inherit;
  height: inherit;
  border-radius: 0;
  background: var(--color-primary);
}
.popbtn {
  margin: 20px;
}
a.tidakbtn {
  border: 1px solid var(--color-text);
  background: transparent;
  color: var(--color-text);
  padding: 5px 20px;
  text-transform: uppercase;
  margin-right: 10px;
}
a.yabtn {
  border: 1px solid var(--color-primary);
  color: #1b1919;
  padding: 5px 20px;
  text-transform: uppercase;
}
#popmsg {
  max-width: 600px;
}
#popmsg h3 {
  text-align: left;
  margin-bottom: 0;
}
#popmsg p {
  margin-top: 0;
}
.bts-popup {
  z-index: 9999999999;
  position: fixed;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  background-color: rgb(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
}
.bts-popup.is-visible {
  opacity: 1;
  visibility: visible;
}

.bts-popup-container {
  top: 0;
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: auto;
  margin-top: 50vh;
  transform: translateY(-50%);
  border-radius: 10px;
  text-align: center;
  background: var(--color-dark-6) !important;
  padding: 20px;
  color: var(--color-text);
  border: 1px solid var(--color-background);
}
.info-text1 {
  font-size: 24px !important;
  text-align: left;
  margin: 0 0 10px;
}
.info-text2 {
  font-size: 14px !important;
  text-align: justify;
  line-height: normal;
  margin: 0 0 10px;
}

.bts-popup-container .bts-popup-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  background: var(--color-background);
  border-radius: 40px;
}
.bts-popup-container .bts-popup-close::before,
.bts-popup-container .bts-popup-close::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 16px;
  height: 3px;
  background-color: white;
}
.bts-popup-container .bts-popup-close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 8px;
}
.bts-popup-container .bts-popup-close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 6px;
  top: 13px;
}

/*==================== FOOTER ADDITIONAL CSS ========================*/
.darkMode .crbox {
  background: var(--color-dark-3);
  color: var(--color-text);
}
.crbox {
  background: var(--color-light-1);
  color: var(--color-light-7);
  padding: 20px;
  width: 100%;
  max-width: 650px;
  text-align: left;
  border-radius: 15px;
  margin: 0 auto;
}

.footer-licensing a {
  color: #aaa;
  display: block;
  margin-bottom: 6px;
  font-weight: normal;
}
.footer-licensing a:hover {
  color: var(--color-text);
}

/** JACKPOT**/

#webpage-jackpot .stepsWrapper {
  line-height: 1.6;
}

#webpage-jackpot .stepsWrapper h2 {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 25px;
}

#webpage-jackpot .spacer {
  height: 60px;
}

.pop-icon img {
  -moz-animation: bounce 0.5s infinite linear;
  -o-animation: bounce 0.5s infinite linear;
  -webkit-animation: bounce 0.5s infinite linear;
  animation: bounce 0.5s infinite linear;
  display: inline-block;
  position: relative;
  max-width: 100%;
}
@keyframes bounce {
  0% {
    top: 0;
  }

  50% {
    top: -0.2em;
  }

  70% {
    top: -0.3em;
  }

  100% {
    top: 0;
  }
}

.tab-buttons {
  display: flex;
  background: var(--color-light-8);
  padding: 3px;
  border-radius: 45px;
  margin: 0 0 15px;
  max-width: fit-content;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: auto;
  margin: auto;
  border: 1px solid #b6947b;
  gap: 10px;
  margin-bottom: 10px;
}
.jptab-btn.active,
.jptab-btn:hover {
  background: var(--color-primary);
  color: var(--color-background);
}
.jptab-btn {
  transition: 0.2s;
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--color-light-6);
  white-space: nowrap;
  text-align: center;
  border-radius: 45px;
  cursor: pointer;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 35px;
}

.accordion {
  width: 100%;
  max-width: 80%;
  margin: auto;
  padding-bottom: 40px;
}
.accordion-item {
  border: 1px solid #b6947b;
  background: var(--color-text);
}
.accordion-header {
  padding: 15px 60px 15px 20px;
  cursor: pointer;
  font-weight: bold;
  border: 0;
  position: relative;
  background: -webkit-linear-gradient(#ffd038 40%, var(--color-primary) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  text-shadow: none;
}
.accordion-item.active .accordion-content {
  max-height: 1000px;
}
.accordion-header::after {
  content: "+";
  position: absolute;
  right: 20px;
  transition: transform 0.3s;
  background: -webkit-linear-gradient(#ffd038 40%, var(--color-primary) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  width: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  top: 0;
}

.accordion-item.active .accordion-header::after {
  content: "−";
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
  background: var(--color-text);
  border-top: none;
  color: var(--color-light-7);
}

.accordion-content ol.f {
  padding-left: 20px;
}

.accordion-content ol.f li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.prizesTable table {
  background: #f8f3ef;
  max-width: 80%;
  margin: 0 auto 40px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #ccab8c;
  border: 1px solid #b6947b;
}
.jptab-content table {
  background: #f8f3ef;
  max-width: 80%;
  margin: 0 auto 40px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--color-light-7);
  border: 1px solid #b6947b;
}
.prizesTable table tr:first-child th:not(last-child) {
  border-right: none;
}
.jptab-content thead {
  background: linear-gradient(to right, #cbae90 20%, #ddc7af 50%);
}

.jptab-content thead tr th {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 10px;
  font-weight: bold;
  display: table-cell;
  vertical-align: inherit;
}
#theme-contain-jackpot .t-inner-body .jpbanner {
  border-radius: 15px;
}
.jptab-content table tr td:not(last-child) {
  border-right: none;
  border-bottom: none;
}

.jptab-content tr td {
  border: 1px solid #b6947b;
  color: var(--color-light-7);
  text-align: center;
  padding: 20px 3px;
}
.jptab-content table thead tr th:first-child th:not(last-child) {
  border-right: none;
}

.jptab-content {
  display: none;
}
.jptab-content.active {
  display: block;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.jptext {
  width: 100%;
  max-width: 80%;
  margin: auto;
  margin-bottom: 40px;
  color: var(--color-light-7);
}
.jptext ol li {
  margin-bottom: 10px;
}
.prizesTable tr:first-child th {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 10px;
  font-weight: bold;
  display: table-cell;
  vertical-align: inherit;
}

.prizesTable tr td {
  border: 1px solid #b6947b;
  color: var(--color-light-7);
  text-align: center;
  padding: 3px;
}

.prizesTable tr th span {
  font-weight: bold;
  color: var(--color-light-7);
}
.prizesTable table thead {
  background: linear-gradient(to right, #cbae90 20%, #ddc7af 50%);
}

.prizesTable tr:first-child td {
  font-size: 18px;
}

.prizesTable table tr td:not(last-child) {
  border-right: none;
  border-bottom: none;
}
.stepTicketNo > div {
  width: 33.333%;
}
.stepTicketNo {
  width: 100%;
  max-width: 80%;
  margin: auto;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}
.stepBox p {
  text-align: center;
  padding: 0 10px;
  margin: 0;
  color: var(--color-light-7);
  font-weight: bold;
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/img-stepbox-btn2.png) no-repeat;
  background-position: center top -5px;
  background-size: 100% 100%;
  height: 100px;
  width: 100%;
  max-width: 280px;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 16px;
  border: none;
  box-shadow: none;
  margin: auto;
}
.stepBox img.stepImages {
  display: block;
  width: 60%;
  margin: auto;
  webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation: hanging-swing 2s infinite;
  animation: hanging-swing 2s infinite;
}
@keyframes hanging-swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.buttonBanner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 60%;
  margin: 0 auto;
  margin-top: 20px;
  position: relative;
}
a#HyperLink1 {
  font-weight: bold;
  position: relative;
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/jpbtn01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 96px;
  border-radius: 5px;
  margin: 0;
  width: 100%;
  max-width: 316px;
  color: var(--color-text);
  display: flex;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  padding: 10px 20px;
  transition: all 0.3s;
}
a#HyperLink1:hover,
a#HyperLink2:hover {
  position: relative;
  top: -3px;
  filter: contrast(0.9) drop-shadow(0px 13px 8px rgba(0, 0, 0, 0.2));
  transition: all 0.3s;
}
a#HyperLink2 {
  font-weight: bold;
  position: relative;
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/jpbtn02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 96px;
  border-radius: 5px;
  margin: 0;
  width: 100%;
  max-width: 316px;
  color: var(--color-text);
  display: flex;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  padding: 10px 20px;
  transition: all 0.3s;
}

#jackpotMY {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  margin-top: -10%;
  position: relative;
}

.jackpot-container {
  position: relative;
  width: 100%;
}
jackpot-uwtext {
  position: absolute;
  width: 100%;
  text-align: center;
  color: var(--color-text);
  font-weight: bold;
  font-size: clamp(16px, 2.5vw, 28px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}
.jackpot-uwbg {
  width: 100%;
  height: auto;
  display: block;
}

.jackpot-uwtext {
  color: var(--color-text);
  font-weight: bold;
  letter-spacing: 2px;
  z-index: 1;
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
  text-align: center;
  font-size: clamp(14px, 3.5vw, 60px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
#theme-contain-jackpot {
  background: url();
  background-size: contain;
  background-position: top center;
  background-repeat: repeat-y;
}
.jackpot-top {
  top: 15%;
}

.jackpot-bottom {
  top: 60%;
}
.containerbox ol li {
  margin-bottom: 10px;
}
.containerbox ol {
  padding-left: 20px;
  margin-bottom: 0;
}
.containerbox {
  width: 80%;
  text-align: left;
  display: block;
  background: var(--color-text);
  padding: 20px;
  color: var(--color-light-7);
  border-radius: 0;
  margin: 40px auto;
  --border-size: 3px;
  --border-angle: 0turn;
  background-image: conic-gradient(
      from var(--border-angle),
      var(--color-text),
      var(--color-text) 50%,
      var(--color-text)
    ),
    conic-gradient(from var(--border-angle), transparent 20%, #dcc4ac, #c4a584);
  background-size: calc(100% - (var(--border-size) * 2))
      calc(100% - (var(--border-size) * 2)),
    cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-animation: bg-spin 3s linear infinite;
  animation: bg-spin 3s linear infinite;
}
@keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}
@property --border-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}

table#apimeminfo a {
  color: red;
}
table#cart-member-info {
  text-align: left;
}
#prod-cart .tbllist table.tbl {
  text-align: left;
}
#cart-shipping table.tbl tr {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: left;
  gap: 10px;
  padding-bottom: 5px;
  padding-left: 5px;
}
.alert-danger caption {
  color: var(--color-background);
}
#cart-shipping ul,
#cart-payment ul {
  padding: 0;
  list-style: none;
  text-align: left;
  padding-left: 5px;
}
#prod-cart div#additional {
  padding: 10px;
}
#prod-cart textarea#message {
  height: 100px;
  background: #f1f2f1;
}

#prod-cart div#submit button:last-child {
  position: relative;
  min-width: 80px;
  background: var(--color-primary);
  height: 35px;
  border-radius: 5px;
  margin: 0 auto 0 8px;
  color: var(--color-background);
  font-size: 14px;
  padding: 2px 10px;
  box-shadow: #e0c7ae 0px -2px inset;
  border: 0;
}
table#cart-member-info tr td {
  padding: 5px;
  border: 1px solid var(--color-light-1);
}
#prod-cart .tbllist form table caption,
#prod-cart table#cart-member-info caption {
  text-align: center;
  color: var(--color-text);
  background: var(--color-primary);
}
#prod-cart #submit input[type="submit"] {
  position: relative;
  min-width: 80px;
  background: var(--color-primary);
  height: 35px;
  border-radius: 5px;
  margin: 0 auto 0 8px;
  color: var(--color-background);
  font-size: 14px;
  padding: 2px 10px;
  box-shadow: #e0c7ae 0px -2px inset;
  border: 0;
}
#prod-cart #btn-submit button {
  position: relative;
  min-width: 80px;
  background: var(--color-primary);
  height: 35px;
  border-radius: 5px;
  margin: 0;
  color: var(--color-background);
  font-size: 14px;
  padding: 2px 10px;
  box-shadow: #e0c7ae 0px -2px inset;
  margin-top: 20px;
  border: 0;
}
button.prev_step {
  position: relative;
  min-width: 80px;
  background: #e1e1e1;
  height: 35px;
  border-radius: 5px;
  margin: 0;
  color: var(--color-background);
  font-size: 14px;
  padding: 2px 10px;
  border: 0;
}
#prod-cart #submit input[type="submit"]:hover,
#prod-cart #btn-submit button:hover,
#prod-cart button.prev_step:hover,
#prod-cart div#submit button:last-child:hover {
  filter: contrast(0.9);
}
#prod-cart input[type="text"],
#prod-cart select#form_Country,
#prod-cart input#form_contact {
  background: #f1f2f1;
}
#prod-cart input#form_Addr1 {
  margin-bottom: 5px;
}
#prod-cart td#photo img {
  max-width: 50px;
  max-height: 50px;
}
#prod-cart .tbllist table.tbl td {
  padding: 5px;
}

/** DARK LIGHT Mode **/
.darkMode button.prev_step {
  background: var(--color-dark-3);
  color: var(--color-text);
}

.darkMode table#cart-member-info tr td {
  border: 1px solid #525252;
}
.darkMode #prod-cart .tbllist form table tr {
  border-bottom: 1px solid #525252;
  color: var(--color-text);
}

.darkMode #prod-cart .tbllist form table {
  color: var(--color-text);
}

.darkMode #theme-contain-prod {
  color: var(--color-text);
}

.darkMode #cms5-news-view div#datepublish {
  color: var(--color-text);
}
.darkMode #cms5-news-view h1,
.darkMode #message h2,
.darkMode #message h3,
.darkMode #message h4 {
  color: var(--color-text) !important;
}

.darkMode #cms5-news-view div#message p,
.darkMode #cms5-news-view div#message ul {
  color: var(--color-text-sec) !important;
}
.darkMode #cms5-news-view {
  background: var(--color-surface);
}
.darkMode #cms5-news-list ul li {
  background: var(--color-surface);
}
.darkMode #cms5-news-list ul li div#title a,
.darkMode #cms5-news-list ul li div#title a:visited {
  color: var(--color-text);
}

.darkMode #cms5-news-list ul li div#message {
  color: var(--color-text-sec);
}
.darkMode .langtwocol {
  border-bottom: 1px solid var(--color-border);
}
.darkMode .langpopup-option:first-child {
  border-right: 1px solid var(--color-border);
}
.darkMode .langpopup-option .label {
  color: #aaa;
}
.darkMode .langpopup-option:hover span,
.darkMode .langflag {
  color: var(--color-text);
}
.darkMode .langtwocol:last-child {
  border: 0;
}
.darkMode .seo-container.termscwrap p,
.darkMode .seo-container.termscwrap ul {
  color: var(--color-text);
}
.darkMode .termscwrap {
  background: var(--color-surface);
}
.darkMode .footer-copyright a:hover {
  color: var(--color-text);
}
.darkMode .uwwpromo-content h2,
.darkMode .promotion-modal-content table {
  color: var(--color-text);
}
.darkMode .fancybox-inner p {
  color: var(--color-text-sec);
}
.darkMode .jptext {
  color: var(--color-text);
}
.darkMode .accordion-content {
  background: var(--color-surface);
  color: var(--color-text);
}
.darkMode .panel-body .small {
  color: var(--color-text);
}
.darkMode .containerbox {
  background-image: conic-gradient(
      from var(--border-angle),
      var(--color-surface),
      var(--color-surface) 50%,
      var(--color-surface)
    ),
    conic-gradient(from var(--border-angle), transparent 20%, #dcc4ac, #c4a584);
  color: var(--color-text);
}

.darkMode a.bmenu-link {
  color: var(--color-text);
}
.darkMode .accordion-item {
  background: var(--color-surface);
}
.darkMode #theme-contain-jackpot {
  background: url();
  background-size: contain;
  background-position: top center;
  background-repeat: repeat-y;
}
.darkMode .backmenu h3 {
  color: var(--color-text);
}
.darkMode .back-link {
  background: var(--color-surface);
}
.dark-mode-icon {
  display: none;
}
.darkMode .light-mode-icon {
  display: none;
}
.darkMode .dark-mode-icon {
  display: block;
}
.darkMode .header-wrap.active .opncls {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu-off.png);
  background-size: contain;
}
.darkMode .opncls {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu-on.png);
  background-size: contain;
}
.darkMode span[aria-label="Next"],
.darkMode span[aria-label="Previous"] {
  filter: brightness(10) contrast(10);
}
.darkMode .mobile-btm-sec {
  background: var(--color-background);
}
.darkMode .modal-content.mobile-side {
  background: #232626;
  box-shadow: none !important;
}
.darkMode button.close-menu {
  color: var(--color-text-sec);
}
.darkMode .mobile-menu-top {
  background: var(--color-surface);
}
.darkMode #cms5-prod-view #back-btn a {
  color: var(--color-text);
  background-color: var(--color-surface);
}
.darkMode #theme-contain-prod #customform {
  background: var(--color-dark-3);
}
.darkMode legend {
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.darkMode label,
.darkMode #clear-btn,
.darkMode #cms5-prod-list #title a,
.darkMode #prod-cart #ref a,
.darkMode #prod-cart #name a,
.darkMode #icon-delete a,
.darkMode #cartlist #price,
.darkMode #cartlist #total,
.darkMode #cartlist #weight,
.darkMode #cms5-prod-view table,
.darkMode table#particular td#title {
  color: var(--color-text);
}
.darkMode div#search-bar,
.darkMode #prod-cart,
.darkMode #cms5-prod-view {
  background: var(--color-surface);
}
.darkMode #cms5-prod-list ul {
  background: var(--color-surface);
}
.darkMode #cms5-prodcatlist ul li a:hover {
  color: var(--color-background);
}
.darkMode #cms5-prodcatlist ul li a {
  color: var(--color-text-sec);
}
.darkMode #cms5-prodcatlist ul {
  background: var(--color-surface);
}
.darkMode .vipTable .vipRow {
  border-bottom: 1px solid #383f56;
  color: var(--color-text);
}
.darkMode .vipTable .vipCell.vipCellH2 {
  color: var(--color-text);
}
.darkMode .sponBar.vip p {
  color: var(--color-text);
}
.darkMode .panel-body .col-sm-3 a,
.darkMode #TopThree .popwin {
  color: var(--color-text-sec);
}
.darkMode .panel {
  background: var(--color-dark-3);
}
.darkMode .vipBlockBody {
  background: var(--color-surface);
  color: var(--color-text);
}
.darkMode .lotteryuww-sec,
.darkMode .liveresult-template,
.darkMode .vipContent {
  background: var(--color-surface);
}
.darkMode .tab-buttons {
  background: var(--color-surface);
}
.darkMode .tab-buttons .jptab-btn {
  color: var(--color-text-sec);
}
.darkMode .jptab-btn.active,
.darkMode .jptab-btn:hover {
  color: var(--color-background);
}

.darkMode ul#promo-tab li:not(.inactive),
.darkMode ul#promo-tab li:hover {
  color: var(--color-text);
  background: transparent;
  border: 3px solid var(--color-primary);
  transition: 0.2s;
}
.darkMode ul#promo-tab li {
  color: var(--color-text-sec);
  background: var(--color-dark-5);
  border: 3px solid var(--color-dark-5);
}
.darkMode ul#promo-tab {
}
.darkMode .promo-txt h3 {
  color: var(--color-text);
}
.darkMode .promo-txt {
  background: var(--color-surface);
}
.darkMode .vipRules li {
  color: var(--color-text);
}
.darkMode .uwwpromo-content ul li,
.darkMode .uwwpromo-content {
  color: var(--color-text-sec);
}
.darkMode #faq_fbinner {
  background: var(--color-surface);
  color: var(--color-text);
}
.darkMode .uwwpromo-content h3 {
  color: var(--color-text);
}
.darkMode a.uwwtab.active {
  background: var(--color-surface);
  color: var(--color-text);
}
.darkMode input#customformv1_submit,
.darkMode input#customform_submit,
.darkMode input#registerform_btnSubmit {
  box-shadow: rgb(239 188 21) 0px 0px 12px, var(--color-primary) 0px -2px inset;
}
.darkMode input::placeholder {
  color: var(--color-text-sec);
}
.darkMode input[type="text"],
.darkMode input[type="email"],
.darkMode input[type="tel"],
.darkMode input[type="url"],
.darkMode input[type="password"],
.darkMode input[type="number"],
.darkMode textarea,
.darkMode select {
  background: #2c3247;
  color: var(--color-text);
  border: 1px solid var(--color-surface);
}
.darkMode .uwlog-left h2,
.darkMode .uwlog-left p,
.darkMode .loginpopup-header,
.darkMode .reglink,
.darkMode .registerpopup-header {
  color: var(--color-text);
}
.darkMode .loginpopup,
.darkMode .registerpopup {
  background: #272a2a;
}
.darkMode .uwlog-right {
  background: var(--color-dark-6);
}
.darkMode button.back-to-top {
  background: var(--color-dark-3);
  color: var(--color-text);
}
.darkMode .uwwfooter .footer-socials i {
  background: var(--color-dark-3);
  color: var(--color-text-sec);
}
.darkMode .uwwseobtn p {
  color: var(--color-text) !important;
}
.darkMode .uwwseobtn {
  background-color: var(--color-dark-3);
}
.darkMode .seo-container p,
.darkMode .seo-container ul,
.darkMode .uwwfooter .footer-column ul li a {
  color: var(--color-text-sec);
}
.darkMode .uwwfooter .footer-logos {
  border-bottom: 1px solid var(--color-border);
}
.darkMode section.seo-footer-sec,
.darkMode footer {
  background: var(--color-dark-8);
}
.darkMode .bonus-banner {
  background: var(--color-surface);
}
.darkMode .allbtns,
.darkMode .owl-theme .owl-nav button.owl-prev,
.darkMode .owl-theme .owl-nav button.owl-next {
  background: var(--color-surface);
}
.darkMode .allbtns p,
.darkMode .bonus-text,
.darkMode .seo-wrapper h3,
.darkMode .uwwfooter .footer-column h4 {
  color: var(--color-text);
}
.darkMode .seo-wrapper {
  border-bottom: 1px solid var(--color-border);
}
.darkMode .right-column .uwcard:nth-child(4) {
  background: linear-gradient(
    to right,
    var(--color-dark-3),
    #38496f
  ) !important;
}
.darkMode .right-column .uwcard:nth-child(3) {
  background: linear-gradient(
    to right,
    var(--color-dark-3),
    #3c5521
  ) !important;
}
.darkMode .right-column .uwcard:nth-child(2) {
  background: linear-gradient(
    to right,
    var(--color-dark-3),
    #553f2b
  ) !important;
}
.darkMode .right-column .uwcard:nth-child(1) {
  background: linear-gradient(
    to right,
    var(--color-dark-3),
    #5d5129
  ) !important;
}
.darkMode .left-column .uwcard:nth-child(2) {
  background: linear-gradient(
    to right,
    var(--color-dark-3),
    #2c5040
  ) !important;
}
.darkMode .left-column .uwcard:nth-child(1) {
  background: linear-gradient(
    to right,
    var(--color-dark-3),
    #582e59
  ) !important;
}
.darkMode .slider-container {
  background: var(--color-surface);
}
.darkMode .newtab,
.darkMode .uwcard-description {
  color: var(--color-text-sec);
}

.darkMode .langpopup-header {
  border-bottom: 1px solid var(--color-border);
}

.darkMode .langpopup-close {
  background: #464f50;
  color: var(--color-text);
}
.darkMode .langpopup-header,
.darkMode .indicator,
.darkMode .newtab.active,
.darkMode .uwcard-header,
.darkMode .fgtitle {
  color: var(--color-text);
}
.darkMode .langpopup {
  background: #232626;
}
.darkMode .theme-option.active i {
  color: var(--color-text);
}
.darkMode .theme-option.active {
  background-color: var(--color-dark-7);
  color: var(--color-text);
  border: 2px solid var(--color-dark-7);
}
.darkMode .theme-toggle {
  background-color: var(--color-dark-3);
}
.darkMode .currency {
  color: var(--color-text);
  background: linear-gradient(90deg, rgb(149 133 116) 0%, rgb(60 65 66) 100%);
}
.darkMode ul.nav.sidemenu-nav li a.m-nav__link.active,
.darkMode ul.nav.sidemenu-nav li a.m-nav__link:hover {
  background: var(--color-dark-4);
  transition: 0.3s;
}
.darkMode ul.nav.sidemenu-nav li a.m-nav__link {
  background: var(--color-dark-3);
  color: var(--color-text);
}
.darkMode .side-menu {
  background: var(--color-surface);
}
.darkMode .uwwlangbtn {
  border: 2px solid var(--color-dark-3);
  background: var(--color-dark-3);
}
.darkMode button.register-btn {
  box-shadow: rgb(239 188 21) 0px 0px 12px, var(--color-primary) 0px -2px inset;
}
.darkMode button.login-btn {
  border: 2px solid var(--color-border);
  color: var(--color-text);
}
.darkMode button.sidemenu-btn {
  background: var(--color-surface);
}
.darkMode .header-wrap {
  background: var(--color-surface);
}
.darkMode {
  --body-background-color: var(--color-background);
  --body-text-color: var(--color-text);
}

.theme-toggle {
  display: inline-flex !important;
  background-color: var(--color-light-3);
  overflow: hidden;
  height: 47px;
  border-radius: 10px;
  width: 100%;
}
.changeMode {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 5px;
  padding: 0 15px;
}
.theme-option {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 50%;
  background: transparent;
  border: none;
  outline: none;
  transition: background 0.3s, color 0.3s;
  color: var(--color-dark-10);
  padding: 10px;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

.theme-option.active {
  background-color: var(--color-text);
  color: var(--color-light-7);
  border: 2px solid var(--color-light-3);
  border-radius: 10px;
}
.theme-option.active i {
  color: var(--color-light-7);
}
.theme-option i {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  color: var(--color-dark-10);
}

.dp-wrapper {
  display: flex;
  margin: 10vh 0;
  justify-content: center;
  align-items: center;
}

#chat-widget-container {
  bottom: 90px !important;
}
.side-menu {
  position: fixed;
  width: 290px;
  padding: 0 15px;
  transition: 0.3s;
  background: var(--color-light-2);
  height: calc(100% - 65px);
  margin-top: 65px;
}
.floating-chat {
  position: fixed;
  right: 5px;
  bottom: 100px;
  z-index: 999;
  animation: 1.8s float ease-in-out infinite;
}
.floating-chat:hover a img {
  filter: brightness(1.1) drop-shadow(0 0 5px rgb(255, 255, 255, 0.6));
  transform: scale(0.97);
}
button.back-to-top i.fas.fa-angle-up.fa-chevron-right {
  transform: rotate(-90deg);
}
button.back-to-top {
  position: fixed;
  bottom: 5%;
  right: 20px;
  background: var(--color-light-5);
  border: none;
  color: var(--color-light-7);
  height: 45px;
  width: 45px;
  border-radius: 10px;
  font-size: 25px;
  padding: 5px;
  z-index: 100;
}
button.back-to-top:hover {
  filter: contrast(0.9);
  transform: scale(0.9);
}

/** Side Menu **/
.opncls {
  display: block;
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu-on.png);
  width: 30px;
  height: 30px;
  background-size: contain;
}
.sm-btn-wrap {
  position: relative;
  height: 65px;
  width: 65px;
  margin-left: 0;
  display: flex;
  align-items: center;
}
button.sidemenu-btn {
  position: relative;
  z-index: 99;
  background: var(--color-dark-11);
  width: 100%;
  height: 47px;
  font-size: 12px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
button.sidemenu-btn:hover {
  background: #ebebeb;
}
.member-info-wrapper {
  background: var(--wrapper-bg-color);
  border-radius: 15px;
  box-shadow: 0 0 10px rgb(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: 97px auto;
  grid-gap: 12px;
  align-items: center;
  padding: 15px 10px;
  margin-bottom: 15px;
}
.mb-vip-img {
  max-width: 97px;
  margin: 0 auto;
  transition: 0.3s;
}
.mbinfo-wrap {
  position: relative;
  font-size: 15px;
}
.mb-name {
  color: var(--color-background);
  margin-bottom: 10px;
  font-weight: 500;
}
.mb-lvl {
  font-size: 13px;
}
.mbvip-info a {
  color: var(--color-background);
}
.mb-stvip {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-background);
}
.mb-wallet {
  margin-top: 10px;
}
button.org-btn {
  background: var(--color-primary);
  color: var(--tertiary-text-color);
  min-width: 80px;
  border-radius: 5px;
  height: 24px;
}
.sidemenu-wrapper {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.currency img {
  max-height: 27px;
  margin-right: 15px;
}
.currency {
  display: flex;
  align-items: center;
  color: var(--color-background);
  border-radius: 10px;
  padding: 10px;
  font-size: 15px;
  font-weight: bold;
  position: relative;
  background: linear-gradient(
    90deg,
    rgb(255 245 235) 0%,
    rgb(249 249 249) 100%
  );
}

.sidemenu-wrapper::-webkit-scrollbar {
  width: 6px;
}
.sidemenu-wrapper::-webkit-scrollbar-track {
  background: var(--wrapper-bg-color);
  border: 1px solid var(--wrapper-bg-color);
  border-radius: 30px;
}
.sidemenu-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 30px;
}
.sidemenu-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}
ul.nav.sidemenu-nav {
  flex-direction: column;
  gap: 5px;
  padding-top: 20px;
  padding-bottom: 20px;
}
ul.nav.sidemenu-nav li {
  position: relative;
  width: 100%;
}
ul.nav.sidemenu-nav li a.m-nav__link {
  display: flex;
  align-items: center;
  color: var(--color-light-7);
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  background: var(--color-light-3);
}
ul.nav.sidemenu-nav li a.m-nav__link.active {
  background: var(--color-light-1);
}
ul.nav.sidemenu-nav li a.m-nav__link img,
.smenu-wrap a img {
  max-height: 27px;
  margin-right: 15px;
}
ul.nav.sidemenu-nav li a.m-nav__link.collapsed {
  background: none;
}
ul.nav.sidemenu-nav li a.m-nav__link:hover {
  background: var(--color-light-1);
}
a.m-nav__link.droparrow::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  transform: rotate(90deg);
  transform-origin: center;
  font-size: 11px;
  color: #ccc;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  transition: linear 0.3s;
}
a.m-nav__link.droparrow.collapsed::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  transform: rotate(0);
  transition: linear 0.3s;
}
.smenu-wrap {
  position: relative;
  padding-left: 10px;
}
.smenu-wrap a {
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 25px;
  font-size: 14px;
  font-weight: 500;
  color: #b0bbcc;
  border-radius: 40px;
  transition: 0.3s;
}
.smenu-wrap a:hover {
  background: var(--color-accent);
  transition: 0.3s;
  transform: translateX(-10px);
}
.nav > li > a:focus,
.nav > li > a:hover {
  background: var(--color-accent);
  color: var(--color-background);
}
.language-wrap {
  position: relative;
  padding: 10px 0;
}
.language-wrap.open button.lang-btn.dropup::after {
  transform: rotate(180deg);
}
button.lang-btn.dropup {
  position: relative;
  background: #1c1c32;
  border: 1px solid #2a3246;
  border-radius: 45px;
  width: 100%;
  padding: 3px 20px;
  height: 45px;
  text-align: left;
  color: var(--tertiary-text-color);
}
button.lang-btn.dropup img {
  max-height: 30px;
  margin-right: 15px;
  transition: 0.3s;
}
button.lang-btn.dropup::after {
  content: "\f077";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 10px;
  color: #cccccc;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  transition: linear 0.3s;
}
.dropdown-menu.language {
  background: #1c1c32;
  padding: 0;
  margin: 5px 0;
  border: 0;
  border-radius: 10px;
  min-width: 100%;
  overflow: hidden;
  font-size: 15px;
}
a.lang-link {
  display: block;
  width: 100%;
  color: var(--tertiary-text-color);
  padding: 8px 20px;
}
a.lang-link img {
  max-height: 30px;
  margin-right: 15px;
}
a.lang-link:hover {
  background: var(--color-accent);
  color: var(--color-background);
}

.body-container.active {
  grid-template-columns: 65px auto;
  transition: 0.3s;
}
.body-container.active .side-menu {
  width: 80px;
  padding: 0;
  transition: 0.3s;
}
.body-container.active .member-info-wrapper {
  border-radius: 10px;
  display: grid;
  grid-template-columns: auto;
  margin: 10px;
  padding: 5px;
}
.body-container.active .mb-vip-img {
  transition: 0.3s;
  max-width: 30px;
}
.body-container.active .mbinfo-wrap {
  display: none;
}
.body-container.active .smenu-text {
  display: none;
}
.body-container.active .sidemenu-wrapper {
  height: 81vh;
}
.body-container.active .sidemenu-wrapper.logined {
  height: 100%;
}

.body-container.active ul.nav.sidemenu-nav li:first-child {
  display: none !important;
}
.body-container.active ul.nav.sidemenu-nav li {
  margin: 1px 0px;
}
.body-container.active ul.nav.sidemenu-nav {
  padding-right: 0;
  margin: 0 20px;
}
.body-container.active ul.nav.sidemenu-nav li a.m-nav__link img,
.smenu-wrap a img {
  margin: 0 10px;
}
.body-container.active ul.nav.sidemenu-nav li a.m-nav__link {
  border-radius: 8px;
  padding: 5px;
  text-align: center;
  justify-content: center;
}
.body-container.active .smenu-wrap {
  padding-left: 0;
}
.body-container.active .smenu-wrap a {
  padding: 5px;
  border-radius: 10px;
  justify-content: center;
}
.body-container.active .smenu-wrap a:hover {
  transform: translateX(0);
}
.body-container.active .language-wrap {
  margin: 0 5px;
}
.body-container.active button.lang-btn.dropup {
  width: 50px;
  padding: 3px 6px;
  height: 30px;
}
.body-container.active button.lang-btn.dropup img {
  max-height: 20px;
  margin-right: 0;
  transition: 0.3s;
}
.body-container.active button.lang-btn.dropup::after {
  font-size: 8px;
  right: 8px;
}
.body-container.active a.lang-link {
  padding: 5px 6px;
  text-align: center;
}
.body-container.active a.lang-link img {
  max-height: 25px;
  margin-right: 0;
}
.body-container.active .dropdown-menu.language {
  min-width: auto;
  font-size: 15px;
  max-width: 50px;
  width: 100%;
}
.gamepage-container {
  margin-top: 15px;
}
.gamepage-stage {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}
.gamepage-stage .tumbox img {
  width: 100%;
}
#theme-contain-casino .gamepage-stage > div:nth-child(1),
#theme-contain-slots .gamepage-stage > div:nth-child(1),
#theme-contain-sports .gamepage-stage > div:nth-child(1) {
  /*grid-column: span 2;*/
}
#theme-contain-casino .gamepage-stage > div:nth-child(1) img,
#theme-contain-slots .gamepage-stage > div:nth-child(1) img,
#theme-contain-sports .gamepage-stage > div:nth-child(1) img {
  margin-top: 0;
}

.logbanner {
  display: grid;
  grid-template-columns: 30vw 30vw;
}
.uwlog-right {
  padding: 0 30px 30px 30px;
  background: var(--color-light-1);
  height: 77vh;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.uwlog-left h2 {
  color: var(--color-background);
  font-weight: bold;
  text-align: center;
  margin: 0 0 10px 0;
  padding: 0 10px;
}
.uwlog-left p {
  color: var(--color-background);
  margin: auto;
  text-align: center;
  padding: 0 10px;
}

/*==================   float ========================*/
.toggleMain {
  position: fixed;
  right: -246px;
  top: 161px;
  z-index: 99;
  transition: 0.3s;
  height: 180px;
}

.toggleMain.show {
  right: 0;
}
.toggleMain.show .toggleLeftInfo {
  box-shadow: 0 2px 6px 0 rgb(0 0 0 / 50%);
}
.toggleLeftInfo {
  float: left;
  background-color: var(--color-background);
  border-bottom-left-radius: 10px;
  border-bottom: 1px solid #2c2c2c;
  border-right: 1px solid #2c2c2c;
  border-top: 1px solid #2c2c2c;
}

.toggleLeftInfo td {
  text-align: center;
  padding: 2px;
}

.toggleLeft {
  cursor: pointer;
  float: left;
  height: 170px;
  width: 42px;
  background: #deae37;
  display: flex;
  align-items: center;
  flex-direction: column;
  transition: 0.3s;
  border-top-right-radius: 0.05rem;
  border-bottom-right-radius: 0.05rem;
  background-image: url(/data/1976/uploads/contact-us-bar.png);
}

.toggleRight {
  float: left;
  height: 170px;
  width: 42px;
  background: #deae37;
  display: flex;
  align-items: center;
  flex-direction: column;
  transition: 0.3s;
  border-top-right-radius: 0.05rem;
  border-bottom-right-radius: 0.05rem;
  background-image: url(/data/1976/uploads/contact-us-bar.png);
}

.hotgameIconGif {
  margin-top: 140px;
  position: absolute;
}

.downloadTitle {
  color: var(--color-background);
  margin-left: 0px;
  margin-top: 30px;
  height: 100px;
  font-weight: bold;
}

.downloadimg {
  border: 1px solid rgba(64, 64, 64, 0.5);
  background-color: rgba(51, 51, 51, 0.5);
  margin: 2px;
}

.downloadimg img {
  width: 112px;
  padding: 3px;
}

/*==================   Download page ========================*/
.dp-top {
  position: relative;
  z-index: 2;
}

.dp-top:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  pointer-events: none;
}

.dp-top:after {
  content: "";
  border-top: 2px solid #b5862d;
  position: absolute;
  width: 125vw;
  height: 75px;
  bottom: -30%;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50% 50% 0% 0%/100% 100% 0% 0%;
  z-index: 1;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
}

#theme-contain-download-link {
  padding-top: 70px;
  padding-bottom: 70px;
}

.dp-logo {
  padding: 25px 0 55px;
  position: relative;
  z-index: 3;
  text-align: center;
}

.dp-logo img {
  height: 60px;
  margin: auto;
}

.dp-inner {
  position: relative;
  z-index: 3;
  padding: 0 10px;
  display: flex;
  gap: 10px;
}

.btn-dp {
  max-width: 550px;
  width: 100%;
  margin: 10px auto;
  background-color: var(--color-background);
  border-radius: 10px;
  text-align: center;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: var(--color-text);
  border: 1px solid #b5862d;
  transition: transform 0.2s ease;
  transform: scale(1);
}

.btn-dp:hover {
  transform: scale(0.95);
}

.btn-dp img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.dp-r {
  max-width: 650px;
  width: 90%;
  display: block;
  border-top: 2px solid #b5862d;
  margin: 25px auto 0;
}

.btn-dp-r {
  display: table;
  margin: auto;
  padding: 15px 25px;
  color: var(--color-background);
  background: linear-gradient(#ceaf8e, #e7d1bb, #ceaf8e);
  border-radius: 60px;
  margin-top: 20px;
}

.btn-dp-r:hover {
  text-decoration: none;
  filter: contrast(0.9);
  color: var(--color-background);
}

/** Language popup **/

.uwwlangbtn img {
  height: 20px;
}
.uwwlangbtn:hover {
  filter: contrast(0.9);
}
.uwwlangbtn {
  background: #f0f2f2;
  cursor: pointer;
  position: relative;
  height: 35px;
  border-radius: 5px;
  border: 2px solid var(--color-border-light);
  margin: 0 auto 0 8px;
  padding: 2px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.langpopup.langshow,
.langpopup-overlay.langshow {
  display: flex;
}

.langpopup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10000;
}

.langpopup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: var(--color-text);
  border-radius: 14px;
  width: 90%;
  max-width: 370px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  z-index: 10001;
}
.langpopup-option:first-child {
  border-right: 1px solid #eee;
}
.langtwocol:last-child {
  border: 0;
}
.langtwocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 10px;
  border-bottom: 1px solid #f2f2f2;
}
.langtwocol.threecol {
  grid-template-columns: 1fr 1fr 1fr;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.langtwocol.threecol .langpopup-option:last-child {
  border-left: 1px solid var(--color-border);
}
.langpopup,
.langpopup-overlay {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.langpopup.fast-close,
.langpopup-overlay.fast-close {
  transition: transform 0.1s ease, opacity 0.1s ease;
}

.langpopup.langactive {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.langpopup-overlay.active {
  opacity: 1;
}

.langpopup-header {
  padding: 15px;
  border-bottom: 1px solid #eee;
  text-align: center;
  font-weight: bold;
  color: var(--color-background);
  position: relative;
}
.langpopup-close:hover {
  filter: contrast(0.9);
}

.langpopup-close {
  color: var(--color-background);
  cursor: pointer;
  width: 30px;
  height: 30px;
  background: #f2f2f2;
  border-radius: 5px;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  top: 10px;
  right: 10px;
  position: absolute;
  z-index: 1;
}

.langpopup-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  gap: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.langtwocol:last-child .langpopup-option {
  border-radius: 0;
  border-bottom: 0;
}
.langtwocol:last-child .langpopup-option:hover {
  border-radius: 0;
}

.langpopup-option:hover span {
  color: var(--color-background);
}
.langflag img {
  width: 20px;
  height: 20px;
}
.langflag {
  color: var(--color-background);
  margin: 0;
  padding: 10px 15px 0 15px;
  font-weight: bold;
  display: flex;
  gap: 7px;
  align-items: center;
}
.langpopup-option .label {
  font-size: 16px;
  color: var(--color-light-10);
  font-weight: normal;
  padding: 0;
}

.radio-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ccc;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.langpopup-option .label.active {
  color: var(--color-background);
}
.darkMode .langpopup-option .label.active {
  color: var(--color-text);
}

.radio-indicator.active {
  border-color: var(--color-primary);
}

.radio-indicator.active::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

/** Login popup **/
.loginpopup .t-inner-body {
  position: relative;
  padding-top: 0;
}
.loginpopup .max-container {
  position: relative;
  max-width: auto;
  margin: 0 auto;
  padding: 0;
}
#webpage-login #customform {
  width: 100%;
  max-width: 500px;
  margin: auto;
}
#webpage-login .reglink {
  width: 100%;
  max-width: 500px;
  margin: auto;
  margin-bottom: 50px;
}
.loginpopup .registerpopup-header {
  display: none;
}

.reglogtitle {
  margin: auto;
  margin-top: 10%;
}
.uwlog-left {
  display: flex;
  flex-direction: column;
}
.reglogimg {
  position: relative;
}
.regimg {
  width: 100%;
  object-fit: cover;
  height: 77vh;
}
.reglogo {
  position: absolute;
  width: 100%;
  max-width: 100px;
  top: 10px;
  left: 10px;
}
.reglink {
  color: var(--color-background);
  margin: 30px 0 0 0;
  font-size: 16px;
}
.reglink a {
  color: var(--color-primary);
}
form#registerform dt {
  display: none;
}
input#customformv1_submit:hover,
input.btnCheckUser:hover,
input#registerform_btnSubmit:hover {
  filter: contrast(0.9);
}
input#customformv1_submit {
  position: relative;
  min-width: 100%;
  background: var(--color-primary);
  height: 40px;
  border-radius: 8px;
  margin: 0;
  color: var(--color-background);
  padding: 2px 10px;
  box-shadow: #e0c7ae 0px -2px inset;
  -webkit-appearance: none;
  font-weight: bold;
  border: 0;
}
.loginpopup.langshow,
.loginpopup-overlay.langshow {
  display: flex;
}

.loginpopup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10000;
}

.loginpopup {
  position: fixed;
  height: 77vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: var(--color-text);
  border-radius: 14px;
  width: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  z-index: 10001;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.loginpopup,
.loginpopup-overlay {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.loginpopup.fast-close,
.loginpopup-overlay.fast-close {
  transition: transform 0.1s ease, opacity 0.1s ease;
}

.loginpopup.langactive {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.loginpopup-overlay.active {
  opacity: 1;
}

.loginpopup-header {
  padding-bottom: 15px;
  text-align: left;
  font-weight: bold;
  color: var(--color-background);
  position: relative;
}
.loginpopup-close:hover {
  filter: contrast(0.9);
}

.loginpopup-close {
  color: var(--color-light-10);
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  margin-left: auto;
  display: flex;
  justify-content: right;
  align-items: center;
  font-weight: 500;
  font-size: 30px;
  top: 15px;
  position: absolute;
  right: 30px;
  z-index: 1;
}

#theme-contain-registration .container {
  padding: 0 5% 5%;
  width: 100%;
}

/** Registration popup **/

.registerpopup.langshow,
.registerpopup-overlay.langshow {
  display: flex;
}

.registerpopup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10000;
}

.registerpopup {
  position: fixed;
  height: 77vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: var(--color-text);
  border-radius: 14px;
  width: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  z-index: 10001;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.registerpopup,
.registerpopup-overlay {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.registerpopup.fast-close,
.registerpopup-overlay.fast-close {
  transition: transform 0.1s ease, opacity 0.1s ease;
}

.registerpopup.langactive {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.registerpopup-overlay.active {
  opacity: 1;
}

.registerpopup-header {
  padding-bottom: 15px;
  text-align: left;
  font-weight: bold;
  color: var(--color-background);
  position: relative;
}
.registerpopup-close:hover {
  filter: contrast(0.9);
}

.registerpopup-close {
  color: var(--color-light-10);
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  margin-left: auto;
  display: flex;
  justify-content: right;
  align-items: center;
  font-weight: 500;
  font-size: 30px;
  top: 15px;
  position: absolute;
  right: 30px;
  z-index: 1;
}

/** SEO popup **/

.seopopup.langshow,
.seopopup-overlay.langshow {
  display: flex;
}

.seopopup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10000;
}

.seopopup {
  position: fixed;
  height: 77vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: var(--color-text);
  border-radius: 14px;
  width: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  z-index: 10001;
  padding: 15px 20px 30px 20px;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.seopopup,
.seopopup-overlay {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.seopopup.fast-close,
.seopopup-overlay.fast-close {
  transition: transform 0.1s ease, opacity 0.1s ease;
}

.seopopup.langactive {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.seopopup-overlay.active {
  opacity: 1;
}

.seopopup-header {
  text-align: center;
  font-weight: bold;
  color: var(--color-background);
  position: relative;
  margin: 0 0 30px 0;
}
.seopopup-close:hover {
  filter: contrast(0.9);
}

.seopopup-close {
  color: var(--color-background);
  cursor: pointer;
  width: 30px;
  height: 30px;
  background: #f2f2f2;
  border-radius: 5px;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  top: 10px;
  right: 10px;
  z-index: 1;
  position: absolute;
}

/** Header **/
.header-wrap.active .opncls {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu-off.png);
  background-size: contain;
}
.header-wrap.active {
  grid-template-columns: 65px auto;
  transition: 0.3s;
}
.body-container.active .header-sec {
  width: calc(100% - 65px);
  transition: 0.3s;
}
.header-wrap {
  display: grid;
  grid-template-columns: 290px auto;
  position: fixed;
  right: 0;
  z-index: 9999;
  background: var(--color-light-2);
  width: 100%;
  transition: 0.3s;
}
.header-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-left-wrapper {
  display: flex;
  align-items: center;
}
.logo {
  position: relative;
  left: 0;
  display: flex;
  height: 65px;
  justify-content: center;
  align-items: center;
}
.logo img {
  max-height: 100%;
  margin-left: 0;
  filter: unset;
  width: 100%;
  height: 47px;
}
.header-logomenu {
  display: flex;
  z-index: 10000;
}
.header-logomenu .headerside{
  width: 100%;
}
ul.nav.header-menu {
  height: 65px;
  display: flex;
  align-items: flex-end;
}
ul.nav.header-menu li.menu-item {
  position: relative;
  margin: 0 1vw;
}
ul.nav.header-menu li.menu-item a.menu-link {
  display: flex;
  align-items: center;
  color: var(--tertiary-text-color);
  font-size: 15px;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
ul.nav.header-menu li.menu-item:hover a.menu-link {
  border-bottom: 2px solid var(--color-primary);
}
.down-arrow {
  margin: 0 0 5px 10px;
  transform-origin: center;
}
.header-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--color-primary);
  padding: 25px 25px 30px;
  min-width: max-content;
  visibility: hidden;
  opacity: 0;
}
ul.nav.header-menu li.menu-item:hover .header-dropdown {
  opacity: 1;
  visibility: visible;
}
.hgtitle {
  font-size: 14px;
  padding: 0 0 10px 5px;
}
.dropdown-menu-wrapper {
  overflow: hidden;
  border-radius: 10px;
  display: flex;
}
a.ddmenu-box {
  display: inline-block;
  min-width: 90px;
  position: relative;
  background: var(--color-accent);
  padding: 15px 12px;
  text-align: center;
  color: var(--secondary-text-color);
  font-size: 12px;
  margin: 0;
}
.dd-img {
  max-width: 30px;
  margin: 0 auto 5px;
}
a.ddmenu-box:hover {
  background: var(--color-primary);
  color: var(--tertiary-text-color);
}
.hdright-wrap {
  display: flex;
  align-items: center;
}
.search-game-wrap {
  position: relative;
  overflow: hidden;
  width: 25px;
}
.gs-box {
  position: relative;
  border-radius: 5px;
  border: 2px solid #454f78;
  display: flex;
  align-items: center;
  height: 35px;
  padding: 2px 10px;
  max-width: 200px;
  width: 100%;
  transform: translateX(200px);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.search-game-wrap.active .gs-box {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.search-icon {
  color: var(--color-background);
  margin-right: 5px;
  font-size: 14px;
}
.search-icon-btn {
  color: var(--color-background);
  font-size: 14px;
  margin-right: 0px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-game-wrap.active .search-icon-btn {
  display: none;
}
input.search-input {
  background: none;
  color: var(--tertiary-text-color);
  border: none;
  width: 100%;
  font-size: 14px;
  transition: 0.5s;
}
.search-dropdown {
  position: absolute;
  z-index: 9;
  left: auto;
  right: 0;
  top: 110%;
  min-width: 640px;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
  background: var(--color-accent);
  color: #677390;
  border: none;
  border-radius: 8px;
  padding: 15px 10px;
  font-size: 14px;
}
.search-game-wrap.active .search-dropdown {
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
  transition-delay: 0.5s;
}
.search-game-wrap.active {
  overflow: visible;
  width: auto;
}
.search-content {
  padding: 0 10px;
  max-height: 400px;
  overflow: auto;
}
.search-content::-webkit-scrollbar {
  width: 6px;
}
.search-content::-webkit-scrollbar-track {
  background: var(--color-accent);
  border-radius: 30px;
}
.search-content::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 30px;
}
.search-content::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}
.srh-require {
  text-align: center;
  padding: 10px 0;
  font-weight: 500;
}
.sgtext {
  text-align: left;
  padding-bottom: 10px;
}
.game-result-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px 8px;
  text-align: center;
}
.gamebox {
  position: relative;
  max-width: 150px;
  margin: 0 auto;
  transition: 0.3s;
  cursor: pointer;
}
.gamebox:hover {
  transition: 0.3s;
  transform: translateY(-3px);
  opacity: 0.6;
}
.srgname {
  color: var(--tertiary-text-color);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3%;
  font-size: 13px;
}
.logreg-wrap {
  display: flex;
  align-items: center;
}

input#registerform_varifycode {
  width: calc(100% - 98px);
  float: left;
}
img#regcaptcha {
  position: relative;
  width: 90px;
  height: 48px;
  border-radius: 8px;
  margin: 0 auto 0 8px;
  padding: 0;
  border: 0;
}
input.btnCheckUser:hover {
  filter: contrast(0.9);
}
input.btnCheckUser {
  position: relative;
  width: 90px;
  background: var(--color-primary);
  height: 48px;
  border-radius: 8px;
  margin: 0 auto 0 8px;
  color: var(--color-background);
  padding: 2px 10px;
  box-shadow: #ffd64f 0px -2px inset;
  -webkit-appearance: none;
  border: 0;
  font-size: 14px;
}
button.login-btn {
  position: relative;
  min-width: 80px;
  background: transparent;
  height: 35px;
  border-radius: 5px;
  border: 2px solid var(--color-border-light);
  margin: 0 auto 0 8px;
  color: var(--color-background);
  font-size: 14px;
  padding: 2px 10px;
}
input#registerform_UserName {
  width: calc(100% - 98px);
  float: left;
}
button.register-btn {
  position: relative;
  min-width: 80px;
  background: var(--color-primary);
  height: 35px;
  border-radius: 5px;
  margin: 0 auto 0 8px;
  color: var(--color-background);
  font-size: 14px;
  padding: 2px 10px;
  box-shadow: #e0c7ae 0px -2px inset;
}
.logreg-wrap button:hover {
  filter: contrast(0.9);
}
button.mobile-wallet-btn {
  position: relative;
  min-width: 30px;
  background: var(--color-primary);
  height: 30px;
  border-radius: 5px;
  margin: 0 auto 0 8px;
  color: var(--tertiary-text-color);
  font-size: 14px;
  padding: 2px 2px;
  display: none;
}
button.mobile-profile-btn {
  position: relative;
  min-width: 30px;
  background: var(--color-accent);
  height: 30px;
  border-radius: 5px;
  margin: 0 auto 0 8px;
  color: var(--color-background);
  font-size: 14px;
  padding: 2px 2px;
  display: none;
}
a.inbox-link {
  display: inline-block;
  color: var(--tertiary-text-color);
  position: relative;
  padding: 2px;
  font-size: 18px;
  margin: 0 5px;
}
span.mailnum {
  position: absolute;
  right: -5px;
  top: -1px;
  background: #f00;
  font-size: 7px;
  border-radius: 50%;
  height: 11px;
  width: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
a.toprofile-link {
  display: inline-block;
  color: var(--color-background);
  border-left: 1px solid var(--color-primary);
  padding: 0 7px;
  margin: 0 0 0 5px;
  font-size: 14px;
}
a.toprofile-link:hover {
  color: var(--tertiary-text-color);
}

/** Inner Body **/
.t-inner-body {
  position: relative;
  padding-top: 90px;
}
.owl-carousel.main-slider {
  margin-bottom: 30px;
}
.mbimg {
  overflow: hidden;
  border-radius: 20px;
}
.owl-carousel.main-slider::before {
  content: "";
  background: linear-gradient(
    90deg,
    rgba(27, 32, 51, 1) 0%,
    rgba(27, 32, 51, 0) 100%
  );
  position: absolute;
  left: -2px;
  bottom: 0;
  width: 19%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.owl-carousel.main-slider::after {
  content: "";
  background: linear-gradient(
    270deg,
    rgba(27, 32, 51, 1) 0%,
    rgba(27, 32, 51, 0) 100%
  );
  position: absolute;
  right: -2px;
  bottom: 0;
  width: 19%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.owl-theme.main-slider .owl-nav {
  margin-top: 0;
}
.owl-theme.main-slider button.owl-prev span,
.owl-theme.main-slider button.owl-next span {
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  line-height: 0;
}
.owl-theme.main-slider .owl-nav button.owl-prev {
  position: absolute;
  left: 0%;
  top: 0;
  bottom: 0;
  font-size: 50px;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  margin: auto;
  background: none;
  z-index: 3;
  opacity: 0.5;
}
.owl-theme.main-slider .owl-nav button.owl-next {
  position: absolute;
  right: 0%;
  top: 0;
  bottom: 0;
  font-size: 50px;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  margin: auto;
  background: none;
  z-index: 3;
  opacity: 0.5;
}
.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: block;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 171.67px;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: var(--color-background);
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url() no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  width: fit-content;
  position: absolute;
  top: -30px;
  right: 0;
}
.owl-theme .owl-nav [class*="owl-"] {
  color: var(--tertiary-text-color);
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}
.flexslider {
  border: none;
  background: transparent;
  margin: 0 0 30px 0;
}
.flexslider .slides img {
  border-radius: 10px;
  position: relative;
  z-index: 1;
  width: 100%;
  margin: auto;
}

.subbanner img {
  border-radius: 10px;
  position: relative;
  z-index: 1;
  width: 100%;
  margin: auto;
}
.flex-direction-nav {
  display: none;
}
.flex-direction-nav a:before,
.flex-direction-nav a:before {
  color: rgba(255, 255, 255, 1);
}
.flexslider:hover .flex-direction-nav .flex-prev,
.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 1;
}
.floating:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  bottom: -4%;
  left: 15%;
  background: url();
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.3)) contrast(1.1)
    brightness(1.1);
  animation: floatimg1 2s infinite ease-in-out alternate;
  transform: translateY(0) translateX(0) scale(1);
}
@keyframes floatimg1 {
  from 0% {
    transform: translateY(0) translateX(0) scale(1);
  }
  100% {
    transform: translateY(-5%) translateX(-5%) scale(1.05);
  }
}
.floating:after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  top: -4%;
  right: 15%;
  background: url();
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  filter: drop-shadow(-2px 4px 4px rgba(0, 0, 0, 0.3)) contrast(1.1)
    brightness(1.1);
  animation: floatimg2 2s infinite ease-in-out alternate;
  transform: translateY(-5%) translateX(-5%) scale(1.05);
}
@keyframes floatimg2 {
  from 0% {
    transform: translateY(-5%) translateX(-5%) scale(1.05);
  }
  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
}

.jptittle {
  text-align: center;
  width: fit-content;
  display: block;
  font-size: 20px;
  letter-spacing: 6px;
  border-bottom: 3px dashed var(--color-accent);
  padding-top: 5px;
  padding-left: 6px;
  padding-bottom: 5px;
  margin: auto;
  margin-bottom: 5px;
}
.jackpot-sec {
  padding: 15px 0;
}
.jackpot-bg img {
  border-radius: 0;
  filter: drop-shadow(0px 28px 20px rgba(0, 0, 0, 0.3));
}
.jackpot-bg {
  position: relative;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    0deg,
    var(--color-background),
    var(--color-primary)
  );
  width: calc(100% - 30px);
  height: 150px;
  border: 7px solid var(--secondary-color);
  outline: 15px inset var(--color-primary);
  border-radius: 35px;
}
.jackpot-position {
  font-size: 34px;
  color: var(--body-text-color);
  position: absolute;
  font-weight: bold;
  width: 330px;
  text-shadow: 0px 1px 6px rgba(255, 255, 255, 0.7);
}
.jackpot-position #foo {
  letter-spacing: 1px;
}
.jpprice {
  margin-left: 22.5px;
}
section.uw-card-sec {
  margin: 40px 0;
}
.uwcard-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  z-index: 1;
}

span.gamitabicon {
  display: block;
  width: 20px;
  height: 20px;
}
span.gamitabicon.gicon1 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/nm3n.png);
  background-size: contain;
}
span.gamitabicon.gicon2 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/nm2n.png);
  background-size: contain;
}
span.gamitabicon.gicon3 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/nm1n.png);
  background-size: contain;
}
span.gamitabicon.gicon4 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/nm6n.png);
  background-size: contain;
}
span.gamitabicon.gicon5 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/nm5n.png);
  background-size: contain;
}
span.gamitabicon.gicon6 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/nm4n.png);
  background-size: contain;
}

a.uwwtab.active span.gamitabicon.gicon1 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/nm3.png);
  background-size: contain;
}
a.uwwtab.active span.gamitabicon.gicon2 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/nm2.png);
  background-size: contain;
}
a.uwwtab.active span.gamitabicon.gicon3 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/nm1.png);
  background-size: contain;
}
a.uwwtab.active span.gamitabicon.gicon4 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/nm6.png);
  background-size: contain;
}
a.uwwtab.active span.gamitabicon.gicon5 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/nm5.png);
  background-size: contain;
}
a.uwwtab.active span.gamitabicon.gicon6 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/nm4.png);
  background-size: contain;
}

a.uwwtab.active {
  background: var(--color-text);
  color: var(--color-background);
}

a.uwwtab:hover {
  background: var(--color-text);
}
.darkMode a.uwwtab:hover {
  background: var(--color-surface);
  color: var(--color-text);
}
a.uwwtab {
  color: var(--color-light-10);
  padding: 10px;
  border-radius: 10px;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-weight: bold;
  white-space: nowrap;
}

.uwgametabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: calc(100vw - 10px);
  padding-right: 10px;
}

.uwcard-layout {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 20px;
  margin: auto;
}

.left-column {
  display: grid;
  gap: 20px;
  grid-auto-flow: column;
  grid-template-columns: 1fr 1fr;
}
.left-column .uwcard-image {
  max-width: 230px;
}

.right-column .uwcard-image {
  max-width: 120px;
  bottom: 10px;
  top: auto;
}

.left-column .uwcard-header {
  font-size: 24px;
}
.right-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.uwcard {
  background: linear-gradient(to right, var(--color-text), #f6f6f6);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 130px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.uwcard:hover .uwcard-image {
  transform: scale(1.1);
  transition: 0.3s ease;
}

.uwcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.uwcard.large {
  height: 100%;
  flex-direction: row;
  align-items: center;
}
.uwcard-header img {
  width: 30px;
}
.uwcard-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--color-background);
}

.uwcard-image {
  width: 100%;
  flex-shrink: 0;
  position: absolute;
  right: 10px;
  top: 10px;
  transform: scale(1);
  transition: 0.3s ease;
}

.uwcard-content {
  display: flex;
  gap: 15px;
  align-items: center;
}

.uwcard-description {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  width: 80%;
}

.right-column .uwcard {
  flex-direction: row;
  align-items: center;
  padding: 10px;
}
.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: auto;
  padding: 10px 0;
  margin-top: 15px;
  background: var(--color-text);
  border-radius: 10px;
}
section.terms-slider-sec {
  margin: 20px 0 40px 0;
}
section.home-promo-sec .t-inner-body {
  padding-top: 0;
}
section.home-promo-sec .max-container {
  padding: 0;
}

section.home-promo-sec .fgtitle {
  margin-bottom: 5px;
}
section.home-slider-sec {
  margin: 25px 0 40px 0;
}
section.home-crypto-sec {
  margin: 40px 0;
}
section.home-promo-sec {
  margin: 40px 0;
}
section.feature-game-sec {
  margin: 40px 0;
}
section.promotion-sec {
  margin: 0px 0 40px 0;
}
.slider-container {
  overflow: hidden;
  white-space: nowrap;
  display: none; /* 默认隐藏，点击时显示 */
}

.slider-container.active {
  display: block;
}
.slider-track {
  display: flex;
  width: fit-content;
  animation: scrollLeft 20s linear infinite;
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1698.2px);
  }
}

.slide {
  height: 100px;
  margin-right: 10px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  flex-shrink: 0;
  cursor: pointer;
}
.slide img {
  width: 100%;
  height: 100%;
  max-width: 74.91px;
  max-height: 100px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.slide img:hover {
  filter: opacity(0.9);
}
.paused {
  animation-play-state: paused !important;
}

.big-wins-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
}

.indicator {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: var(--color-background);
}

.indicator .dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 8px;
}

.mytabs {
  display: flex;
  gap: 20px;
}

.newtab {
  position: relative;
  cursor: pointer;
  color: #888;
  font-weight: 500;
}

.newtab.active {
  color: var(--color-background);
  font-weight: 600;
}

.newtab.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #e0c7ae;
  border-radius: 2px;
}
.home-custom-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}
.hc-content-item {
  height: 230px;
  overflow: hidden;
}
.hc-content-item:hover .plynwbtn span {
  transform: translateY(0);
  transition: 0.5s;
  margin-bottom: 10px;
}
.hc-content-item:hover .hc-content-display {
  height: 240px;
  transition: 0.5s;
}
.hc-content-item:hover .hc-sub-content-display p {
  bottom: 55px;
  transition: 0.5s;
}
.hc-content-item:hover .plynwbtn:before {
  bottom: 45px;
  height: 100px;
  transition: 0.5s;
}
.hc-content-display {
  height: 230px;
  position: relative;
  transition: 0.5s;
}
.plynwbtn:before {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  position: absolute;
  bottom: 0;
  transition: 0.5s;
}

.bonus-banner {
  display: grid;
  grid-template-columns: 20% 80%;
  align-items: center;
  background: var(--color-text);
  border-radius: 10px;
  padding: 10px 30px;
  margin: auto;
  gap: 10px;
  overflow: hidden;
}
.bonus-text img {
  max-width: 30px;
}
.bonus-text {
  font-size: 22px;
  font-weight: bold;
  color: var(--color-background);
}

.bonus-text span {
  background: -webkit-linear-gradient(#ffd038 40%, var(--color-primary) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.payment-methods,
.crypto-icons {
  display: flex;
  gap: 0;
  align-items: center;
}

.payment-methods img {
  height: 40px;
  margin: 5px;
  border-radius: 7px;
  transition: transform 0.2s ease;
  filter: grayscale(1);
}

.crypto-icons img {
  height: 26px;
  transition: transform 0.2s ease;
  margin-left: -0.25rem;
}

.payment-methods img:hover,
.crypto-icons img:hover {
  transform: scale(1.1);
}

.bonus-banner > div {
  flex: 1;
}

.bonus-banner .center {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.bonus-banner .right {
  justify-content: flex-end;
}

.index-1 {
  background: url();
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.index-2 {
  background: url();
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.index-3 {
  background: url();
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.index-4 {
  background: url();
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.display1 {
  background: url();
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.display2 {
  background: url();
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.display3 {
  background: url();
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.display4 {
  background: url();
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.hc-sub-content-display p {
  font-size: 24px;
  position: absolute;
  bottom: 10px;
  text-align: center;
  width: 100%;
  transition: 0.5s;
  font-weight: bold;
  z-index: 1;
  color: var(--tertiary-text-color);
}
.plynwbtn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  overflow: hidden;
  padding-top: 100px;
}
.plynwbtn span {
  width: 100%;
  height: 45px;
  border-radius: 10px 10px 0px 0px;
  display: grid;
  place-items: center;
  -webkit-box-align: center;
  background: var(--color-primary);
  color: var(--tertiary-text-color);
  position: relative;
  transform: translateY(85%);
  transition: 0.5s;
}

.welcome-sec {
  text-align: center;
}
.wtitle-1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-background);
}
.wtitle-2 {
  font-size: 16px;
  margin-bottom: 15px;
}
.register-step-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
  margin: 0 auto 30px;
}
.stepbox {
  position: relative;
  display: inline-block;
}
.stepbox-inner {
  background: var(--color-accent);
  border-radius: 10px;
  padding: 15px 10px 10px;
  min-height: 182px;
}
.step-img {
  margin: 0 auto 10px;
  max-width: 95px;
}
.step-btm {
  color: var(--color-background);
  position: relative;
}
.white-box {
  background: var(--color-text);
  height: 8px;
  width: 8px;
  margin: 10px auto;
}
.white-line {
  background: var(--color-text);
  height: 1px;
  width: 95%;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 86%;
}
.ftgame-container {
  position: relative;
  margin: 0 0 30px;
}
.owl-carousel::after {
  content: "";
  background: linear-gradient(
    270deg,
    rgba(27, 32, 51, 1) 0%,
    rgba(27, 32, 51, 0) 100%
  );
  position: absolute;
  right: 0;
  bottom: 0;
  width: 10%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  display: none;
}
.owl-theme .owl-nav button.owl-prev,
.owl-theme .owl-nav button.owl-next {
}
.allbtns p {
  font-size: 14px;
  height: 25px;
  margin: auto 0;
  color: var(--color-light-7);
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  margin-right: 5px;
  margin-left: 5px;
  font-weight: bold;
}
.allbtns {
  border-radius: 5px;
  height: 30px;
  width: auto;
  min-width: 50px;
  margin: auto;
  background: var(--color-light-5);
  z-index: 3;
  color: var(--color-light-7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  font-weight: bold;
  position: absolute;
  top: -30px;
  right: 70px;
  font-size: 14px;
}

.owl-theme .owl-nav button.owl-prev {
  border-radius: 5px;
  height: 30px;
  width: 30px;
  margin: auto;
  background: var(--color-light-5);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.owl-theme .owl-nav button.owl-next {
  border-radius: 5px;
  height: 30px;
  width: 30px;
  margin: auto;
  background: var(--color-light-5);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.owl-theme .owl-nav button.owl-next:hover,
.owl-theme .owl-nav button.owl-prev:hover,
.allbtns:hover {
  color: var(--color-background);
  filter: contrast(0.9);
  transition: 0.5s;
}
.flex-control-nav {
  bottom: 0;
  z-index: 10;
}
.flex-control-paging li a {
  width: 50px;
  height: 4px;
  background: rgb(241 242 243);
}
.flex-control-paging li a:hover {
  background: var(--color-primary);
}
.flex-control-paging li a.flex-active {
  background: var(--color-primary);
}
.flex-direction-nav a:before,
.flex-direction-nav a:before {
  color: rgba(255, 255, 255, 0.5);
}

.flexslider .slides a:before {
  content: "";
  display: none;
  width: 8%;
  height: 100%;
  background: linear-gradient(
    270deg,
    rgb(45 50 73 / 60%) 0%,
    rgba(45 50 73 / 0) 100%
  );
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  border-radius: 0 20px 20px 0;
}
.flexslider .slides a:after {
  content: "";
  display: none;
  width: 8%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgb(45 50 73 / 60%) 0%,
    rgba(45 50 73 / 0) 100%
  );
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  border-radius: 20px 0 0 20px;
}
.fgtitle {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 0;
  font-size: 18px;
  color: var(--color-background);
  padding-top: 8px;
}
.hot-icon {
  margin-right: 7px;
}
.hot-icon img {
  height: 25px;
  filter: brightness(1.2);
}
.owl-carousel .owl-stage-outer {
  padding: 5px 0;
}

.tumbox {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}

.promobox {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}
.gname {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4%;
  font-size: 13px;
  cursor: pointer;
}
.tumbox:before {
  content: "";
  display: block;
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/plybtn.png);
  background-size: contain;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.3);
  z-index: 1;
  opacity: 0;
  transition: 0.3s;
}
.tumbox:hover:before {
  opacity: 1;
  transition: 0.3s;
  transform: translate(-50%, -50%) scale(1);
}
.tumbox:after {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s;
}
.tumbox:hover:after {
  opacity: 1;
  transition: 0.3s;
}
.tumbox:hover,
.promobox:hover {
  transition: 0.3s;
  transform: translateY(-3px);
}
.providers-slider {
  margin-top: 10px;
}
.logo-box {
  background: #2b3247;
  padding: 10px 5px;
  border-radius: 10px;
  position: relative;
}
.logo-box img {
  width: auto;
  max-width: 90%;
  margin: auto;
}
.bonus-feature-sec {
  position: relative;
  text-align: center;
  padding-bottom: 30px;
}
.ftbn-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.feature-bonus-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
.bf-box {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(43, 50, 72, 1) 0%,
    rgba(45, 61, 72, 1) 55%,
    rgba(52, 104, 73, 1) 100%
  );
  padding: 20px 15px;
  border-radius: 10px;
}
.bftitle {
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 10px;
}
.bf-img {
  max-width: 90%;
  margin: 0 auto;
}
.review-sec {
  position: relative;
  text-align: center;
  max-width: 92%;
  margin: 0 auto;
  padding: 10px 0 30px;
}
.review-slider .owl-stage-outer {
  padding: 10px 0;
}
.owl-carousel .owl-item .user-img img {
  display: initial;
  width: auto;
}
.review-box {
  background: var(--color-accent);
  border-radius: 10px;
  padding: 25px 20px;
  overflow: hidden;
  box-shadow: 0 0 10px rgb(0, 0, 0, 0.3);
  min-height: 260px;
}
.review-user-wrap {
  display: grid;
  grid-template-columns: 45px auto;
  grid-gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
}
.review-user {
  text-align: left;
}
.rv-name {
  font-size: 18px;
  margin-bottom: 5px;
}
.stars-rate {
  color: var(--color-background);
}
.rvtitle {
  color: var(--color-background);
  margin-bottom: 15px;
}
.rv-comment {
  color: #9aa5be;
}
.owl-theme.review-slider .owl-nav {
  margin-top: 0;
}
.owl-theme.review-slider .owl-nav button.owl-prev {
  position: absolute;
  left: -4%;
  top: 0;
  bottom: 0;
  font-size: 24px;
  border-radius: 6px;
  height: 35px;
  width: 35px;
  margin: auto;
  color: #9bacc9;
  background: var(--color-accent);
  z-index: 3;
  padding-bottom: 0.3% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-theme.review-slider .owl-nav button.owl-next {
  position: absolute;
  right: -4%;
  top: 0;
  bottom: 0;
  font-size: 24px;
  border-radius: 6px;
  height: 35px;
  width: 35px;
  margin: auto;
  color: #9bacc9;
  background: var(--color-accent);
  z-index: 3;
  padding-bottom: 0.3% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-nav button:hover {
}
.why-sec {
  position: relative;
  text-align: center;
  padding: 10px 0 30px;
}
.usp-container {
  background: #161827;
  padding: 20px 15px 30px;
  border-radius: 20px;
}
.usp-subtitle {
  font-size: 20px;
  margin: 0 auto 15px;
}
.green-text {
  color: var(--color-background);
  font-weight: 700;
}
.usp-wrapper {
  padding-top: 20px;
}
.usp-box {
  position: relative;
  background: var(--color-accent);
  max-width: 31%;
  margin: 0.5% 0.5%;
  display: inline-block;
  border-radius: 10px;
  padding: 0 15px 15px;
}
.uspimg {
  margin-top: -23px;
}
.usp-title {
  color: var(--color-background);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.join-sec {
  position: relative;
  padding-bottom: 20px;
}
.join-today {
  background: linear-gradient(
    90deg,
    rgba(41, 48, 72, 1) 0%,
    rgba(19, 23, 36, 1) 100%
  );
  position: relative;
  display: grid;
  grid-template-columns: auto 200px;
  grid-gap: 10px;
  align-items: center;
  height: 80px;
  border-radius: 20px;
  padding: 5px 4%;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}
button.join-btn {
  position: relative;
  min-width: 150px;
  background: var(--color-primary);
  height: 35px;
  border-radius: 45px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--tertiary-text-color);
  padding: 2px 15px;
}
button.join-btn:hover {
  background: var(--color-primary);
}

/** Footer **/
footer {
  background: var(--color-light-8);
}
.uwwfooter {
  padding: 0;
}
.uwwfooter .footer-logos img {
  width: 100%;
  transform: scale(1);
  filter: grayscale(1) drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.8));
  transition: transform 0.2s ease;
}
.uwwfooter .footer-logos img:hover {
  transform: scale(1.1);
  filter: grayscale(0) drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.8));
}
.uwwfooter .footer-logos {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px 0;
  border-bottom: 1px solid #ddd;
}
.uwwfooter .footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 0 10px 0;
}

.uwwfooter .footer-column {
  flex: 1 1 160px;
  margin-bottom: 0;
}
.uwwfooter .footer-column h4 {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--color-background);
  font-weight: bold;
}
.uwwfooter .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.uwwfooter .footer-column ul li {
  margin-bottom: 8px;
}
.uwwfooter .footer-column ul li a {
  text-decoration: none;
  color: var(--color-light-10);
  font-size: 14px;
}
.uwwfooter .footer-column ul li a:hover {
  text-decoration: underline;
}
.uwwfooter .footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-column div:nth-child(2) {
  margin-bottom: 20px;
}
.uwwfooter .footer-socials img {
  max-width: 130px;
}
.uwwfooter .footer-socials i {
  font-size: 18px;
  padding: 10px;
  background: #eaeaea;
  border-radius: 8px;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}
.uwwfooter .footer-column h4 span {
  display: block;
  margin-top: 20px;
}

.seo-container p a {
  color: #ff0f0f;
}

.seo-container ul {
  line-height: 1.5;
  color: var(--color-light-10);
  list-style: decimal;
  padding-left: 20px;
}

.seo-container h2 {
  margin: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.seo-container h3 {
  margin: 15px 0;
  color: var(--color-background);
}

.seo-container p {
  line-height: 1.5;
  color: var(--color-light-10);
}

#theme-footer {
  padding: 0;
}

section.seo-footer-sec {
  background: var(--color-light-8);
}
.seo-container {
  margin: auto;
}
.uwwseobtn:hover {
  filter: contrast(0.9);
}
.uwwseobtn {
  color: var(--color-light-7);
  font-weight: 600;
  background-color: #f2f2f2;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}
.uwwseobtn p {
  font-size: 14px;
  height: 30px;
  margin: auto 0;
  color: var(--color-light-7);
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  font-weight: bold;
  margin-right: 5px;
}
.uwwseobtn span[aria-label="Next"] {
  transform: rotate(90deg);
}
span[aria-label="Next"] {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/arrowright.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -9999px;
  overflow: hidden;
}
span[aria-label="Previous"] {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/arrowleft.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -9999px;
  overflow: hidden;
}

.seo-sec {
  padding: 15px 0;
}

.seo-wrapper {
  position: relative;
  padding: 30px 0;
  border-bottom: 1px solid #ddd;
}
.seo-wrapper::after {
  content: "";
  display: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.readmore-seo {
  text-align: center;
  margin-top: -40px;
}
.seo-container.active .readmore-seo {
  margin-top: 0;
}
.seo-container.active .seo-wrapper {
  max-height: none;
}
.seo-container.active .seo-wrapper::after {
  content: none;
}

.seo-content-collapsible {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.seo-content-collapsible.expanded {
  max-height: 100%;
}

.uwwseobtn.read-more p::before {
  content: "";
}

.uwwseobtn.read-more.active p {
  content: "";
}
.uwwseobtn.read-more.active span[aria-label="Next"] {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
}

button.read-more {
  position: relative;
  min-width: 100px;
  background: var(--color-accent);
  height: 35px;
  border-radius: 7px;
  margin: 0 auto 0 8px;
  color: var(--tertiary-text-color);
  font-size: 14px;
  padding: 2px 10px;
}
button.read-more:hover {
  opacity: 0.6;
}

.seo-wrapper h3 {
  margin: 15px 0 10px 0;
  font-weight: bold;
}

.seo-wrapper a {
  color: var(--tertiary-text-color);
  text-decoration: underline;
}
.seo-wrapper a:hover {
  color: var(--color-background);
}
.darkMode .seo-wrapper a:hover {
  color: var(--color-text);
}
.footer-sec {
  position: relative;
  padding: 0 0 10px;
  color: #aaa;
}
.footer-sec a {
  color: #aaa;
}
.pmethod img {
  height: 35px;
  border-radius: 7px;
}
.footer-sec a:hover {
  color: var(--color-background);
  text-decoration: none;
}
.footer-top-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  font-size: 13px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #f3f5f6;
}
.footer-column {
  position: relative;
  padding: 0px 10px;
}
.footer-column:last-child {
  border-right: none;
}
.ft-title {
  font-weight: 500;
  color: var(--secondary-text-color);
  margin-bottom: 8px;
}
ul.ft-list {
  padding-left: 16px;
}
ul.ft-list li {
  padding: 0.5px 0;
}
.mobile-footer-column {
  display: none;
}
.footer-btm-wrapper {
  display: grid;
  grid-template-columns: 30% 40% 30%;
  font-size: 13px;
  border-bottom: 1px dashed #f3f5f6;
  padding: 20px 0;
}
.footer-btm-wrapper .ft-title {
  color: #aaa;
  font-weight: 400;
}
.ft-icon img {
  margin: 5px 5px;
}
.ft-crypto img {
  max-width: 45px;
  margin: 5px 3px;
}
.ft-payment img {
  max-height: 25px;
  margin: 5px 3px;
}
.ft-social img {
  max-height: 45px;
  margin: 5px 2px;
}
.footer-copyright {
  font-size: 13px;
  text-align: center;
  padding: 0;
  text-transform: uppercase;
}
.footer-copyright a {
  text-decoration-line: underline;
  text-transform: uppercase;
}

/** Mobile Bottom Menu **/
.mobile-btm-sec {
  position: fixed;
  background: var(--color-light-1);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 10000;
  padding: 10px;
  display: none;
}
ul.btm-menu-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  text-align: center;
  height: 60px;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  border-radius: 10px;
  background: var(--color-text);
}
.darkMode ul.btm-menu-nav {
  background: var(--color-dark-3);
}
a.bmenu-link {
  color: #9bacc9;
  font-size: 11px;
  font-weight: 500;
  display: block;
  padding: 0;
}
.bmtext {
  line-height: 1.5;
  color: var(--color-light-10);
  font-weight: 700;
}
.darkMode .bmtext {
  color: var(--color-text);
}
.bmimg {
  padding: 0;
  height: 30px;
  width: 30px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}
.bmimg img {
  max-height: 30px;
  filter: grayscale(1);
  padding: 5px;
}
.darkMode .bmimg img {
  filter: brightness(99);
}
img.nopress {
  display: block;
  filter: grayscale(1);
}
.darkMode img.nopress {
  filter: brightness(99);
}
img.pressme {
  display: none;
}
.modal-open img.pressme {
  display: block;
  filter: none !important;
}
.modal-open img.nopress {
  display: none;
}
a.bmenu-link.active img {
  filter: none;
}

/** Register page **/
.reg-sec {
  padding: 15px 0 30px;
}
.register-wrapper {
  display: grid;
  grid-template-columns: 45% 55%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 30px;
  background: #131623;
}
.reg-left-column {
  padding: 20px;
}
.reg-right-column {
  background: #161b2a;
  padding: 30px 20px 20px;
}
.regtitle {
  display: none;
}
form.reg-form {
  padding: 15px;
}
.rfwrap {
  position: relative;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}
.reg-field {
  position: relative;
  width: 100%;
}
.input-icon {
  position: absolute;
  z-index: 2;
  left: 15px;
  color: #535e76;
  font-size: 16px;
}
input.reg-input {
  background: #2c3247;
  color: var(--tertiary-text-color);
  border: none;
  height: 40px;
  padding: 2px 15px 2px 45px;
  border-radius: 8px;
}
input.reg-input::placeholder {
  color: #c4c4c4;
}
.field-icon {
  position: absolute;
  right: 17px;
  top: 13px;
  font-size: 17px;
  cursor: pointer;
}
.reg-line {
  background: #535e76;
  height: 1px;
  width: 100%;
  margin: 0px 0 20px;
}
.choose-text {
  font-size: 16px;
  text-align: center;
  padding-bottom: 10px;
}
.fav-game {
  display: flex;
  justify-content: space-evenly;
}
.game-option {
  display: inline-block;
  position: relative;
  padding-left: 23px;
  margin: 4px 6px;
  cursor: pointer;
  font-size: 15px;
  user-select: none;
}
.game-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  border-radius: 4px;
  background-color: #535e76;
}
.game-option:hover input ~ .checkmark {
  background-color: var(--color-background);
}
.game-option input:checked ~ .checkmark {
  background-color: var(--color-background);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.game-option input:checked ~ .checkmark:after {
  display: block;
}
.game-option .checkmark:after {
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid var(--color-text);
  border-width: 0px 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.reg-btn-wrap {
  text-align: center;
  padding: 20px 0;
}
#groupSubmit {
  text-align: center;
}
input#customformv1_submit,
input#customform_submit,
input#registerform_btnSubmit {
  position: relative;
  min-width: 100%;
  background: var(--color-primary);
  height: 40px;
  border-radius: 8px;
  margin: 0;
  color: var(--color-background);
  padding: 2px 10px;
  box-shadow: #e0c7ae 0px -2px inset;
  -webkit-appearance: none;
  font-weight: bold;
  border: 0;
}

.agree-text {
  font-size: 14px;
  color: #535e76;
}
.greentext,
.agree-text a {
  color: var(--secondary-text-color);
}

.agree-text a:hover {
  color: var(--tertiary-text-color);
}
.fun-begin {
  padding: 0 5px;
}
.regtext-1 {
  color: var(--tertiary-text-color);
  font-weight: 700;
  font-size: 24px;
}
ol.fun {
  padding: 10px 0 0px 17px;
  font-size: 17px;
}
ol.fun .greentext {
  font-weight: 700;
}
ol.fun li {
  padding-bottom: 10px;
}
.reg-feature-banners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
.activate-wrapper {
  background: #131623;
  padding: 30px 20px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  text-align: center;
}
.active-img {
  margin-bottom: 10px;
}
.actext-1 {
  color: var(--color-background);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.btn-act {
  padding-top: 20px;
}
.btn-act button.login-btn:hover {
  background: var(--color-primary);
  color: var(--tertiary-text-color);
}

/** Lottery **/
.t-inner-body.lottery {
  background: url() no-repeat top center;
  background-size: 100%;
  background-position-y: 60px;
}
.lottery-sec {
  position: relative;
  padding-bottom: 30px;
}
.lottery-top-wrap {
  position: relative;
  height: 22vw;
  max-width: 1100px;
  margin: 0 auto;
}
.deco.ball-1 {
  max-width: 12%;
  left: 3%;
  top: 63%;
  z-index: 2;
  animation: 2.5s float ease-in-out infinite;
}
.deco.ball-2 {
  right: 5%;
  top: 67%;
  max-width: 11%;
  z-index: 2;
  animation: 2.2s float ease-in-out infinite;
}
@-webkit-keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}
.liveresult-template .row {
  margin-right: 0;
  margin-left: 0;
}
.liveresult-template .row h3 {
  margin: 0;
}
.liveresult-template {
  background: var(--color-text);
  margin-bottom: 0;
  padding: 16px;
  border-radius: 15px;
}

.panel-default {
  border-color: transparent;
}
#TopThree {
  display: flex;
}
#TopThree .col-sm-4 {
  width: 100%;
  padding: 0;
}
#TopThree .popwin {
  font-size: 18px;
  font-weight: 500;
  padding: 5px 1px;
  color: var(--color-light-7);
  width: 100%;
  display: block;
}
#TopThree .col-sm-4 div {
  padding-bottom: 5px;
}
.lotto-btn-wrap {
  text-align: center;
}
.fb_iframe_widget_fluid,
.fb_iframe_widget {
  display: none;
}
.btn-primary {
  display: none;
  background: var(--color-primary);
  width: 180px;
  color: var(--tertiary-text-color);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 8px;
  height: 45px;
  padding: 5px;
  margin: 5px;
  border: 0;
  float: right;
  margin-right: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}
button.lotto-btn.guide {
  background: #2b3247;
}
.btn-primary:hover {
  transition: 0.3s;
  background-color: #2d3249;
}
.date-search-wrap {
  position: relative;
  max-width: 250px;
  margin: 20px auto;
}
input.date-input {
  background: var(--color-primary);
  color: var(--tertiary-text-color);
  border: 1px solid var(--color-primary);
  height: 40px;
  padding: 4px 15px;
  border-radius: 40px;
  width: 100%;
}
button.search-btn {
  background: var(--color-primary);
  border: none;
  border-radius: 0 40px 40px 0;
  height: 40px;
  width: 50px;
  color: var(--tertiary-text-color);
  font-size: 14px;
  position: absolute;
  right: 0;
  top: 0;
}
.lotteryTable {
  display: table;
  width: 100%;
}
.lotteryuww-sec {
  width: 100%;
  display: block;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: var(--color-text);
  margin-bottom: 0;
  padding: 16px;
  border-radius: 15px;
}

.lotteryTableHeader {
  color: var(--color-light-7);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 22px;
  background: var(--color-primary);
}

.lotteryTableColHeader {
  color: var(--color-background);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  background: var(--color-text);
}

.lotteryTableRow {
  color: var(--color-light-7);
  background: var(--color-light-1);
}
.darkMode .lotteryTableRow {
  color: var(--color-text);
  background: var(--color-dark-3);
}
.darkMode .lotteryTable td {
  border: 1px solid #485069;
}
.darkMode .lotteryTableColHeader {
  background: var(--color-dark-4);
  color: var(--color-text);
}
.lotteryTable td {
  padding: 8px 16px;
  font-size: 14px;
  line-height: 14px;
  display: table-cell;
  border: 1px solid #dbdbdb;
}

.lotteryResults {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px auto;
}

.singleResult {
  border-spacing: 0;
  border: 1px solid #b6947b;
  max-width: 500px;
}

.resultRow {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}

.resultTitle {
  flex: 1;
  border-bottom: 2px solid #b6947b;
  color: var(--color-text);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  background: linear-gradient(to right, #cbae90 10%, #ddc7af 100%);
  padding: 4px 0 6px;
}

.resultWrapper {
  padding: 4px 6px;
  color: #ccab8c;
}
.resultWrapper .resultRow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
}

.resultRow.resultReverseColor {
  background: linear-gradient(to right, #cbae90 10%, #ddc7af 100%);
  color: var(--color-text);
  border-bottom: 0 !important;
}

.resultWrapper .resultRow.resultBetween {
  justify-content: space-evenly;
}

.resultWrapper .resultRow:not(:last-child) {
  border-bottom: 1px solid #b6947b;
}

.resultWrapper .resultRow div {
  padding: 10px 30px;
  font-size: 16px;
}

.resultWrapper .resultRow .resultBigPrize {
  font-size: 20px;
}
.lotto-drawresult .row {
  margin: 0;
}
.lotto-drawresult .col-sm-4 {
  width: 100%;
  padding: 0;
}
.lotto-drawresult {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  padding: 0;
  margin: 0;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.panel {
  background: var(--color-text);
  margin: 0;
  color: var(--tertiary-text-color);
  width: 100%;
  text-align: center;
  height: 100%;
}
.panel-default > .panel-heading .row {
  display: flex;
  width: 100%;
}
.panel-default > .panel-heading .row .col-sm-2 {
  width: 100%;
  margin: auto;
  text-align: right;
  padding: 0;
}
.panel-default > .panel-heading {
  background: var(--color-primary);
  color: var(--color-light-7);
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 15px;
  height: 55px;
}
.panel-heading .col-sm-9 {
  width: 100%;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  text-align: left;
}
.lotto-img {
  max-width: 40px;
  overflow: hidden;
  border-radius: 6px;
}
.lotto-title {
  text-align: right;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}
.lottitle-2 {
  font-size: 70%;
  font-weight: 500;
  text-transform: uppercase;
}
.panel-body:before,
.row:before,
.row:after {
  display: none;
}
#TopThree .control-label {
  background: #dbdbdb;
  color: var(--color-light-7);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  padding: 5px 0;
  width: 100%;
  margin: 0;
  min-width: 100%;
  margin-bottom: 8px;
}
table.rs-top tr td {
  font-size: 20px;
  font-weight: 500;
  padding: 5px 1px;
  border-right: 1px solid var(--color-accent);
}
table.rs-top tr td:last-child {
  border: none;
}
table.rs-btm tr th {
  background: var(--color-primary);
  color: var(--color-background);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  padding: 5px 1px;
}
#Magnumimg {
  background: url() left no-repeat #383838;
  height: 50px;
  width: 85px;
}
#PMPimg {
  background: url() left no-repeat;
  height: 50px;
  width: auto;
}
#Totoimg {
  background: url() left no-repeat;
  height: 50px;
  width: auto;
}
#Singaporeimg {
  background: url() left no-repeat;
  height: 50px;
  width: auto;
}
#Sabahimg {
  background: url() left no-repeat;
  height: 50px;
  width: auto;
}
#Sandakanimg {
  background: url() left no-repeat;
  height: 50px;
  width: auto;
}
#Sarawakimg {
  background: url() left no-repeat;
  height: 50px;
  width: auto;
}
#GDLottoimg {
  background: url() left no-repeat;
  height: 50px;
  width: auto;
}
#Perdanaimg {
  background: url() left no-repeat;
  height: 50px;
  width: auto;
}
#LuckyHari-Hariimg {
  background: url() left no-repeat;
  height: 50px;
  width: auto;
}
#GOOD4Dimg {
  background: url() left no-repeat;
  height: 50px;
  width: auto;
}
#Perdana-3Dimg {
  background: url() left no-repeat;
  height: 50px;
  width: auto;
}
.row.logo .col-sm-4 {
  padding: 0 15px;
}

#THV88,
#GDLotto,
#Toto-5D,
#Toto-6D {
  display: none;
}

#Magnum .panel-default {
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  overflow: hidden;
}
#PMP .panel-default {
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  overflow: hidden;
}
#Toto .panel-default {
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  overflow: hidden;
}
#Singapore .panel-default {
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  overflow: hidden;
}
#Sabah .panel-default {
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  overflow: hidden;
}
#Sandakan .panel-default {
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  overflow: hidden;
}
#Sarawak .panel-default {
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  overflow: hidden;
}
#GDLotto .panel-default {
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  overflow: hidden;
}
#Perdana .panel-default {
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  overflow: hidden;
}
#LuckyHari-Hari .panel-default {
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  overflow: hidden;
}
#Perdana-3D .panel-default {
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  overflow: hidden;
}
#GOOD4D .panel-default {
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  overflow: hidden;
}
#LuckyHari-Hari .col-sm-9 {
  font-size: 14px;
}

#datetime {
  text-align: right;
  white-space: nowrap;
}
#datetime label {
  background: transparent;
}
#datetime .col-sm-12 {
  padding: 0;
  font-size: 70%;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-light-7);
  font-size: 14px;
}
a#show3d {
  color: var(--color-primary);
  font-weight: bold;
}
.panel-body .small {
  color: var(--color-light-7);
}
.panel-body .row.logo {
  background: #f5f5f5;
  display: flex;
  align-items: center;
  padding: 5px 0;
  position: relative;
  right: 0;
  left: 0;
}
.darkMode #datetime .col-sm-12 {
  color: var(--color-text);
}

.darkMode .panel-body .row.logo {
  background: var(--color-dark-3);
}

.darkMode #TopThree .control-label,
.darkMode #Special .row label,
.darkMode #Consolation .row label {
  background: var(--color-dark-8);
  color: var(--color-text);
}
.darkMode .panel-default {
  border: 1px solid var(--color-border) !important;
}

#Consolation {
  float: left;
  width: 50%;
}
#Special {
  width: 50%;
  float: left;
}
#Special .row:nth-child(2) {
  border-right: 1px solid #dbdbdb;
}
.darkMode #Special .row:nth-child(2) {
  border-right: 1px solid #485069;
}
#Special .row label,
#Consolation .row label {
  background: #dbdbdb;
  color: var(--color-light-7);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  padding: 5px 1px;
  margin: 0;
  width: 100%;
}
.panel-body .col-sm-3 {
  padding: 5px 1px;
  font-size: 16px;
  width: 50%;
}
.panel-body {
  padding: 0;
}
.panel-body .col-sm-3 a {
  color: var(--color-light-7);
}
table.rs-btm tr td:last-child {
  border: none;
}
.consol-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px 5px;
}
.lottery-mobile {
  display: none;
}

/** Redeem Mall **/
/*====================product css=====================*/
#theme-contain-prod {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 40px;
  padding-top: 90px;
}
#cms5-prodcatnav {
  position: relative;
}

#cms5-prodcatlist ul {
  display: flex;
  background: var(--color-light-8);
  padding: 3px;
  border-radius: 45px;
  margin: 0 0 15px;
  max-width: fit-content;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: auto;
  list-style: none;
}
#cms5-prodcatlist ul li a:hover {
  background: var(--color-primary);
  color: var(--color-background);
}

#cms5-prodcatlist ul li a {
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  display: inline-block;
  margin: 2px 5px;
  color: var(--color-light-6);
  white-space: nowrap;
  text-align: center;
  border-radius: 45px;
  cursor: pointer;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  text-transform: capitalize;
  height: 35px;
}

#theme-contain-prod .prod-banner img {
  border-radius: 20px;
  margin: 0px auto 25px;
}

#cms5-prod-list #title {
  margin: 10px auto;
}
#title span.caption,
#photo span.caption,
#price span.caption {
  display: none;
}
#cms5-prod-list #title a {
  color: var(--color-light-7);
  display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  padding: 0 10px;
}
#cms5-prod-list ul #addcart a:hover {
  filter: contrast(0.9);
}
#cms5-prod-list ul #addcart a {
  display: block;
  text-align: center;
  width: 100%;
  padding: 10px 5px;
  border: 0;
  margin: auto;
  min-width: 80px;
  background: var(--color-primary);
  border-radius: 5px;
  color: var(--color-background);
  font-size: 14px;
  font-weight: normal;
  box-shadow: #e0c7ae 0px -2px inset;
}

#cms5-prod-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
}

#cms5-prod-list ul {
  background: var(--color-text);
  border-radius: 5px;
  margin: 0;
  padding: 30px 10px 10px 10px;
  display: inline-block;
  transition: 0.3s;
  height: fit-content;
  border: 1px solid #e4d0b9;
  width: 100%;
  vertical-align: top;
  position: relative;
  list-style: none;
  text-align: center;
}
#cms5-prod-list #price {
  color: #ff0f0f;
  display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0;
  letter-spacing: 1px;
}
#cms5-prod-list #photo {
  margin-top: 30px;
}
#cms5-prod-list #desc,
#cms5-prod-list #details,
#cms5-prod-list #enquiry,
#cms5-prod-list #code {
  display: none;
}

div#sort {
  margin-top: -17px;
}

select#sortlist {
  display: inline-block;
  width: 23%;
  height: 38px;
  background: var(--color-light-1);
  color: var(--color-background);
  border: none;
  padding: 4px 15px;
  border-radius: 8px;
}

#myModalredeem ol.o img {
  width: calc(100% - 40px);
}

#myModalredeem .modal-content {
  background-color: #2b3247;
}

#price-range input#price-min {
  width: 23%;
  display: inline-block;
  height: 38px;
  background: var(--color-light-1);
  color: var(--color-background);
  border: none;
  padding: 4px 15px;
  border-radius: 8px;
}

input#price-max {
  width: 23%;
  display: inline-block;
  height: 38px;
  background: var(--color-light-1);
  color: var(--color-background);
  border: none;
  padding: 4px 15px;
  border-radius: 8px;
}

input#submit-btn {
  border-radius: 5px;
  padding: 6px;
  color: #03927c;
  font-weight: 600;
  width: 10%;
}

.intro button#customform_submit:hover {
  background: linear-gradient(
    180deg,
    rgba(43, 50, 72, 1) 0%,
    rgba(44, 59, 72, 0.9248949579831933) 40%,
    rgb(108 48 161) 100%
  );
  transition: 0.3s;
}

.intro button#customform_submit {
  width: 48.5%;
  padding: 10px;
  background: linear-gradient(0deg, #a3775e, #3c3836);
  color: var(--color-text);
  border: 0;
  border-radius: 20px;
  font-size: 15px;
  transition: 0.3s;
}

div#search-bar {
  border: 1px solid #4c4c4c52;
  padding: 16px;
  border-radius: 6px;
  background: var(--color-text);
  max-width: 1250px;
  margin: 25px auto;
  position: relative;
}
.panel-default > .panel-heading {
  border: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  padding-bottom: 10px;
  margin-bottom: 24px;
  font-size: 24px;
  line-height: inherit;
  color: var(--color-light-7);
  border: 0;
  border-bottom: 1px solid var(--color-light-1);
}

label {
  font-size: 18px;
  margin: 8px 0;
  color: var(--color-light-7);
  display: inline-block;
  font-weight: 500;
  min-width: 100px;
}
div#price-range {
  color: var(--color-light-7);
}
div#price-range input#stock {
  margin-left: 10px;
}

#clear-btn {
  position: absolute;
  white-space: nowrap;
  color: var(--color-light-7);
  text-decoration: underline;
  right: 210px;
  bottom: 30px;
}
#search-form input#submit-btn:hover {
  filter: contrast(0.9);
}
#search-form input#submit-btn {
  padding: 15px 1px;
  border: 0;
  width: 170px;
  position: absolute;
  bottom: 16px;
  right: 0;
  left: unset;
  margin: 0 15px 0 0;
  min-width: 80px;
  background: var(--color-primary);
  border-radius: 5px;
  color: var(--color-background);
  font-size: 14px;
  font-weight: normal;
  box-shadow: #e0c7ae 0px -2px inset;
}

div#keyword {
  display: none;
}

.intro p.r {
  width: 70%;
  padding-right: 5%;
}
#cms5-prod-view {
  border: 1px solid #4c4c4c52;
  padding: 16px;
  border-radius: 6px;
  background: var(--color-text);
  max-width: 1250px;
  position: relative;
  margin: 0 auto;
  margin-bottom: 40px;
}

/*====================product cart view=====================*/
#cms5-prod-view #addcart a {
  display: block;
  text-align: center;
  max-width: 150px;
  width: 100%;
  padding: 10px 5px;
  border: 0;
  margin: 0;
  margin-bottom: 10px;
  min-width: 80px;
  background: var(--color-primary);
  border-radius: 5px;
  color: var(--color-background);
  font-size: 14px;
  font-weight: normal;
  box-shadow: #e0c7ae 0px -2px inset;
}

#cms5-prod-view #addcart a:hover {
  filter: contrast(0.9);
}

#cms5-prod-view #title #caption {
  width: 80px;
}

#cms5-prod-view .gcontent {
  width: 100%;
  margin: -10px auto 0px;
}

#cms5-prod-view td {
  margin: 10px 5px;
}

#cms5-prod-view #desc #caption {
  width: 120px;
  border: red solid 0px;
}
#cms5-prod-view #back-btn a:hover {
  filter: contrast(0.9);
}

#cms5-prod-view #back-btn a {
  color: var(--color-light-7);
  font-weight: 600;
  background-color: #f2f2f2;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}
#cms5-prod-view table {
  color: var(--color-light-7);
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.5;
}
.galleria-thumbnails-container {
  display: none;
}
#cms5-prod-view table td#price {
  color: #ff0f0f;
}
table#particular td#title {
  color: var(--color-background);
  font-weight: bold;
}
#cms5-prod-view table tr#desc {
  display: none;
}

/*====================product cart checkout=======================*/
/*checkout table*/

#prod-cart {
  text-align: center;
  background: var(--color-text);
  padding-bottom: 20px;
}

#prod-cart .tbllist .tbl th {
  font-weight: 500;
  color: var(--color-text);
}

#prod-cart .tbllist.rounded.spacer input[type="button"] {
  padding: 5px;
  color: var(--color-background);
  border: 0px solid;
  border-radius: 5px;
}

#prod-cart .tbllist {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#prod-cart .tbllist form table tfoot td#total {
  color: #ff0f0f;
  font-weight: bold;
}

#prod-cart .tbllist form table tr td {
  padding: 5px;
}

#prod-cart .tbllist form table td#photo img {
  width: 100%;
  min-width: 50px;
  height: fit-content;
}

#prod-cart .tbllist form table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}
#prod-cart .tbllist form table tr {
  color: var(--color-light-7);
  border-bottom: 1px solid var(--color-light-1);
}

#prod-cart .tbllist form table input[value="EMPTY"] {
  background: transparent;
}

#prod-cart .tbllist form tr #photo {
  padding: 3px;
}

#prod-cart .tbllist.rounded.spacer tr th {
  background: var(--color-primary) !important;
  text-align: center;
  padding: 5px;
}

#prod-cart .tbllist .tbl tfoot td {
  padding: 3px 8px;
  background: transparent;
}

#prod-cart input[type="text"] {
  box-shadow: none;
  margin-top: 0px;
}

#prod-cart .tbllist #qty input[type="text"] {
  border: 0px solid #ed0306;
}

#prod-cart #continue-shopping a {
  max-width: 200px;
  transition: all 0.2s ease;
  margin: 30px auto;
  text-transform: capitalize;
  font-weight: normal;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  position: relative;
  min-width: 80px;
  background: var(--color-primary);
  height: 35px;
  border-radius: 5px;
  color: var(--color-background);
  font-size: 14px;
  padding: 2px 10px;
  box-shadow: #e0c7ae 0px -2px inset;
}
#prod-cart #continue-shopping a:hover {
  filter: contrast(0.9);
}

#prod-cart .alert-warning {
  padding: 10px;
  width: 300px;
  margin: auto;
  border-radius: 6px;
}

#prod-cart #control ul {
  list-style: none;
  padding: 0;
  margin: auto;
}

#prod-cart #icon-delete a {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url();
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  margin-top: 5px;
  border: none;
  cursor: pointer;
}

/*================checkout login========================*/
#theme-contain-prod #remoteloginform,
#theme-contain-prod #customform {
  width: 300px;
  margin: auto;
  text-align: center;
  background: var(--color-light-1);
  padding: 16px;
  border-radius: 6px;
}

#theme-contain-prod #remoteloginform .caption,
#theme-contain-prod #customform .caption {
  display: none;
}

#theme-contain-prod form#customform img {
  width: 100%;
  max-width: 100px;
  margin: 0px auto 10px;
}

#theme-contain-prod input#customform_submit {
}

#sys_msg {
  padding: 5px 20px;
}

#cartlist #price,
#cartlist #total,
#cartlist #weight {
  text-align: center !important;
}

#cartlist #qty {
}

#prod-cart #ref a,
#prod-cart #name a,
#icon-delete a {
  color: var(--color-light-7);
}

#submember-login {
  width: 400px;
  background: #ebf3f5;
  padding: 30px 30px 5px 10px;
  display: block;
  margin: auto;
  border-radius: 20px;
}

/** Casino slots sport fishing **/
.product-game-sec {
  position: relative;
  padding: 50px 0 30px;
}
.display-game-wrap {
  background: var(--color-primary);
  border-radius: 12px;
  border-top: 2px solid #20273b;
  position: relative;
  text-align: center;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  margin-bottom: 20px;
}
.dg-column {
  position: relative;
  padding: 30px 15px;
}
.game-pvd-img {
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.game-pvd-img img {
  max-height: 75px;
}
.dg-subtitle {
  max-width: 380px;
  margin: 0 auto 10px;
  font-size: 15px;
}
.dg-img-column {
  position: relative;
}
.casino-character {
  position: absolute;
}
button.gmplay-btn {
  background: var(--color-primary);
  color: var(--tertiary-text-color);
  height: 45px;
  font-size: 20px;
  min-width: 180px;
  border-radius: 8px;
  padding: 2px 15px;
}
button.gmplay-btn:hover {
  background: var(--color-accent);
  color: var(--secondary-text-color);
}
.dg-img-column {
  position: relative;
  padding: 50px 30px 35px 0;
}
.casino-character {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 48%;
  margin: 0 auto;
  z-index: 3;
}
.casino-character img {
  max-height: 400px;
}
.deco.gold-dice {
  left: 0;
  right: 0;
  top: -7%;
  max-width: 66%;
  margin: 0 auto;
  animation: 2.2s float ease-in-out infinite;
}

ul.nav.nav-provider-game {
  justify-content: center;
  margin: 0 -10px;
}
ul.nav.nav-provider-game li.nav-item {
  max-width: 190px;
  width: 15.5%;
  margin: 0.5%;
}
ul.nav.nav-provider-game a.nav-link:hover {
  background: #141723;
  transition: 0.3s;
}
ul.nav.nav-provider-game a.nav-link {
  background: #2b3048;
  border: 1px solid transparent;
  border-top: 2px solid #535c76;
  border-radius: 10px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: 0.3s;
}
ul.nav.nav-provider-game a.nav-link img {
  max-height: 50px;
  max-width: 90%;
}
ul.nav.nav-provider-game .nav-item.active .nav-link {
  background-color: #2b3048;
  background: linear-gradient(
    180deg,
    rgba(43, 50, 72, 1) 0%,
    rgba(44, 59, 72, 0.9248949579831933) 40%,
    rgb(108 48 161) 100%
  );
  border: 1px solid var(--secondary-color);
}
.sport-template {
  background: var(--color-primary);
  padding: 30px 20px 45px;
  border-radius: 20px;
  margin-bottom: 30px;
}
.sports-character {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 50%;
  margin: 0 auto;
  z-index: 3;
}
#api-leaguefeed {
  position: unset !important;
  text-align: center;
  height: unset !important;
}

#api-leaguefeed .brick {
  min-width: calc(20% - 10px);
  min-height: 178.17px;
  height: auto !important;
  margin: 5px;
  position: unset !important;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  border: 1px solid transparent;
  border-top: 2px solid #535c76;
  border-radius: 10px;
  background: #2b3048 !important;
}

#api-leaguefeed .brick > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#api-leaguefeed .brick > ul > li {
  padding: 5px 10px;
}

#api-leaguefeed #playtime {
  background: var(--secondary-color);
  color: var(--tertiary-text-color);
  text-align: center;
  border-radius: 10px 10px 0 0;
}
#api-leaguefeed #livetv a:hover {
  transition: 0.3s;
  filter: brightness(1.3);
}
#api-leaguefeed #livetv a,
#api-leaguefeed #livetv a:visited {
  display: block;
  color: var(--tertiary-text-color);
  text-decoration: none;
  text-align: center;
  background: var(--color-primary);
  padding: 10px;
  border-radius: 10px;
  transition: 0.3s;
}

#api-leaguefeed #versus {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 0;
}

#api-leaguefeed #versus div:nth-child(1) {
  color: #0080ff;
}

#api-leaguefeed #versus div:nth-child(2) {
  color: var(--black-color);
  font-size: 12px;
}

#api-leaguefeed #versus div:nth-child(3) {
  color: red;
}

.deco.baseball {
  left: 17%;
  top: 38%;
  max-width: 11%;
  animation: 2.2s float ease-in-out infinite;
}
.deco.pingpong {
  right: 11%;
  top: 11%;
  max-width: 16%;
  animation: 2.4s float ease-in-out infinite;
}
.deco.volley {
  left: 19%;
  top: 34%;
  max-width: 13%;
  animation: 2.2s float ease-in-out infinite;
}
.deco.bowling {
  top: 10%;
  right: 14%;
  max-width: 19%;
  animation: 2.4s float ease-in-out infinite;
}
.deco.football {
  left: 15%;
  top: 37%;
  max-width: 15%;
  animation: 2.2s float ease-in-out infinite;
}
.deco.shuttercock {
  top: 9%;
  right: 10%;
  max-width: 16%;
  animation: 2.4s float ease-in-out infinite;
}
.deco.plate {
  left: 17%;
  top: 37%;
  max-width: 16%;
  animation: 2.2s float ease-in-out infinite;
}
.deco.cup {
  right: 11%;
  top: 9%;
  max-width: 23%;
  animation: 2.4s float ease-in-out infinite;
}
.deco.whitsle {
  left: 15%;
  top: 33%;
  max-width: 17%;
  animation: 2.2s float ease-in-out infinite;
}
.deco.cup-2 {
  right: 15%;
  top: 8%;
  max-width: 26%;
  animation: 2.4s float ease-in-out infinite;
}
.gaming-character {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 66%;
  margin: 0 auto;
  z-index: 3;
}
.gaming-character.live22 {
  max-width: 97%;
}
.deco.mahjong {
  left: 19%;
  top: 15%;
  max-width: 18%;
  animation: 2.2s float ease-in-out infinite;
}
.deco.pussy {
  left: 17%;
  top: 33%;
  max-width: 18%;
  animation: 2.2s float ease-in-out infinite;
}
.deco.ace {
  left: 23%;
  top: 33%;
  max-width: 11%;
  animation: 2.2s float ease-in-out infinite;
}
.deco.gold {
  right: 21%;
  top: 22%;
  max-width: 18%;
  animation: 2.4s float ease-in-out infinite;
}
.deco.bomb {
  left: 21%;
  top: 10%;
  max-width: 14%;
  animation: 2.4s float ease-in-out infinite;
}
.deco.seven {
  right: 15%;
  top: 21%;
  max-width: 15%;
  animation: 2.2s float ease-in-out infinite;
}
.deco.wild {
  left: 20%;
  top: 10%;
  max-width: 20%;
  animation: 2.4s float ease-in-out infinite;
}
.fish-character {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 62%;
  margin: 0 auto;
  z-index: 3;
}
.deco.joker {
  left: 16%;
  top: 8%;
  max-width: 11%;
  animation: 2.2s float ease-in-out infinite;
}
.deco.jili {
  left: 10%;
  top: -4%;
  max-width: 17%;
  animation: 2.2s float ease-in-out infinite;
}
.deco.dolly {
  left: 11%;
  top: 31%;
  max-width: 17%;
  animation: 2.2s float ease-in-out infinite;
}
.deco.rocket {
  left: 13%;
  top: 56%;
  max-width: 15%;
  animation: 2.2s float ease-in-out infinite;
}
.deco.firefish {
  right: 13%;
  top: 28%;
  max-width: 19%;
  z-index: 3;
  animation: 2.4s float ease-in-out infinite;
}

/** Slots **/
.slots-sec {
  padding-bottom: 30px;
}
.slots-top-banner {
  position: relative;
}
.deco.slotdeco-1 {
  left: 9%;
  top: 9%;
  max-width: 12%;
  animation: 2.4s float ease-in-out infinite;
}
.deco.slotdeco-2 {
  left: 4%;
  top: 48%;
  max-width: 9%;
  animation: 2s float ease-in-out infinite;
}
.deco.slotdeco-3 {
  right: 14%;
  top: 12%;
  max-width: 8%;
  animation: 1.2s zooming infinite;
}
.deco.slotdeco-4 {
  right: 6%;
  top: 49%;
  max-width: 11%;
  animation: 2.2s float ease-in-out infinite;
}
@-webkit-keyframes zooming {
  0% {
    transform: scale(1.1);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}
.slots-lobby-container {
  background: #161b2a;
  padding: 30px;
  border-radius: 30px;
  border-top: 3px solid #20273b;
  display: grid;
  grid-template-columns: 200px auto;
  grid-gap: 15px;
  position: relative;
  max-width: 1200px;
}
.slot-filter-wrap {
  display: flex;
  justify-content: space-between;
  padding: 0 0 20px;
}
button.sfbtn {
  background: #293146;
  border: none;
  color: var(--tertiary-text-color);
  font-size: 15px;
  font-weight: 500;
  padding: 3px 10px;
  height: 35px;
  border-radius: 7px;
  min-width: 75px;
  position: relative;
}
button.sfbtn.active,
button.sfbtn:hover {
  background: var(--color-primary);
  color: var(--tertiary-text-color);
}
.slot-search-box {
  position: relative;
  background: #2b3348;
  border-radius: 7px;
  display: grid;
  grid-template-columns: auto auto;
  height: 33px;
  max-width: 185px;
}
input.slots-input {
  background: none;
  border: none;
  height: 33px;
  padding: 5px 10px;
  color: var(--tertiary-text-color);
  width: 160px;
}
button.slot-search-btn {
  background: none;
  border: none;
  color: #666a73;
  padding: 5px;
}
input.slots-input::placeholder {
  color: #707f8d;
}
.slots-provider {
  background: #1b2132;
  border-top: 2px solid #20273b;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: fit-content;
}
a.spvdbox {
  display: block;
  color: var(--tertiary-text-color);
  font-size: 15px;
  padding: 5px 4px 4px 20px;
  position: relative;
  overflow: hidden;
  height: 55px;
  display: flex;
  align-items: center;
}
a.spvdbox.active,
a.spvdbox:hover {
  background: #445a71;
  color: var(--tertiary-text-color);
  font-weight: 500;
}
.hot-slot {
  background: var(--color-primary);
  color: var(--tertiary-text-color);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  width: 80px;
  padding: 17px 2px 3px;
  text-align: center;
  transform: rotateZ(39deg);
  position: absolute;
  right: -31px;
  top: -9px;
  box-shadow: 0 0px 4px rgb(0, 0, 0, 0.4);
  z-index: 2;
}
.pdv-icon {
  margin-right: 8px;
}
.slots-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
}
.slotgbox {
  position: relative;
  max-width: 180px;
  margin: 0 auto;
  display: inline-block;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
}
.slot-tumbnail {
  overflow: hidden;
}
.slot-tumbnail img {
  object-fit: cover;
  width: 100%;
}
.slot-name {
  background: #070f25;
  color: var(--tertiary-text-color);
  height: 50px;
  font-size: 13px;
  text-align: center;
  padding: 5px 5px;
  overflow: hidden;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-hover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
}
.slotgbox:hover .play-hover {
  visibility: visible;
  opacity: 1;
  transition: 0.2s;
}
button.playslot-btn {
  background: var(--color-primary);
  color: var(--tertiary-text-color);
  border: none;
  text-transform: uppercase;
  font-size: 14px;
  min-width: 110px;
  padding: 7px;
  margin: 5px 0px;
  border-radius: 7px;
  transform: scale(0.3);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
button.playslot-btn.demo {
  background: #081420;
  border: 1px solid #ffe27f;
  color: #ffe27f;
  transform: scale(0.3);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
button.playslot-btn:hover {
  transform: scale(0.97);
  filter: brightness(1.07);
  box-shadow: 0 0 10px -1px var(--color-primary);
}
.slotgbox:hover .play-hover button.playslot-btn {
  transition: 0.2s;
  transform: scale(1);
  visibility: visible;
  opacity: 1;
}

/** VIP **/
.vip-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vip-slider .vipCell {
  font-size: 14px !important;
}
.vip-slider .vipCell.vipCellH2 {
  font-size: 12px !important;
}
.viptitle2 {
  font-size: 18px;
  color: var(--color-light-7);
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

.vip-level-card {
  width: 100%;
}
.darkMode .vip-arrow {
  color: var(--color-text);
}
.vip-arrow {
  position: absolute;
  top: calc(104px - 16px);
  color: var(--color-light-7);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, opacity 0.2s;
}
.vip-arrow.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.vip-arrow.right {
  right: 0;
}
.vip-arrow.left {
  left: 0;
}
.vip-slide {
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  width: 100%;
  gap: 12px;
  opacity: 0;
  transition: all 0.6s ease;
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 0 75px;
}
.vip-slide.active {
  opacity: 1;
  z-index: 9;
  transform: translateX(0);
  position: relative;
}
.vip-slide {
  padding: 0;
  flex-direction: column;
}
.vip-level-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex: 1;
  position: relative;
}
.vip-level-image img {
  width: 100%;
  max-width: 208px;
  height: 208px;
  z-index: 2;
  position: relative;
}

.darkMode .vipRules {
  background: var(--color-surface);
}
.darkMode .viptitle {
  color: var(--color-text);
}
.uw99card {
  width: 100%;
  max-width: 848px;
  display: block;
  margin: auto;
  margin-top: 80px;
}
.viptitle {
  font-size: 40px;
  color: var(--color-light-7);
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 70px;
  margin-top: -20px;
}
.golden {
  color: var(--color-primary);
}
.new-vip-banner {
  position: relative;
}
.vipbanner-d {
  height: 325.66px;
  object-fit: cover;
  border-radius: 10px;
}
.vipbanner-m.mobile {
  width: 100%;
  margin-top: 10px;
}
.right-vip {
  position: absolute;
  width: 45%;
  top: 50%;
  transform: translateY(-50%);
  left: 55%;
  padding-right: 5%;
}
.vip-logo {
  width: 107px;
  margin-bottom: 15px;
}
.right-vip h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--color-text);
  text-transform: uppercase;
  margin: 0;
}
.right-vip h3 {
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 21px;
  margin: 15px 0;
}
.right-vip p {
  margin: 0;
  color: var(--color-text);
  margin-bottom: 15px;
}
.right-vip .pbtn-info {
  width: fit-content;
  border-radius: 5px;
  height: 46px;
  min-width: 129px;
}
.vipWrapper {
  width: 100%;
}

.vipWrapper > div {
  margin-bottom: 0;
  border-radius: 15px;
}

.vipWrapper > h3.golden {
  font-weight: 700;
  font-style: oblique;
  background-image: -webkit-linear-gradient(
    #e9c449 40%,
    var(--color-primary) 70%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 60px;
  margin: 40px 0;
  text-align: center;
  font-size: 56px;
}

.vipBlockHeader {
  background: var(--color-primary);
  color: var(--color-light-7);
  font-size: 26px;
  font-weight: bold;
  padding: 20px 0;
  text-align: center;
  border-radius: 15px 15px 0 0;
}

.vipBlockBody {
  padding: 20px 15%;
  color: var(--color-light-7);
  text-align: center;
  background: var(--color-text);
  border-radius: 0 0 15px 15px;
}

.vipBlockBody p {
  font-size: 14px;
  line-height: 16px;
}

.vipContent {
  width: 100%;
  display: block;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: var(--color-text);
  margin-bottom: 0;
  padding: 16px;
  border-radius: 10px;
}

.vipTable {
  display: table;
  border-spacing: 0;
  margin: 0;
  width: 100%;
}
.vipTable .vipCell {
  display: table-cell;
  flex: 1;
  padding: 4px 8px;
  font-size: 12px;
  text-align: center;
  min-width: 100px;
}
.vipTable .vipCell p {
  margin-bottom: 0;
}
.vipTable .vipCell.vipCellH2 {
  font-size: 12px;
  font-weight: bold;
  color: var(--color-light-7);
  flex: 2;
  padding: 5px;
  text-align: left;
  line-height: 1.2;
}
.vip-term-title {
  color: var(--color-primary);
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}

.vipTable .vipCell.vipCellH1 {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-primary);
  flex: 2;
  padding: 5px;
  text-align: left;
}
.vipTable .vipRow:nth-child(1) {
  border-top: 1px solid #c9c9c9;
}
.darkMode .vipTable .vipRow:nth-child(1) {
  border-top: 1px solid #383f56;
}
.goldtext {
  color: var(--color-primary);
}
table.vip-table tr td.whtext {
  color: var(--color-primary);
}
.vip-highlight {
  background: var(--color-primary);
}
.sopnImg.uw88_platinum,
.sopnImg.uw88_diamond,
.sopnImg.uw88_ruby,
.sopnImg.uw88_gold,
.sopnImg.uw88_silver,
.sopnImg.uw88_steel,
.sopnImg.uw88_classic {
  display: block;
  width: 100%;
  height: 132px;
  margin-bottom: -10px;
}
.sopnImg.uw88_diamond {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/Group-diamond.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.sopnImg.uw88_platinum {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/Group-platinum.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.sopnImg.uw88_gold {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/Group-gold.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.sopnImg.uw88_silver {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/Group-Silver.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.sopnImg.uw88_steel {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/Group-steel.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.sopnImg.uw88_classic {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/Group-bronze.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.vipRules {
  margin-top: 40px;
  padding: 40px 30px;
  background: var(--color-text);
  border-radius: 10px;
}
.vipTable .vipRow {
  color: var(--color-light-7);
  font-size: 14px;
  line-height: 1;
  display: flex;
  padding: 20px 0;
  align-items: center;
  border-bottom: 1px solid #c9c9c9;
}
.sponBar.vip p {
  color: var(--color-light-7);
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  margin-top: 5px;
}

.sponBar.vip ul {
  list-style: none;
  padding: 0;
  text-align: center;
  margin: 0;
}
.vipRules li {
  color: var(--color-light-7);
  font-size: 14px;
  padding-bottom: 0;
  margin: 0;
}
.vipRules ul {
  padding-left: 20px;
  list-style: auto;
  margin-bottom: 0;
}

/** Promotion **/
.promotion-sec {
  padding: 0;
}
.mix {
  display: none;
}
.filter-menu {
  background: #141724;
  padding: 3px;
  border-radius: 45px;
  margin: 0 0 15px;
  max-width: fit-content;
}
.pmbox {
  position: relative;
  display: inline-block;
  margin: 2px 5px;
  color: var(--color-light-6);
  min-width: 55px;
  text-align: center;
  border-radius: 45px;
  cursor: pointer;
  padding: 0 12px;
}
.pmbox-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
}
.pmbox.active,
.pmbox:hover {
  background: var(--color-accent);
  color: var(--tertiary-text-color);
}
.promo {
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
ul#promo-tab {
  display: flex;
  padding: 0;
  border-radius: 45px;
  margin: 0 0 15px;
  max-width: fit-content;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: auto;
}
ul#promo-tab li {
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  display: inline-block;
  margin: 2px 5px;
  color: var(--color-light-6);
  background: var(--color-text);
  border: 3px solid var(--color-text);
  white-space: nowrap;
  text-align: center;
  border-radius: 45px;
  cursor: pointer;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 35px;
}
ul#promo-tab li:not(.inactive),
ul#promo-tab li:hover {
  background: var(--color-text);
  color: var(--color-background);
  border: 3px solid var(--color-primary);
}
ul#promo-tab li:first-child {
  margin-left: 0;
}
span.total {
  padding-left: 7px;
  color: #ec1c12;
}

.promo-content ol#faq_modal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  gap: 20px;
}
.promo-content ol#faq_modal li.question {
  width: 100%;
  list-style: none;
  margin: 0;
}

.promo a {
  color: var(--color-light-7);
  text-decoration: none;
}

.promo-img {
  border-radius: 0;
  overflow: hidden;
}
.promo-img img {
  border-radius: 3px 3px 0 0;
}
.promo-banner-popup img {
  border-radius: 3px 3px 0 0;
  width: 100%;
}
.promo-banner-popup {
  padding: 0 !important;
}

.promo-txt {
  position: relative;
  background: var(--color-text);
  border-radius: 0 0 10px 10px;
  padding: 15px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.promo-txt h3 {
  font-weight: bold;
  margin: 0;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-transform: uppercase;
}
.promo {
  padding: 0;
}

.promo-btn {
}
.promo-btn span {
  color: #ec1c12;
}
.promo-btn a,
.pbtn-apply a {
  color: var(--tertiary-text-color);
  text-decoration: none;
  font-weight: bold;
}
.pbtn-info:hover {
  filter: contrast(0.9);
}
.pbtn-info,
.pbtn-apply {
  color: var(--color-background);
  font-weight: 600;
  background-color: var(--color-primary);
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  white-space: nowrap;
}
.fancybox-wrap {
  width: 60% !important;
  margin: auto !important;
  left: 0 !important;
  right: 0 !important;
}
.fancybox-skin {
  border-radius: 20px;
  background: transparent;
}

.fancybox-inner {
  width: 100% !important;
  background-color: #1f1f1f;
}
.fancybox-inner p {
  color: var(--color-light-10);
}
.fancybox-inner h4 {
  margin: 0;
  display: none;
}

.fancybox-inner .promo-header {
  padding: 10px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: var(--tertiary-text-color);
  background: #ec1c12;
  border-radius: 20px 20px 0 0;
}

.fancybox-inner .promo {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 20px;
  border-bottom: 1px solid #313131;
}
.fancybox-inner .promo-img,
.fancybox-inner .promo-txt {
  border-radius: 0;
  width: 100%;
}

.fancybox-inner .promo-txt {
  color: #5a5a5a;
  background: var(--color-background);
  font-size: 12px;
}
.fancybox-inner .promo-txt h3 {
  font-size: 14px;
}
.fancybox-inner .promo-txt::before,
.fancybox-inner .promo-txt::after {
  display: none;
}
.fancybox-inner .promo-btn {
  padding-bottom: 10px;
}

.fancybox-inner > div > div {
  padding: 20px;
}
.fancybox-inner > div > h4,
.fancybox-inner > div > p {
  margin: 0;
}

.fancybox-inner ol li {
  color: #9a9a9a;
  font-size: 14px;
}
.fancybox-inner table {
  width: 100%;
}

.fancybox-close {
  top: -16px;
  right: -16px;
}
.pbtn-apply:hover {
  filter: brightness(1.3);
}
.pbtn-apply {
  background: var(--color-primary);
  display: none;
}
.promo-bx {
  margin: 5px 0;
}

.pm-img {
  overflow: hidden;
  border-radius: 8px;
}
.pm-detail-wrap {
  position: relative;
}
.pmtag {
  position: relative;
  margin: 5px 0;
}
.tagbox {
  display: inline-block;
  vertical-align: text-top;
  background: #383d4f;
  margin: 0 5px 0 0;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}
.sm-promo-title {
  color: var(--color-background);
  font-size: 18px;
  font-weight: 500;
  margin: 5px 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.smpromo-caption {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 5px 0;
}
.more-info-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
}
button.pm-more-btn {
  background: var(--color-primary);
  color: var(--tertiary-text-color);
  min-width: 130px;
  height: 35px;
  border-radius: 6px;
  border: 1px solid var(--color-primary);
}
button.pm-more-btn:hover {
  background: transparent;
  color: var(--color-background);
}
#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #04aa6d;
  color: white;
}
.uwwpromo-content img {
  width: 100%;
}
.uwwpromo-content {
  color: var(--color-light-7);
}
.uwwpromo-content h1 {
  line-height: 24px;
  color: var(--color-primary);
  margin-top: 0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20pt;
}
.uwwpromo-content h2 {
  margin-top: 0;
  line-height: 24px;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 16pt;
}
.uwwpromo-content h3 {
  color: #a06b6b;
}
.uwwpromo-content ul {
  padding-left: 30px;
}
.uwwpromo-content ul li {
  color: var(--color-light-10);
}
.fancybox-inner table tr td {
  border: 1px solid #888;
  padding: 5px;
}
.fancybox-inner table tr th {
  padding: 5px;
}

/** Info Pages **/
.info-page-sec {
  position: relative;
  padding: 5px 0 30px;
}
.infopage-container {
  display: grid;
  grid-template-columns: 250px auto;
  grid-gap: 15px;
}
.info-menu-wrap {
  background: var(--color-primary);
  border-radius: 16px;
  padding: 15px;
  height: fit-content;
}
a.infolink {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  color: var(--tertiary-text-color);
  font-size: 15px;
  padding: 5px 10px 5px 20px;
  margin: 5px 0;
  border-radius: 45px;
}
a.infolink.active,
a.infolink:hover {
  background: var(--color-accent);
  color: var(--color-background);
}
.info-content {
  background: var(--color-primary);
  border-radius: 16px;
  padding: 30px;
}
.info-title {
  font-size: 24px;
  font-weight: 500;
  padding: 0 20px 5px;
}
.info-divider {
  height: 2px;
  background: var(--color-primary);
  width: 100%;
  margin: 20px 0;
}
.info-content-inner {
  padding: 0 15px;
  line-height: 1.4;
  color: #adadad;
}
table.banking-table tr td {
  background: #0c293b;
  border: 1px solid #465a66;
  text-align: center;
  padding: 6px 2px;
}
table.banking-table tr td.bktitle {
  background: #051a27;
}
.tnc-card {
  margin-bottom: 7px;
}
button.btn-tnc {
  background: var(--color-primary);
  font-weight: 600;
  color: var(--tertiary-text-color);
  width: 100%;
  text-align: left;
  padding: 5px 35px 5px 20px;
  height: 42px;
  border-radius: 6px;
  position: relative;
  line-height: 1;
}
button.btn-tnc.collapsed {
  background: var(--color-accent);
  color: var(--tertiary-text-color);
  font-weight: 500;
}
button.btn-tnc::after {
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  color: var(--tertiary-text-color);
  right: 15px;
  top: 13px;
}
button.btn-tnc.collapsed::after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  color: var(--color-background);
}
.tnc-body {
  padding: 10px;
}
.contactbox {
  background: rgb(0, 0, 0, 0.2);
  max-width: 180px;
  width: 100%;
  margin: 10px;
  display: inline-block;
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
}
.ct-icon {
  font-size: 50px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.ct-detail {
  background: var(--color-accent);
  color: var(--tertiary-text-color);
  font-weight: 600;
  font-size: 16px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-detail a {
  color: var(--tertiary-text-color);
}
.ct-icon img {
  max-height: 90px;
}
.contactbox:hover .ct-detail {
  background: var(--color-primary);
}

/** Afterlogin Pages **/
.deposit-sec {
  position: relative;
  padding: 30px 0 30px;
}
.quick-menu-wrapper {
  padding-bottom: 15px;
  display: none;
}
.topmain-btn {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  grid-gap: 1%;
}
a.tpm-btn {
  background: var(--color-primary);
  color: var(--tertiary-text-color);
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  border-radius: 10px;
  padding: 10px 0;
}
a.tpm-btn.active {
  background: var(--color-accent);
}
a.tpm-btn img {
  margin-bottom: 4px;
  filter: contrast(0) brightness(10);
  max-height: 30px;
}
a.tpm-btn.active img {
  filter: contrast(1) brightness(1);
}
.af-container {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px auto;
  grid-gap: 15px;
  position: relative;
}
.player-vip-box {
  background: url() no-repeat;
  background-size: cover;
  border-radius: 20px;
  text-align: center;
  padding: 10px 10px 15px;
  margin-bottom: 15px;
}
.vip-badge-img {
  max-width: 120px;
  margin: -40px auto 10px;
  position: relative;
}
.mblvl-text-1 {
  font-size: 13px;
}
a.info-vip {
  color: var(--color-background);
  margin: 0 5px;
}
.mblvl-text-2 {
  color: var(--color-background);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
}
.afmenu-box {
  background: var(--color-primary);
  border-radius: 25px;
  padding: 20px 20px;
}
ul.nav.afmenuside-nav {
  flex-direction: column;
}
ul.nav.afmenuside-nav li.nav-item {
  margin-bottom: 5px;
}
ul.nav.afmenuside-nav li.nav-item a.mslink {
  display: block;
  color: var(--tertiary-text-color);
  padding: 2px 20px;
  border-radius: 45px;
  font-size: 16px;
  height: 42px;
  display: flex;
  align-items: center;
  position: relative;
}
.afn-icon {
  margin-right: 15px;
}
.afn-icon img {
  max-height: 24px;
  filter: brightness(10) contrast(1);
}
.deposit-note {
  background: var(--color-primary);
  border-radius: 25px;
  padding: 25px;
  margin-top: 15px;
}
.important-note {
  margin-bottom: 10px;
}
.important-note i {
  color: #ff0004;
  margin-right: 5px;
}
.deposit-note ul {
  font-size: 12px;
  color: #c2c2c2;
  margin-bottom: 0;
}
.deposit-note ul li {
  padding: 2px 0;
}
.deposit-note.mobile {
  display: none;
  padding: 15px 0;
}
ul.nav.afmenuside-nav li.nav-item a.mslink.active,
ul.nav.afmenuside-nav li.nav-item a.mslink:hover {
  background: var(--color-accent);
  color: var(--color-background);
}
ul.nav.afmenuside-nav li.nav-item a.mslink.active img,
ul.nav.afmenuside-nav li.nav-item a.mslink:hover img {
  filter: brightness(1) contrast(1);
}
.af-submenu-box {
  position: relative;
  padding: 0 5px 0 35px;
  margin-top: 5px;
}
.af-submenu-box::before {
  content: "";
  background: #78848b;
  height: 100%;
  width: 2px;
  margin: auto;
  position: absolute;
  left: 21px;
  top: 0;
}
.af-submenu-box a {
  display: block;
  color: var(--tertiary-text-color);
  margin: 3px 0;
  padding: 10px 15px;
  border-radius: 8px;
}
.af-submenu-box a:hover,
.af-submenu-box a.active {
  background: linear-gradient(
    to left,
    rgba(248, 236, 127, 1) 0%,
    rgba(201, 158, 66, 1) 100%
  );
  color: #0a1941;
}
.afcolumn-right {
  position: relative;
}
.afinner {
  border-radius: 25px;
  overflow: hidden;
}
.mainwallet-wrap {
  background: var(--color-primary);
  padding: 25px 35px;
  display: grid;
  grid-template-columns: 54% 45%;
  grid-gap: 1%;
  border-radius: 0 0 25px 25px;
}
.mwtext {
  color: var(--color-background);
  font-size: 15px;
  padding: 5px 0;
  height: 38px;
}
button.restore-btn {
  border: 1px solid var(--color-primary);
  border-radius: 45px;
  color: var(--tertiary-text-color);
  padding: 5px 10px;
  font-size: 14px;
  margin: 0 2px 0 10px;
}
button.restore-btn i {
  color: var(--color-background);
  margin-right: 5px;
}
button.restore-btn:hover {
  background: var(--color-primary);
}
button.restore-btn:hover i {
  color: var(--tertiary-text-color);
}
.info-restore {
  position: relative;
  cursor: pointer;
}
.info-wrap {
  position: absolute;
  color: var(--tertiary-text-color);
  width: 120px;
  background: rgb(0, 0, 0, 0.8);
  left: 105%;
  top: 0;
  font-size: 11px;
  padding: 6px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
}
.info-restore:hover .info-wrap {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
button.redeem-btn {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 45px;
  color: var(--tertiary-text-color);
  padding: 5px 14px;
  font-size: 14px;
  margin-left: 10px;
  vertical-align: middle;
}
button.redeem-btn:hover {
  background: none;
}
.mwbalance {
  font-size: 38px;
  font-weight: 700;
}
sup.crt-my {
  text-transform: uppercase;
  font-size: 50%;
  color: var(--color-background);
  top: -0.8em;
}
button.reload-btn {
  background: none;
  border: none;
  font-size: 21px;
  color: var(--color-background);
  padding: 0px 5px 7px;
  vertical-align: middle;
}
button.reload-btn:hover {
  color: var(--tertiary-text-color);
}
button.reload-btn:hover i {
  transform: rotate(180deg);
  transition: 0.3s;
}
.frame-container {
  margin-top: 10px;
}
.aform-wrapper {
  background: #161b2a;
  padding: 15px 25px;
  height: 100%;
  color: var(--tertiary-text-color);
  border-radius: 25px 25px 0 0;
}
.aform-wrapper.trans {
  border-radius: 25px;
  margin-bottom: 15px;
}
.af-submenu-wrap {
  padding: 5px 0 20px;
}
a.afsub-btn {
  background: #2b3247;
  color: var(--tertiary-text-color);
  border-radius: 10px;
  border: none;
  padding: 6px 5px;
  margin: 0.5% 0.5% 0.5% 0;
  display: inline-block;
  min-width: 170px;
  text-align: center;
  font-size: 15px;
}
a.afsub-btn.active,
a.afsub-btn:hover {
  background: #535e76;
}
.aficon {
  margin-right: 15px;
}
.aficon img {
  max-height: 30px;
}
.afsub-btn.active .aficon img,
.afsub-btn:hover .aficon img {
  filter: contrast(1) brightness(5);
}
.af-field-wrap {
  display: grid;
  grid-template-columns: 160px auto;
  grid-gap: 5px;
  margin-bottom: 10px;
}
.label-col {
  color: var(--color-background);
  font-weight: 500;
  padding-top: 10px;
}
.redtext {
  color: #f00;
}
.af-field {
  position: relative;
}
input.afinput,
select.afinput,
textarea.afinput {
  background: #2b3247;
  color: var(--tertiary-text-color);
  border: none;
  height: 40px;
  padding: 4px 15px;
  border-radius: 8px;
  width: 100%;
}
input.afinput::placeholder {
  color: #c5c5c5;
}
button.qamt-btm {
  background: #212738;
  color: var(--tertiary-text-color);
  border: none;
  font-weight: 600;
  font-size: 15px;
  min-width: 75px;
  border-radius: 8px;
  padding: 11px 5px;
  margin: 7px 5px 0 0;
}
button.qamt-btm:hover {
  background: #535e76;
}
.bank-depo-option.banking .bank-acct-btn img {
  max-height: 35px;
}
.afinput.upload {
  padding: 8px 15px;
}
.bank-pay {
  position: relative;
  cursor: pointer;
  margin-right: 5px;
  display: inline-block;
  max-width: 130px;
  width: 100%;
  vertical-align: text-top;
}
.input-hide input {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
}
.bank-acct-btn {
  position: relative;
  background: #2b3247;
  text-align: center;
  border-radius: 10px;
  display: block;
  cursor: pointer;
  padding: 12px 5px;
}
.bank-acct-btn img {
  position: relative;
  max-height: 30px;
}
.input-hide[type="radio"],
.input-hide input[type="checkbox"] {
  appearance: none;
  display: none;
}
.input-hide .bank-pay input:active + .bank-acct-btn,
.input-hide .bank-pay input:checked + .bank-acct-btn {
  background: #535e76;
}
.bank-acct-btn.bnk {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--tertiary-text-color);
  padding: 5px;
}
label.bank-acct-btn.bnk img {
  max-height: 35px;
  margin-right: 10px;
}
.banking .bank-acct-btn {
  font-size: 13px;
  font-weight: 500;
  color: #f8f8f8;
}
.banking .bank-acct-btn img {
  margin-bottom: 5px;
}
.greytext {
  color: #535e76;
  font-size: 14px;
}
.agree-af-wrap {
  display: grid;
  grid-template-columns: 35px auto;
  padding: 15px 0;
}
.agree-depo {
  color: #8e8e8e;
  font-size: 13px;
  padding: 2px;
}
.agree-depo a {
  color: var(--color-background);
}
.af-field-submit {
  padding: 15px 0;
  text-align: center;
}
.how-depo-wrap {
  font-size: 14px;
  font-weight: 500;
  text-align: right;
  margin-right: 20px;
  margin-bottom: 15px;
}
.how-depo-wrap a {
  color: #ccc;
}
.how-depo-wrap a i {
  color: #ccc;
}
.how-depo-wrap a:hover {
  color: var(--color-background);
}
.wbank-table {
  text-align: center;
  margin-bottom: 20px;
}
.transfrom-amt-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  position: relative;
  grid-gap: 30px;
  padding: 15px 0px;
  max-width: 720px;
  margin: 0 auto;
}
.trans-card {
  background: #2b3247;
  border-radius: 10px;
  padding: 15px 20px 25px;
}
.tc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  padding-bottom: 10px;
}
button.max-btn {
  background: none;
  border: 1px solid var(--color-text);
  color: var(--tertiary-text-color);
  padding: 1px 7px;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 14px;
}
button.max-btn:hover {
  background: var(--color-primary);
  color: var(--tertiary-text-color);
  border: 1px solid var(--color-primary);
}
.prod-amt-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 0;
}
select.trans-input {
  background: none;
  color: var(--tertiary-text-color);
  border: none;
  width: 150px;
  font-weight: 600;
  padding: 0;
}
select.trans-input option {
  color: var(--color-background);
}
input.trans-input-1 {
  text-align: right;
  background: none;
  border: none;
  color: var(--tertiary-text-color);
  font-size: 24px;
  font-weight: 600;
}
input.trans-input-1.edit {
  padding-right: 25px;
}
input.trans-input-1::placeholder {
  color: #c5c5c5;
}
.pdatext {
  font-size: 12px;
  color: #607e8f;
  font-weight: 500;
}
.edit-icon {
  position: absolute;
  right: 0;
  top: 7px;
}
input.trans-input-1.locked {
  color: #607e8f;
}
.swap-icon {
  text-align: center;
  max-width: 42px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
}
button.swap-btn {
  background: none;
  border: none;
  padding: 0;
  position: relative;
  z-index: 2;
}
button.swap-btn:hover {
  transform: scale(0.96);
  filter: brightness(1.07);
}
.trans-note {
  max-width: 450px;
  margin: 0 auto;
  border: 2px solid #c5c5c5;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 30px auto;
  color: #c5c5c5;
  padding: 15px;
  font-size: 13px;
}
button.balance-btn {
  background: var(--color-accent);
  color: var(--tertiary-text-color);
  border: none;
  padding: 15px 38px;
  font-weight: 700;
  font-size: 18px;
  width: 100%;
  text-align: left;
  position: relative;
}
button.balance-btn::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  color: var(--tertiary-text-color);
  right: 30px;
  top: 17px;
  transform: rotate(180deg);
  transition: 0.3s;
}
button.balance-btn.collapsed::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  transform: none;
  transition: 0.3s;
}
.balance-panel {
  background: var(--color-primary);
}
.all-balance-card {
  background: var(--color-primary);
  padding: 20px 30px;
}
.abtitle {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 9px;
}
.pvd-balance-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 8px;
  padding-bottom: 10px;
}
.prvdbox {
  width: 100%;
  background: var(--color-accent);
  padding: 15px 15px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  max-width: 250px;
}
.pvb-col-1 {
  text-align: left;
  font-size: 15px;
  font-weight: 500;
}
button.allin-btn {
  border: 1px solid var(--color-text);
  color: var(--tertiary-text-color);
  background: none;
  border-radius: 5px;
  font-size: 14px;
  text-transform: uppercase;
  padding: 2px 7px;
  margin-top: 6px;
}
button.allin-btn:hover {
  background: var(--color-primary);
  color: var(--tertiary-text-color);
  border: 1px solid var(--color-primary);
}
.pvb-col-2 {
  text-align: right;
  font-size: 18px;
}
.crcy-text {
  font-size: 80%;
}
.date-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.history-date-wrapper {
  display: flex;
  align-items: center;
}
.date-icon {
  position: absolute;
  left: 10px;
  top: 7px;
  color: #78848b;
  font-size: 20px;
}
.hsword {
  margin: 0 5px;
  font-size: 16px;
  font-weight: 600;
  color: #78848b;
}
input.afinput.history {
  background: #2b3247;
  padding-left: 40px;
  max-width: 170px;
}
input#customformv1_submit.history,
input#customform_submit.history {
  height: 40px;
  padding: 5px;
  font-size: 18px;
  min-width: 150px;
  margin-left: 10px;
}
.depo-divider {
  height: 1px;
  background: var(--color-primary);
  margin: 0 auto 15px;
  max-width: 95%;
}
.af-submenu-wrap.history a.afsub-btn {
  min-width: 15.5%;
  font-size: 15px;
  padding: 10px 5px;
}
.history-table-wrap {
  margin: 10px 0;
}
table.history-table {
  text-align: center;
  color: #f8f8f8;
  font-size: 14px;
}
table.history-table tr.hstop td {
  background: #2b3247;
  font-weight: 600;
}
table.history-table tr.hstop td:first-child {
  border-radius: 8px 0 0 8px;
}
table.history-table tr.hstop td:last-child {
  border-radius: 0 8px 8px 0;
}
table.history-table tr td {
  padding: 12px 1px;
}
span.pending-st {
  font-size: 14px;
  font-weight: 500;
  color: #08202f;
  background: #ff9600;
  padding: 1px 5px;
  border-radius: 6px;
}
span.success-st {
  font-size: 14px;
  font-weight: 500;
  color: #08202f;
  background: #49d166;
  padding: 1px 5px;
  border-radius: 6px;
}
span.fail-st {
  font-size: 14px;
  font-weight: 500;
  color: #08202f;
  background: #f05f5f;
  padding: 1px 5px;
  border-radius: 6px;
}
.paginiation-history {
  text-align: center;
  padding: 12px 0;
}
button.page-arrow-btn {
  background: none;
  border: none;
  color: var(--tertiary-text-color);
}
button.page-arrow-btn:hover {
  color: #ffe27f;
}
span.page-num-btn {
  letter-spacing: 1px;
  padding: 0 5px;
}
button.btncopy {
  background: none;
  border: none;
  padding: 0;
  color: var(--tertiary-text-color);
}
button.btncopy:hover {
  color: #ffe27f;
}
.profile-top-wrapper {
  background: #2b3247;
  position: relative;
  padding: 20px 25px;
  border-radius: 10px;
  margin-bottom: 15px;
}
.pf-ftitle {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
}
.pfrow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.pfcol {
  padding-right: 20px;
}
.pfrow .pfcol:last-child {
  border: none;
  padding-left: 20px;
  padding-right: 0;
}
.pf-label {
  color: #c2c2c2;
  font-size: 15px;
  margin-bottom: 0;
}
.pfcol .af-field {
  margin-bottom: 5px;
}
input.profile-input {
  background: none;
  border: none;
  color: var(--tertiary-text-color);
  font-weight: 500;
  font-size: 17px;
  padding: 5px 0;
}
button.edit-btn {
  position: absolute;
  right: 15px;
  top: 6px;
  z-index: 2;
  background: none;
  border: none;
  color: #94b6be;
}
button.edit-btn:hover {
  color: var(--tertiary-text-color);
}
.pfrow-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
  margin-bottom: 15px;
}
.pfcolumn {
  background: #2b3247;
  position: relative;
  padding: 20px 25px;
  border-radius: 10px;
}
.pw-note {
  color: #f8f8f8;
  padding: 5px 0;
}
.pw-btn-wrap {
  padding-top: 15px;
  text-align: center;
}
button.update-btn {
  background: var(--color-primary);
  border: 1px solid transparent;
  color: var(--tertiary-text-color);
  font-size: 15px;
  border-radius: 8px;
  padding: 7px 15px;
  height: 37px;
}
button.update-btn:hover {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-background);
}
.crypto-note {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  background: #161b2a;
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cytext {
  font-weight: 400;
  color: #c2c2c2;
}
.crypto-btn-wrap {
  display: grid;
  grid-template-columns: auto 75px;
  grid-gap: 10px;
  align-items: center;
}
input.crypto-input {
  background: #242a3d;
  height: 37px;
  color: var(--tertiary-text-color);
  border: none;
  padding: 2px 15px;
  border-radius: 8px;
}
button.update-btn.copy {
  padding: 5px;
}
.bank-profile-wrap {
  margin-top: 15px;
}
button.update-btn.add-bank {
  position: absolute;
  right: 25px;
  top: 13px;
}
.bank-pf img {
  max-height: 37px;
}
.bank-profile-wrap table.history-table tr.hstop td {
  background: #161b2a;
  font-weight: 600;
}
.bank-profile-wrap table.history-table {
  font-size: 15px;
}
.pm-box {
  display: grid;
  grid-template-columns: 55% 35% 10%;
  text-align: center;
  color: #f8f8f8;
  padding: 12px 10px;
  border-bottom: 1px solid #2b3247;
  margin: 3px auto;
  cursor: pointer;
}
.pm-box.top-title {
  background: #2b3247;
  font-weight: 600;
  font-size: 17px;
  border-radius: 12px;
  max-width: 100%;
}
.mail-icon {
  position: relative;
}
.unread .mail-icon::after {
  content: "";
  background: #ff0004;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  position: absolute;
  right: -2px;
  top: 0px;
  z-index: 2;
}
.mtitle {
  display: grid;
  grid-template-columns: 26px auto;
  grid-gap: 15px;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
  overflow: hidden;
}
.unread .mtitle {
  font-weight: 700;
}
button.delete-btn {
  background: none;
  color: #f8f8f8;
  border: none;
  padding: 2px;
}
button.delete-btn:hover {
  color: var(--color-background);
}
.mbtext {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.upload-box {
  display: grid;
  grid-template-columns: auto 120px;
  grid-gap: 10px;
}
input.upload-custom {
  position: absolute;
  opacity: 0;
  left: 0;
  right: 0;
  height: 100%;
  cursor: pointer;
}
button.upload-btn {
  background: var(--color-primary);
  color: var(--tertiary-text-color);
  border: none;
  border-radius: 8px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 5px 15px;
  font-size: 15px;
}
.bank-info-depo {
  background: #2b3247;
  padding: 10px;
  max-width: 600px;
  margin-bottom: 30px;
  border-radius: 7px;
}
a.copy-icon {
  color: var(--color-background);
  font-size: 15px;
  margin-left: 5px;
}
.subicon {
  margin-right: 10px;
}
.subicon img {
  max-width: 30px;
}

/** Download Page **/
.t-inner-body.download {
  background: url() no-repeat top center;
  background-size: 100%;
  background-position-y: 55px;
}
.download-sec {
  position: relative;
  padding: 10px 0 30px;
}
.dl-banner {
  position: absolute;
  left: -4%;
  top: 0;
  max-width: 65%;
  margin: 0 auto;
  pointer-events: none;
}
.download-content {
  max-width: 650px;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 2;
}
ul.nav.nav-download {
  justify-content: center;
}
ul.nav.nav-download li.nav-item {
  margin: 0 10px;
}
ul.nav.nav-download li.nav-item a.nav-link {
  background: #283145;
  color: var(--tertiary-text-color);
  width: 150px;
  text-align: center;
  border-radius: 5px;
  padding: 5px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 43px;
}
ul.nav.nav-download li.nav-item a.nav-link i {
  margin-right: 6px;
}
ul.nav.nav-download li.nav-item a.nav-link.active {
  background: var(--color-primary);
}
.download-list-wrapper {
  text-align: center;
}
.download-box {
  display: inline-block;
  background: linear-gradient(
    180deg,
    rgba(43, 50, 72, 0) 6%,
    rgba(43, 50, 72, 0.5999649859943977) 34%,
    rgba(43, 50, 72, 0.8828781512605042) 65%,
    rgba(43, 50, 72, 1) 100%
  );
  text-align: center;
  width: 31%;
  max-width: 190px;
  color: var(--tertiary-text-color);
  margin: 2% 0.5%;
  border-radius: 0 0 10px 10px;
  padding: 0 0 15px;
}
.dl-qr {
  max-width: 130px;
  margin: 5px auto;
}
.device-os {
  letter-spacing: 1px;
  padding: 6px 0;
  font-size: 14px;
}
.android-icon {
  color: #a4c639;
}
button.download-btn {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--tertiary-text-color);
  height: 35px;
  padding: 2px 5px;
  width: 100%;
  max-width: 85%;
  border-radius: 7px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 5px;
}
button.download-btn:hover {
  filter: brightness(1.3);
}

#theme-contain-adminloginx table {
  margin: auto;
}
.darkMode #theme-contain-adminloginx table {
  background: var(--color-surface);
}
.darkMode #theme-contain-adminloginx table tr:nth-child(6) td a {
  color: var(--color-text);
}
#theme-contain-adminloginx table tr td input {
  margin-bottom: 10px;
}
#theme-contain-adminloginx {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 80px;
  padding-bottom: 80px;
}
#theme-contain-adminloginx table {
  margin: auto;
  width: 100%;
  max-width: 500px;
  display: block;
  background: var(--color-text);
  margin-bottom: 0;
  padding: 16px;
  border-radius: 15px;
}
#theme-contain-adminloginx table tr td:first-child {
  display: none;
}
#theme-contain-adminloginx table tr:nth-child(5) td:nth-child(2) {
  display: flex;
  flex-flow: row-reverse;
  gap: 10px;
}
#theme-contain-adminloginx table tr:nth-child(5) td div img {
  width: 100%;
  height: 100%;
  padding-bottom: 10px;
  border-radius: 8px;
}

#theme-contain-adminloginx table tr:nth-child(6) td {
  display: block;
}
#theme-contain-adminloginx table tr:nth-child(6) td a {
  color: var(--color-background);
  margin: 30px 0 0 0;
  font-size: 16px;
}
#theme-contain-adminloginx table tr td input {
  margin-bottom: 10px;
  width: 100%;
  background: var(--color-light-1);
  color: var(--color-background);
  border: none;
  height: 40px;
  padding: 4px 15px;
  border-radius: 8px;
}
#theme-contain-adminloginx table tr:nth-child(6) td input {
  position: relative;
  min-width: 100%;
  background: var(--color-primary);
  height: 40px;
  border-radius: 8px;
  margin: 0;
  color: var(--color-background);
  padding: 2px 10px;
  box-shadow: #e0c7ae 0px -2px inset;
  -webkit-appearance: none;
  font-weight: bold;
  border: 0;
  margin-bottom: 30px;
}
#theme-contain-adminloginx table tbody,
#theme-contain-adminloginx table tbody tr,
#theme-contain-adminloginx table tbody tr td {
  display: block;
}

#faq_fbinner::-webkit-scrollbar {
  display: none;
}

.lobby-btn-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16%;
  text-align: center;
}
button.globby-btn {
  background: var(--color-primary);
  color: var(--tertiary-text-color);
  height: 43px;
  font-size: 18px;
  font-weight: 500;
  min-width: 180px;
  border-radius: 8px;
  padding: 2px 10px;
  box-shadow: 0px 2px 9px rgb(0, 0, 0, 0.5);
}
button.globby-btn:hover {
  transform: scale(0.98);
  background: var(--color-primary);
  box-shadow: 0px 1px 4px rgb(0, 0, 0, 0.5);
}

/** Reward Center Updated - 1/8/2024**/
.player-reward-box {
  background: #131724 url() top center no-repeat;
  background-size: 100%;
  border-radius: 20px;
  text-align: center;
  padding: 10px 15px 20px;
  margin-bottom: 15px;
}

.rwctitle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto 12px;
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 12px;
}

.rwcimg {
  max-width: 90px;
  margin: -25px 15px 0 0;
}

.rwctitle {
  font-size: 24px;
  color: var(--color-background);
  font-weight: 700;
  text-transform: uppercase;
}

button.wdr-btn {
  border: 1px solid var(--color-primary);
  border-radius: 45px;
  color: var(--tertiary-text-color);
  height: 32px;
  padding: 2px 4px;
  font-size: 14px;
  margin: 0 0.5%;
  width: 48%;
}

button.wdr-btn i {
  color: var(--color-background);
  margin-right: 8px;
}

button.wdr-btn:hover {
  background: var(--color-primary);
}

button.wdr-btn:hover i {
  color: var(--tertiary-text-color);
}

.rwcinfo {
  text-align: left;
  padding: 0 10px 10px;
}

.rwrow {
  display: flex;
  align-items: center;
  grid-gap: 0 10px;
  margin: 5px 0 10px;
}

.rwicon {
  color: var(--color-background);
}

.mw2balance {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}

.mw2balance button.reload-btn {
  font-size: 18px;
  padding: 0px 0px 3px;
  margin-left: 5px;
}

.rc-quickgame-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5px;
  margin-top: 2px;
}

.rc-quickgame {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 11px;
  background: var(--color-accent);
  border-radius: 10px;
  padding: 5px 2px;
  vertical-align: text-top;
  cursor: pointer;
}

.rc-quickgame img {
  max-width: 40px;
}

.rc-quickgame a {
  display: block;
}

.rcgtext {
  margin-top: 5px;
  color: var(--tertiary-text-color);
}

.rc-quickgame:hover {
  background: var(--wrapper-bg-color);
}

.rc-quickgame:hover .rcgtext {
  color: var(--color-background);
}

a.mslink.noticed::after {
  content: "!";
  background: #fd0007;
  height: 15px;
  width: 15px;
  color: var(--tertiary-text-color);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
}

.rwc-toptitle {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-background);
  margin-bottom: 20px;
}

.rwcbox-wrap {
  background: var(--color-primary);
  padding: 15px 15px;
  border-radius: 15px;
  position: relative;
  margin: 10px 0;
}

.rwcbox-wrap.claimed {
  filter: grayscale(1);
  pointer-events: none;
}

.rwclaim-upper {
  display: grid;
  grid-template-columns: 360px auto;
  grid-gap: 10px;
}

.rwclaim-img {
  height: 125px;
  overflow: hidden;
  max-width: 360px;
}

.rwclaim-img img {
  object-fit: cover;
  height: 100%;
}

.rwclaim-info {
  display: flex;
  flex-flow: column;
  justify-content: space-around;
}

.rwclaim-top {
  font-size: 20px;
  font-weight: 600;
  overflow: hidden;
}

.rwctext-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.rwctext-2 {
  color: var(--color-background);
  font-size: 90%;
}

.date-legend {
  color: #888888;
  font-size: 13px;
}

.date-legend i {
  margin-right: 5px;
}

.claim-date-text {
  color: var(--tertiary-text-color);
  font-size: 14px;
  font-weight: 600;
  padding-top: 2px;
}

.rwclaim-btm {
  display: grid;
  grid-template-columns: auto 140px;
  grid-gap: 20px;
  margin-top: 5px;
}

.claim-requirement {
  font-size: 12px;
  color: #888888;
  padding: 5px 0px;
}

.claim-date {
  margin-bottom: 7px;
}

button.rw-claim-btn {
  background: var(--color-primary);
  border: 1px solid transparent;
  color: var(--tertiary-text-color);
  font-size: 15px;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 2px 5px;
  height: 37px;
  width: 100%;
  max-width: 140px;
}

button.rw-claim-btn:hover {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-background);
}

.reward-claim-info {
  position: absolute;
  right: 9px;
  top: 7px;
  z-index: 2;
}

button.claim-info {
  background: none;
  border: none;
  padding: 0;
  color: var(--tertiary-text-color);
  font-size: 14px;
}

button.claim-info:hover {
  color: #ffe27f;
}

ul.nav.nav-provider-game.rwcenter li.nav-item {
  width: 23.5%;
}

ul.nav.nav-provider-game.rwcenter a.nav-link:hover {
  background-color: #2b3048;
  background: linear-gradient(
    180deg,
    rgba(43, 50, 72, 1) 0%,
    rgba(44, 59, 72, 0.9248949579831933) 40%,
    rgba(66, 193, 74, 0.5691526610644257) 100%
  );
  border: 1px solid #7b9eac;
}

.modal.left.fade .modal-dialog {
  left: -100%;
  -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
  -o-transition: opacity 0.3s linear, left 0.3s ease-out;
  transition: opacity 0.3s linear, left 0.3s ease-out;
}
.modal.left.fade.in .modal-dialog {
  left: 0;
}
.modal.left .modal-dialog {
  position: fixed;
  margin: auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
.modal.left .modal-content {
  height: 100%;
  padding-bottom: 76px;
  overflow-y: auto;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none;
}
.modal.left.fade .modal-dialog {
  left: -100%;
  -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
  -o-transition: opacity 0.3s linear, left 0.3s ease-out;
  transition: opacity 0.3s linear, left 0.3s ease-out;
}
.modal.left.fade.show .modal-dialog {
  left: 0;
}
.modal-content.mobile-side {
  display: block;
  background: var(--color-text);
  border: none;
  border-radius: 0;
}
button.close-menu {
  position: fixed;
  z-index: 100001;
  right: 0;
  top: 0;
  color: var(--color-light-10);
  font-size: 20px;
  height: 65px;
  width: 65px;
}
.mobile-menu-top {
  background: var(--color-text);
  border-bottom: 0;
  padding: 5px 10px;
  position: fixed;
  z-index: 100000;
  width: 100%;
  height: 65px;
  display: flex;
  align-items: center;
  filter: drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.1));
}
.mb-logo img {
  max-height: 40px;
}
.mobile-sidemenu {
  position: relative;
}
.mobile-sidemenu .member-info-wrapper {
  margin: 15px 15px;
}
.mobile-sidemenu .sidemenu-wrapper {
  height: auto;
  margin: 0 15px;
}
.mobile-sidemenu .language-wrap {
  margin: 0 15px;
}

/** Login Modal **/
.modal-dialog.login {
  max-width: 700px;
}
.modal-content.login {
  background: var(--color-primary);
  border: none;
  color: #535e76;
  padding: 25px;
  text-align: center;
}
button.close-x {
  background: none;
  color: var(--tertiary-text-color);
  border: none;
  padding: 0;
  font-size: 18px;
  position: absolute;
  right: 15px;
  top: 10px;
  z-index: 2;
}
button.close-x:hover {
  color: var(--color-background);
}
.login-logo {
  padding-bottom: 30px;
}
.login-logo img {
  max-height: 55px;
}
.login-wrapper {
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 40px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
textarea,
select {
  width: 100%;
  background: var(--color-text);
  color: var(--color-background);
  border: none;
  height: 48px;
  padding: 4px 15px 4px 50px;
  border-radius: 6px;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="url"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder,
textarea::placeholder,
select::placeholder {
  color: var(--color-light-10);
}
input#customformv1_UserName,
input#customform_UserName,
input#registerform_UserName {
  background-image: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/username.png);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 16px center;
}
input#customformv1_Password,
input#customform_Password,
input#registerform_Password {
  background-image: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/password.png);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 16px center;
}
input#registerform_CPassword {
  background-image: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/cpassword.png);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 16px center;
}
input#registerform_FullName {
  background-image: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/pencil.png);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 16px center;
}
select#registerform_Currency,
#registerform_Currency {
  background-image: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/ccurrency.png);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 16px center;
}
input#registerform_Mobile {
  background-image: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/phone.png);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 16px center;
}
input#registerform_PromotionCode {
  background-image: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/affiliate.png);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 16px center;
}
input#registerform_varifycode {
  background-image: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/captcha.png);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 16px center;
}
.small {
  color: #ff0f0f;
  margin-top: 5px;
  font-style: italic;
}

span.log-icon {
  position: absolute;
  left: 17px;
  top: 9px;
  font-size: 18px;
  color: #535e76;
}
.forgot-link {
  padding-bottom: 15px;
}
.forgot-link a {
  color: #535e76;
  font-size: 15px;
}
.forgot-link a:hover {
  color: var(--color-background);
}
.regnow-text {
  font-size: 16px;
}
.regnow-text a {
  color: var(--secondary-text-color);
}
.regnow-text a:hover {
  color: var(--tertiary-text-color);
}

.reg-line.login {
  background: #535e76;
  height: 1px;
  width: 100%;
  margin: 20px 0 20px;
}
.note-issues {
  font-size: 13px;
  max-width: 400px;
  margin: 0 auto;
}
.title-forgot {
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 5px;
  color: var(--tertiary-text-color);
}
.reset-text {
  font-size: 15px;
  padding-bottom: 15px;
}
.vcode-img {
  position: absolute;
  right: 15px;
  top: 9px;
}

/** Payout **/
.modal-dialog.payout {
  max-width: 800px;
}
.modal-content.payout {
  background: var(--color-primary);
  border: none;
  border-radius: 20px;
  padding: 25px;
  color: var(--tertiary-text-color);
}
.pytitle {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}
.lotto-divider {
  background: var(--color-accent);
  height: 1px;
  margin: 15px auto;
  width: 100%;
}
.pytitle-1 {
  padding-bottom: 10px;
}
table.payout-table {
  text-align: center;
}
table.payout-table tr th {
  background: var(--color-primary);
  font-weight: 600;
  padding: 5px 1px;
  border: 1px solid var(--color-accent);
}
table.payout-table tr td {
  background: var(--wrapper-bg-color);
  font-weight: 500;
  padding: 5px 1px;
  border: 1px solid var(--color-accent);
}
ol.step {
  padding-left: 17px;
}

/** Promotion **/
.modal-dialog.promo {
  max-width: 850px;
}
#faq_fbinner {
  background: var(--color-text);
  color: var(--color-light-7);
  border: none;
  border-radius: 14px;
  max-height: 90vh;
  overflow: auto;
}
.promo-popup-content {
  padding: 15px 0 0;
}
.pmtitle-wrap {
  padding: 0 20px;
}
.pmtitle {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 5px;
  color: var(--color-light-7);
}
.pmcaption {
  text-align: center;
  color: var(--color-light-7);
}
.darkMode .pmcaption,
.darkMode .pmtitle {
  color: var(--color-text);
}

.pmwrap {
  padding: 20px 0px;
}
.gtext {
  color: var(--color-background);
  font-weight: 500;
  padding: 5px 0;
}
.table-responsive.promo-table {
  text-align: center;
  font-size: 14px;
  border: 0;
}
table.table-promo tr th {
  font-weight: 400;
  background: var(--color-primary);
  padding: 6px 2px;
  border: 1px solid var(--color-accent);
}
table.table-promo tr td {
  font-weight: 400;
  background: var(--color-light-1);
  padding: 6px 2px;
  border: 1px solid #dbdbdb;
}
.darkMode table.table-promo tr td {
  background: var(--color-dark-4);
  border: 1px solid var(--color-border);
}

.pm-dvd-line {
  height: 2px;
  width: 100%;
  background: #ddd;
  margin: 15px auto;
}
.darkMode .pm-dvd-line {
  background: var(--color-border);
}

.fancybox-inner strong {
  font-size: 15px;
  color: var(--color-light-7);
}
.darkMode .fancybox-inner strong {
  color: var(--tertiary-text-color);
}
.rules-btn-wrap {
  margin-bottom: 15px;
}
.pmtnc-wrap {
  background: var(--color-light-1);
  padding: 30px;
}
.darkMode .pmtnc-wrap {
  background: var(--color-dark-4);
}
ul.terms {
  padding-left: 17px;
  list-style: decimal;
  color: var(--color-light-7);
  line-height: 1.8;
  margin-bottom: 0;
}
.darkMode ul.terms {
  color: rgba(255, 255, 255, 0.6);
}
#faq_fbinner.rules {
  border-radius: 15px;
  border: 1px solid var(--color-primary);
}
.pm-content {
  padding: 15px 15px;
}
.termscwrap {
  width: 100%;
  display: block;
  background: var(--color-text);
  margin-bottom: 0;
  padding: 20px;
  border-radius: 10px;
}
.termscwrap ul {
  list-style: disc;
  color: var(--color-light-7);
}
.termscwrap p {
  color: var(--color-light-7);
  margin-bottom: 15px;
}
.termscwrap h2 {
  font-size: 20px;
  margin-bottom: 5px;
}

/** Change Password modal **/
.modal-dialog.edit-popup {
  max-width: 550px;
}
.modal-content.edit-popup {
  background: var(--color-primary);
  color: var(--tertiary-text-color);
  border-radius: 15px;
  padding: 30px;
}

/** Inbox Modal **/
.modal-dialog.mail-popup {
  max-width: 750px;
}
.modal-content.mail-popup {
  background: var(--color-primary);
  border: none;
  color: var(--tertiary-text-color);
  padding: 20px 20px;
  border-radius: 15px;
}
.mail-title {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  padding-bottom: 15px;
}
.mail-content {
  background: #2b3247;
  border-radius: 15px;
  padding: 30px;
}
.mail-content a {
  color: var(--color-background);
}
.close-btn-wrap {
  padding-top: 15px;
  text-align: center;
}
button.close-pm-btn {
  background: var(--color-primary);
  color: var(--tertiary-text-color);
  border: none;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 20px;
  border-radius: 40px;
  border: 1px solid var(--color-primary);
  text-transform: uppercase;
}
button.close-pm-btn:hover {
  background: transparent;
  color: var(--color-background);
}

/** How Deposit Modal **/
.modal-dialog.how-pop {
  max-width: 900px;
}
.modal-content.how-popup {
  background: var(--color-primary);
  color: var(--tertiary-text-color);
  border: none;
  border-radius: 15px;
  padding: 20px 30px;
}
.how-title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 15px;
}
.how-depo-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
  padding-bottom: 10px;
}
.dep-box {
  background: #2b3247;
  position: relative;
  border-radius: 10px;
  padding: 15px 15px 15px;
  font-size: 15px;
  text-align: center;
}
.step-num {
  color: var(--color-background);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.depo-img {
  margin-bottom: 10px;
}
.don-show-tick {
  color: var(--tertiary-text-color);
}
.don-show-tick .game-option {
  font-size: 13px;
}

/** Download Modal **/
.modal-dialog.download {
  max-width: 600px;
}
.downloadbody {
  text-align: center;
}
.downloadbox {
  text-align: center;
  width: 30%;
  margin: 0 1%;
  display: inline-block;
}
a.dllink-btn {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--tertiary-text-color);
  height: 35px;
  padding: 2px 5px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 150px;
  margin: 8px auto;
  border-radius: 8px;
  font-weight: 500;
  text-transform: uppercase;
}
.table-responsive.access-info {
  margin-top: 10px;
  text-align: center;
}
input.access-input {
  background: none;
  border: none;
  color: var(--tertiary-text-color);
  display: inline-block;
  width: auto !important;
  text-align: center;
}

input#customformv1_submit.password,
input#customform_submit.password {
  font-size: 14px;
  height: 33px;
  min-width: auto;
}
@media (max-width: 1080px) {
  .burger {
    display: block;
  }
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
  .header-logomenu {
    display: none;
  }
  #cms5-news-list ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .jackpot-top {
    top: 18%;
  }
  .jackpot-bottom {
    top: 62%;
  }

  .stepTicketNo {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .left-column .uwcard-image {
    max-width: 180px;
    top: 40px;
  }
  #chat-widget-container {
    display: none;
    bottom: 0 !important;
  }

  .liveresult-template {
    padding: 20px 0;
  }

  .lotto-drawresult {
    display: grid;
    grid-template-columns: repeat(11, 300px);
    padding: 0 20px;
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  #theme-contain-prod {
    padding: 0 20px;
    padding-top: 80px;
  }
  ul.nav.sidemenu-nav li a.m-nav__link {
    background: var(--color-text);
  }
  .currency,
  ul.nav.sidemenu-nav li a.m-nav__link.active {
    background: linear-gradient(
      90deg,
      rgb(255 245 235) 0%,
      rgb(255 255 255) 100%
    );
  }
  .modal-content.mobile-side {
    background: #f4f4f4;
  }
  .uwwlangbtn {
    display: none;
  }
  .logo {
    position: relative;
    left: 10px;
  }
  .sm-btn-wrap {
    display: none;
  }
  ul.nav.sidemenu-nav {
    padding-top: 80px;
    padding-bottom: 20px;
  }
  .body-container {
    display: block;
  }
  .body-container.active .header-sec {
    width: 100%;
  }
  .footer-sec {
    padding-bottom: 80px;
  }
  .t-menu {
    display: none;
  }
  .header-sec {
    width: 100%;
  }
  .logreg-wrap.login button.register-btn,
  .logreg-wrap.login button.login-btn {
    display: none;
  }
  button.mobile-wallet-btn,
  button.mobile-profile-btn {
    display: inline-block;
  }
  .mobile-btm-sec {
    display: block;
  }
  .search-game-wrap {
    display: none;
  }
  ul.nav.header-menu {
    display: none;
  }
  .header-container {
    height: 65px;
  }
  .logo img {
    max-height: 40px;
    margin-left: 0;
  }
  .header-wrap.active {
    grid-template-columns: auto auto;
  }
  .max-container {
    padding: 0 20px;
  }
  .footer-top-wrapper {
    display: none;
  }
  .footer-btm-wrapper {
    grid-template-columns: auto;
    padding: 5px 0;
  }
  .footer-column {
    border-right: none;
    padding: 10px 0;
  }
  .footer-column:last-child {
    border-bottom: none;
  }
  .t-inner-body.lottery {
    background-position-y: 54px;
  }
  .lottery-mobile {
    text-align: center;
    display: initial;
  }
  .table-responsive.rs-table {
    background: var(--wrapper-bg-color);
    border: 1px solid var(--color-accent);
  }
  ul.lt-wrap {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 2px;
    border-bottom: 2px solid var(--color-primary);
    padding: 0 2px;
    text-align: center;
  }
  .nav-tabs.lt-wrap .nav-link {
    border: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
  }
  .nav-tabs.lt-wrap .nav-item.show .nav-link,
  .nav-tabs.lt-wrap .nav-link.active {
    color: var(--color-background);
    background-color: transparent;
  }
  li.lt-item {
    position: relative;
    padding-bottom: 22px;
  }
  ul.lt-wrap li a.active:after {
    content: "";
    color: var(--color-background);
    position: absolute;
    border-top: 0;
    border-right: 0.7em solid transparent;
    border-bottom: 0.7em solid;
    border-left: 0.7em solid transparent;
    width: 8px;
    margin: auto;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 10;
  }
  .date-box {
    padding: 10px 0px;
    font-size: 15px;
    background: linear-gradient(
      90deg,
      rgba(19, 23, 36, 1) 0%,
      rgba(42, 49, 74, 1) 100%
    );
    text-align: center;
  }
  .slots-lobby-container {
    padding: 15px;
    grid-template-columns: auto;
  }
  .slots-provider {
    white-space: nowrap;
    overflow: auto;
  }
  a.spvdbox {
    display: inline-block;
    height: auto;
    width: 12.2%;
    text-align: center;
    font-size: 14px;
    padding: 5px;
  }
  .pdv-icon {
    margin: 0;
    display: block;
  }
  .all-balance-card {
    padding: 20px 15px;
    max-width: 800px;
    margin: 0 auto;
  }
  .pfrow {
    grid-template-columns: auto;
  }
  .pfcol {
    border-right: none;
    padding-right: 0;
  }
  .pfrow .pfcol:last-child {
    border: none;
    padding-left: 0;
    padding-right: 0;
  }
  .hot-slot {
    font-size: 10px;
    padding: 16px 2px 2px;
  }
  .vip-mobile-wrapper {
    display: block;
    padding: 0 10px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
  }
  .how-vip,
  .vip-table-wrapper {
    display: none;
  }
  .t-inner-body.vip {
    background-position-y: 55px;
    background-size: 140%;
    background-position-x: left;
  }
  .vip-privilege {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.5775560224089635) 21%,
      rgba(0, 0, 0, 0) 85%,
      rgba(0, 0, 0, 0) 100%
    );
    padding: 15px 15px;
    margin: 0 -15px;
  }
  .vip-top-banner {
    height: 370px;
  }
  .vip-privilege {
    left: 0;
    right: 0;
  }
  .slidermain_vip {
    padding-bottom: 0;
  }
  .vptext-1 {
    font-size: 40px;
  }
  .vptext-2 {
    font-size: 19px;
  }
  .vptext-current {
    font-size: 30px;
  }
  .vip-card-wrapper {
    margin-top: 12%;
  }
  .vip-lvl {
    font-size: 3.4vw;
  }
  .turnover-text {
    font-size: 0.8vw;
  }
  .achieve-text {
    font-size: 0.9vw;
  }
  .lock-status {
    font-size: 1vw;
  }
  .whtext {
    color: var(--tertiary-text-color);
  }
  .slick-active.slick-center .vip-card-wrapper {
    margin: 0 -13%;
    transform: scale(1);
  }
  .slick-current .vip-lvl {
    font-size: 5.3vw;
  }
  .slick-current .achieve-text {
    top: 74%;
    font-size: 1.7vw;
  }
  .slick-current .lock-status {
    font-size: 1.8vw;
  }
  .infopage-container {
    grid-template-columns: auto;
  }
  .info-menu-wrap {
    display: none;
  }
  .info-content {
    padding: 30px 15px;
  }
  .deposit-sec {
    padding: 0 0 30px;
  }
  .af-container {
    display: block;
  }
  .quick-menu-wrapper {
    display: block;
  }
  .afcolumn-left {
    display: none;
  }
  .deposit-note.mobile {
    display: block;
    background: none;
  }
  .mainwallet-wrap {
    padding: 15px 25px;
  }
  .mwtext {
    font-size: 14px;
  }
  .mwbalance {
    font-size: 28px;
  }
  .af-field-wrap {
    grid-template-columns: auto;
  }
  .bank-pay {
    max-width: 110px;
    font-size: 14px;
  }
  .ft-title {
    font-size: 13px;
  }
  ul.ft-mblist {
    list-style-type: none;
    padding: 0;
  }

  ul.ft-mblist li {
    display: inline-block;
    font-size: 13px;
    margin-right: 10px;
  }
  .mobile-footer-column {
    display: block;
  }
  .floating-chat {
    display: none;
  }
  button.back-to-top {
    bottom: 170px;
    height: 40px;
    width: 40px;
    right: 10px;
  }

  .mainwallet-wrap {
    padding: 25px 35px;
    grid-template-columns: 54% 45%;
  }

  .mwbox-rc {
    display: none;
  }
  .promo-content ol#faq_modal {
    grid-template-columns: repeat(2, 1fr);
  }
  .gamepage-stage {
    grid-template-columns: repeat(5, 1fr);
  }
  .seopopup {
    width: 80%;
  }
  .logbanner {
    grid-template-columns: 40vw 40vw;
  }
  .header-wrap {
    grid-template-columns: auto auto;
  }
  .afcolumn-left.rwcenter {
    display: block;
  }

  .rwrow {
    justify-content: center;
  }

  .rwcenter .afmenu-box {
    margin-bottom: 15px;
  }
}

@media (max-width: 991px) {
  .reverse-on-mobile {
    display: flex;
    flex-direction: column-reverse;
  }
  .feature-bonus-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    max-width: 600px;
    margin: 0 auto;
  }
  .stepbox {
    font-size: 14px;
  }
  .step-img {
    max-width: 45%;
  }
  .regtitle {
    display: block;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
  }
  .register-wrapper {
    grid-template-columns: auto;
  }
  .agree-text {
    text-align: center;
  }
  .product-game-sec {
    padding: 35px 0 30px;
  }
  .display-game-wrap {
    display: flex;
    flex-direction: column-reverse;
  }
  .dg-img-column {
    position: relative;
    padding: 50px 15px 1px 15px;
  }
  .casino-character {
    max-width: 42%;
  }
  .deco.gold-dice {
    top: 0%;
    max-width: 60%;
  }
  .dg-column {
    padding: 5px 15px 30px;
  }
  .dg-subtitle {
    display: none;
  }
  .gaming-character {
    max-width: 60%;
  }
  .gaming-character.live22 {
    max-width: 90%;
  }
  .sports-character {
    max-width: 45%;
  }
  .dl-banner {
    left: 0;
    right: 0;
    top: -15px;
  }
  .download-content {
    margin: 30% auto 0;
    max-width: none;
  }
  .transfrom-amt-wrapper {
    grid-template-columns: auto;
    max-width: 460px;
  }
}

@media (max-width: 767px) {
  .footer-column div:nth-child(2) {
    margin-bottom: 0;
  }
  .uwwfooter .footer-column {
    flex: auto;
  }
  .table_component th {
    white-space: nowrap;
  }
  .bstt3 {
    margin: 30px 0;
    text-align: center;
  }
  .bonustable {
    margin: auto;
  }
  .table_component table {
    width: 100vw;
    table-layout: auto;
  }
  .subbanner {
    padding: 0;
  }
  .reverse-on-mobile {
    display: flex;
    flex-direction: column-reverse;
  }

  #cms5-news-list ul {
    grid-template-columns: 100%;
  }
  .jackpot-top {
    top: 16%;
  }
  .jackpot-bottom {
    top: 60%;
  }
  a#HyperLink2,
  a#HyperLink1 {
    max-width: 250px;
    font-size: 16px;
    padding: 0;
  }
  .stepBox p {
    padding: 0 10px;
    margin: 0;
    background-size: 100% 100%;
  }
  .containerbox {
    width: 100%;
    margin: 20px 0;
  }
  .buttonBanner {
    width: 100%;
    max-width: 100%;
  }
  #jackpotMY {
    max-width: 100%;
    padding: 0 10px;
  }
  .jackpot-uwtext {
    font-size: clamp(14px, 5vw, 60px);
  }
  .max-container {
    padding: 0 10px;
  }
  .flexslider,
  .subbanner {
    width: 100%;
    margin: 0;
    margin-top: 10px;
  }

  .flexslider .slides img,
  .subbanner img {
    width: 100%;
    margin: 0;
  }
  .flex-control-nav {
    bottom: -10px;
  }
  .flex-control-paging li a {
    width: 20px;
    height: 3px;
    border-radius: 0;
  }
  .jackpot-bg {
    height: 90px;
    border-radius: 15px;
  }
  .promo-content ol#faq_modal {
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .fancybox-wrap {
    width: 90% !important;
    z-index: 10001;
  }
  .fancybox-overlay-fixed {
    z-index: 10000;
  }
  .promo-content ol#faq_modal li.question {
    width: 100%;
  }
  .sport-template {
    padding: 15px 20px 15px;
  }
  #api-leaguefeed .brick {
    min-width: 100%;
    margin: 5px 0;
  }
  ul.nav.nav-provider-game {
    margin: 0 -8px;
  }
  .vip-table-wrapper .table-responsive {
    border: 0;
  }
  .vip-mobile-wrapper {
    padding: 0;
  }
  table.vip-table tr td {
    padding: 7px 0;
  }

  .btn-primary {
    width: 100px;
    height: 35px;
    margin-right: 0;
    margin-top: -30px;
  }
  .hc-content-item:hover .plynwbtn:before {
    bottom: 10px;
  }
  section.prod-sec {
    width: 100vw;
    overflow: hidden;
  }
  .hc-sub-content-display p {
    font-size: 18px;
  }
  .hc-content-item:hover .hc-sub-content-display p {
    bottom: 40px;
  }
  .plynwbtn span {
    height: 35px;
  }
  .hc-content-item:hover .hc-content-display {
    height: 170px;
  }
  .hc-content-item,
  .hc-content-display {
    height: 160px;
  }
  .home-custom-container {
    grid-template-columns: 195px 195px 195px 195px;
    padding-right: 20px;
    width: 100%;
    gap: 10px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 15px 0 30px 0;
  }

  .floating:before {
    width: 90px;
    height: 90px;
    left: 10%;
  }
  .floating:after {
    width: 90px;
    height: 90px;
    right: 10%;
  }
  .jackpot-position {
    font-size: 30px;
    width: 300px;
  }
  .owl-carousel.main-slider {
    margin-bottom: 15px;
  }
  .owl-carousel.main-slider::before,
  .owl-carousel.main-slider::after {
    content: none;
  }
  .register-step-wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 10px;
  }
  .stepbox {
    font-size: 13px;
  }
  .stepbox-inner {
    padding: 10px 10px 10px;
    min-height: 90%;
  }
  .step-title {
    margin-top: 6px;
  }
  .white-box,
  .white-line {
    display: none;
  }
  .usp-wrapper {
    padding-top: 5px;
  }
  .usp-container {
    padding: 20px 15px 20px;
  }
  .usp-subtitle {
    font-size: 15px;
  }
  .usp-box {
    display: grid;
    grid-template-columns: 26% auto;
    grid-gap: 10px;
    max-width: 100%;
    align-items: center;
    padding: 10px;
    margin: 10px 0;
  }
  .uspimg {
    margin: 0 auto;
  }
  .usp-info {
    text-align: left;
  }
  .join-today {
    grid-template-columns: auto;
    height: auto;
    text-align: center;
    padding: 20px 10px;
    font-size: 20px;
  }
  .footer-copyright {
    font-size: 11px;
    padding-bottom: 10px;
  }
  .ftbn-title {
    font-size: 18px;
  }
  form.reg-form {
    padding: 15px 0;
  }
  ul.nav.nav-provider-game li.nav-item {
    width: 23.5%;
  }
  .product-game-sec {
    padding: 4vw 0 30px;
  }
  ul.nav.nav-provider-game a.nav-link {
    height: 11vw;
  }
  ul.nav.nav-provider-game a.nav-link img {
    max-height: 90%;
  }
  a.spvdbox {
    width: 16.3%;
    font-size: 13px;
  }
  .slot-filter-wrap {
    display: block;
  }
  .sf-btn-wrap {
    margin-bottom: 10px;
  }
  .slots-container {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 6px;
  }
  .slot-name {
    font-size: 12px;
  }
  .vip-top-banner {
    height: 330px;
  }
  .lock-status img {
    max-width: 1.1vw;
  }
  .slick-active.slick-center .vip-card-wrapper {
    margin: 0 -40%;
    transform: scale(1);
  }
  .slick-current .vip-lvl {
    font-size: 8vw;
  }
  .slick-current .turnover-text {
    font-size: 3vw;
  }
  .slick-current .achieve-text {
    top: 76%;
    font-size: 2.5vw;
  }
  .slick-current .lock-status {
    font-size: 2.5vw;
  }
  .slick-current .lock-status img {
    max-width: 2vw;
  }
  .more-info-wrap {
    position: initial;
    margin-top: 15px;
  }
  .filter-menu {
    background: none;
    padding: 0;
    text-align: center;
  }
  .pmbox {
    background: #141724;
    margin: 4px 1px;
  }
  button.restore-btn {
    padding: 3px 7px;
    font-size: 12px;
    margin: 0 2px 0 5px;
  }
  .date-form-wrapper {
    display: grid;
    grid-gap: 15px;
  }
  .history-btn-wrap {
    text-align: center;
  }
  .pfrow-2 {
    grid-template-columns: auto;
  }

  .all-balance-card {
    max-width: 480px;
  }
  .pvd-balance-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .pvb-col-1 {
    font-size: 13px;
  }
  .pvb-col-2 {
    font-size: 15px;
  }
  button.allin-btn {
    font-size: 13px;
    padding: 2px 6px;
  }
}

@media (max-width: 600px) {
  .jptittle {
    padding-bottom: 3px;
    margin-bottom: 3px;
    padding-top: 3px;
    font-size: 10px;
  }
  .jackpot-position {
    width: 250px;
    font-size: 22px;
  }
  .jpprice {
    margin-left: 28px;
  }
}

@media (max-width: 480px) {
  a#HyperLink2,
  a#HyperLink1 {
    max-width: 100%;
    background-size: 100% 100%;
    height: 60px;
  }
  .floating:before {
    width: 60px;
    height: 60px;
    left: 8%;
  }
  .floating:after {
    width: 60px;
    height: 60px;
    right: 8%;
  }

  button.back-to-top {
    bottom: 170px;
    height: 35px;
    width: 35px;
    font-size: 18px;
    opacity: 0.7;
  }
  .gname {
    font-size: 2.2vw;
  }
  .bftitle {
    font-size: 15px;
  }
  .usp-info {
    font-size: 13px;
  }
  .usp-title {
    font-size: 17px;
  }
  .join-today {
    font-size: 18px;
  }
  .promo-home-sec {
    max-width: 94%;
  }
  .allbtns {
    font-size: 12px;
    height: 25px;
    width: 45px;
    right: 60px;
  }
  .allbtns span,
  .uwwseobtn span {
    font-size: 20px;
  }
  .owl-theme .owl-nav button.owl-prev {
    top: -125%;
    right: 35px;
    font-size: 20px;
    height: 25px;
    width: 25px;
  }
  .owl-theme .owl-nav button.owl-next {
    top: -125%;
    font-size: 20px;
    height: 25px;
    width: 25px;
  }
  .regtext-1 {
    font-size: 20px;
  }
  ol.fun {
    font-size: 15px;
  }
  .reg-feature-banners {
    grid-gap: 6px;
  }
  .product-game-sec {
    padding: 3vw 0 30px;
  }
  .dg-img-column {
    padding: 10% 15px 1px 15px;
  }
  ul.nav.nav-provider-game li.nav-item {
    width: 31%;
    margin: 0.7%;
  }
  ul.nav.nav-provider-game a.nav-link {
    height: 13vw;
  }
  .game-pvd-img {
    max-width: 80%;
    margin: 0 auto;
  }
  .game-pvd-img img {
    max-height: 65px;
  }
  a.spvdbox {
    width: 24.5%;
    font-size: 12px;
  }
  .slots-container {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px 10px;
  }
  .slotgbox {
    max-width: none;
  }
  .slot-name {
    font-size: 14px;
  }
  .hot-slot {
    font-size: 9px;
    padding: 14px 2px 1px;
    right: -33px;
    top: -8px;
  }
  .t-inner-body.vip {
    background-size: 187%;
  }
  .vip-top-banner {
    height: 360px;
  }
  .vip-privilege {
    top: 27%;
  }
  .turnbox-wrap {
    margin: 0 auto;
    width: 100%;
  }
  .lvlbar-wrap {
    height: 1vw;
  }
  .slick-current .lvlbar-wrap {
    height: 2vw;
  }
  .vip-tnc {
    font-size: 14px;
  }
  .sm-promo-title {
    font-size: 16px;
  }
  .smpromo-caption {
    font-size: 13px;
  }
  .info-content {
    padding: 20px 15px;
    font-size: 14px;
  }
  .info-title {
    font-size: 22px;
    padding: 0 10px;
  }
  .info-content-inner {
    padding: 0 10px;
    line-height: 1.4;
  }
  .contactbox {
    width: 45%;
    margin: 1% 2%;
  }
  a.tpm-btn {
    font-size: 12px;
  }
  a.tpm-btn img {
    max-height: 25px;
  }
  .aform-wrapper {
    padding: 15px 15px;
  }
  a.afsub-btn {
    margin: 0.5% 0.5% 0.5% 0;
    min-width: 48.5%;
    font-size: 14px;
  }
  .bank-pay {
    max-width: 31.5%;
    margin: 0 0.4%;
  }
  .bank-acct-btn.bnk {
    font-size: 13px;
  }
  .bank-info-depo {
    font-size: 14px;
  }
  .mainwallet-wrap {
    padding: 15px 15px;
    grid-template-columns: 59% 40%;
  }
  .mwtext {
    font-size: 13px;
    padding: 0 0 5px;
    height: 30px;
  }
  .mwbalance {
    font-size: 20px;
  }
  .info-wrap {
    width: 110px;
    font-size: 10px;
    padding: 5px;
  }
  button.reload-btn {
    font-size: 13px;
    padding: 0px 3px 3px;
  }
  button.redeem-btn {
    padding: 2px 5px;
    font-size: 11px;
    margin-left: 2px;
  }
  .bank-depo-option.banking .bank-acct-btn img {
    max-height: 30px;
  }
  button.update-btn.add-bank {
    position: initial;
    margin-top: 5px;
  }
  .profile-top-wrapper {
    padding: 20px 15px;
  }
  .pfcolumn {
    padding: 20px 15px;
  }
  .pvb-col-1 {
    font-size: 13px;
  }
  button.allin-btn {
    font-size: 13px;
    padding: 2px 6px;
  }
  ul.nav.nav-download li.nav-item {
    margin: 0 2%;
  }
  .download-content {
    margin: 51% auto 0;
  }
  .dl-banner {
    max-width: 85%;
    right: -17%;
  }
  .download-box {
    width: 47%;
  }
  table.history-table {
    font-size: 13px;
  }
  input.profile-input {
    font-size: 16px;
  }
  .pf-ftitle {
    font-size: 18px;
  }
  button.balance-btn {
    padding: 15px 25px;
  }
}

@media (max-width: 767px) {
  .viptitle {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .uw99card {
    width: calc(100vw + 70px);
    max-width: fit-content;
    display: block;
    margin: auto -45px;
    margin-top: 50px;
  }
  .right-vip {
    position: absolute;
    width: 100%;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    top: initial;
    padding: 0 15px;
    max-width: 482px;
  }
  .vipbanner-m.mobile {
    width: 100%;
    max-width: 482px;
    margin: auto;
    margin-top: 10px;
  }
  #theme-contain-registration .col-md-6 {
    padding-right: 0;
    padding-left: 0;
  }
  .hotgameIconGif img {
    width: 20px;
  }
  .downloadTitle {
    margin-top: 0;
    height: auto;
  }
  .downloadTitle img {
    height: 40px !important;
  }
  .hotgameIconGif {
    margin-top: 80px;
  }
  .toggleLeft {
    height: 90px;
    width: 20px;
    justify-content: center;
  }

  #cms5-news-view {
    margin: 90px 10px 20px 10px;
  }
  #cms5-news-list {
    padding: 20px 10px;
  }
  .bannerwords {
    font-size: 32px;
    width: 50%;
    line-height: 1;
    top: 50%;
  }
  .accordion-header {
    font-size: 16px;
  }
  .prizesTable table,
  .jptext,
  .accordion,
  .jptab-content table {
    max-width: 100%;
  }
  .stepBox img.stepImages {
    width: 90%;
    margin-bottom: 5px;
  }
  .dp-inner {
    flex-direction: column;
    gap: 0;
  }
  #theme-contain-home .backmenu {
    display: none;
  }
  .vipTable .vipCell.vipCellH1 {
    font-size: 18px;
  }
  .sopnImg.uw88_ruby,
  .sopnImg.uw88_gold,
  .sopnImg.uw88_silver,
  .sopnImg.uw88_steel,
  .sopnImg.uw88_classic {
    height: 50px;
  }
  .sponBar.vip p {
    font-size: 14px;
  }
  .vipWrapper > h3.golden {
    font-size: 30px;
    line-height: 30px;
  }
  .vipBlockBody {
    padding: 10px;
  }
  #theme-contain-prod #remoteloginform,
  #theme-contain-prod #customform {
    width: calc(100% - 20px);
    margin: 0 10px;
  }
  #prod-cart .alert-warning {
    width: calc(100% - 20px);
    margin: 0 10px;
  }
  #prod-cart .tbllist form table {
    font-size: 14px;
  }
  #cms5-prod-view table td {
    margin: auto;
  }
  #cms5-prod-view table td:nth-child(1) {
  }
  #cms5-prod-view table tr {
    display: flex;
    flex-direction: column-reverse;
  }
  table#particular tr {
    display: inherit;
  }
  .bonus-text {
    text-align: center;
  }
  .payment-methods.center img:nth-child(2),
  .payment-methods.center img:nth-child(3) {
    height: auto;
    max-height: 70px;
    width: inherit;
    margin: auto;
  }
  .bonus-banner .center img {
    height: auto !important;
    width: 100%;
  }
  #theme-contain-prod {
    padding: 0 10px;
    margin-bottom: 20px;
    padding-top: 65px;
  }
  #cms5-prodcatlist {
    margin-top: 20px;
  }
  select#sortlist,
  #price-range input#price-min,
  #price-range input#price-max {
    width: 100%;
  }
  .intro button#customform_submit {
    width: 49%;
  }

  div#cms5-prodcatlist ul li {
    width: 100% !important;
  }

  .intro p.r {
    width: 100%;
    padding-right: 0;
  }

  #cms5-prodcatlist ul {
    grid-template-columns: 170px 170px 170px 170px 170px 170px 170px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  #search-form input#submit-btn {
    position: unset;
    width: 100%;
    margin-top: -17px;
  }

  #clear-btn {
    position: unset;
    float: left;
    margin: 11px 0;
  }

  label {
    min-width: auto;
  }

  #cms5-prod-list {
    grid-template-columns: 1fr 1fr;
  }

  .gamepage-stage {
    grid-template-columns: repeat(4, 1fr);
  }

  .reglogtitle {
    margin: 30px 10px;
  }
  .uwlog-right {
    padding: 0 30px 30px 30px;
    height: auto;
  }
  .loginpopup,
  .registerpopup {
    width: 100%;
    height: 100%;
  }
  .logbanner {
    display: flex;
    flex-direction: column-reverse;
  }
  .seopopup {
    width: 90%;
  }
  .seo-left {
    padding: 20px 0;
  }
  .seo-container h2 {
    font-size: 24px;
  }
  .uwwfooter .footer-column {
    margin-bottom: 20px;
    padding: 0;
  }
  .uwwfooter .footer-columns {
    padding-top: 20px;
    padding-bottom: 0;
    gap: 10px;
  }
  .twocolfooter {
    display: flex;
    gap: 30px;
  }
  .uwwfooter {
    padding-bottom: 0;
  }
  .uwwfooter .footer-logos {
    padding: 20px 0;
    overflow-x: auto;
    width: 100%;
    display: flex;
    justify-content: left;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .uwwfooter .footer-logos img {
    max-width: 25%;
  }
  .logbanner {
    grid-template-columns: 100vw;
  }
  .fgtitle {
    margin-bottom: 5px;
  }
  .ftgame-container {
    margin: 0 0 20px;
  }
  .mytabs {
    gap: 20px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    white-space: nowrap;
  }
  .header-container {
    padding: 0 10px;
  }
  .nav > li.mobile {
    display: block;
  }

  .bonus-banner .right {
    justify-content: center;
    flex-wrap: wrap;
  }
  .payment-methods,
  .crypto-icons {
    gap: 5px;
  }
  .payment-methods img,
  .crypto-icons img {
    margin-left: 0;
  }
  .bonus-banner .center {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  .bonus-banner {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    padding: 20px;
  }
  .left-column .uwcard-image {
    width: 100%;
    max-width: 120px;
    margin-left: auto;
    top: 0;
    margin-top: -20px;
  }
  .right-column .uwcard-header img {
    display: none;
  }
  .left-column .uwcard-inner {
    display: block;
    width: 100%;
  }
  .left-column .uwcard-header {
    font-size: initial;
    margin-bottom: 0;
    margin-top: 0;
  }
  .uwcard.large {
    flex-direction: column;
    align-items: start;
  }
  .uwcard-image {
    position: relative;
    right: inherit;
    left: inherit;
  }
  .uwcard {
    padding: 10px;
    min-height: 100%;
  }
  .right-column .uwcard {
    flex-direction: column-reverse;
    align-items: center;
  }

  .right-column .uwcard-header {
    font-size: 13px;
    margin-bottom: 0;
    margin-top: 0;
  }
  .uwcard-description {
    display: none;
  }
  .uwcard-layout {
    grid-template-columns: 100%;
    gap: 10px;
  }
  .right-column {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .left-column {
    gap: 10px;
    width: 100%;
  }

  .t-inner-body {
    padding-top: 65px;
  }

  .rwclaim-upper {
    display: grid;
    grid-template-columns: 45% auto;
    grid-gap: 10px;
  }

  .rwclaim-img {
    height: 14vw;
  }

  .rwctext-1 {
    -webkit-line-clamp: 2;
  }

  .rwclaim-top {
    font-size: 18px;
  }

  .rwclaim-wrap {
    text-align: right;
  }

  .claim-requirement {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .rwcenter ul.nav.afmenuside-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5px;
  }

  .rwcenter ul.nav.afmenuside-nav li.nav-item a.mslink {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: var(--color-accent);
    height: 75px;
    font-size: 13px;
    text-align: center;
    border-radius: 10px;
    padding: 1px 3px;
  }

  .afn-icon {
    margin: 0 auto 5px;
  }

  .rc-quickgame {
    font-size: 13px;
  }

  .rc-quickgame img {
    max-width: 35px;
  }

  .rwcenter .rwc-content {
    padding: 15px 15px;
  }

  .rwclaim-btm {
    grid-template-columns: auto 115px;
    grid-gap: 5px;
  }

  .rwclaim-top {
    font-size: 3.3vw;
  }

  button.rw-claim-btn {
    font-size: 14px;
    height: 30px;
  }
}

/** Update - 6/8/2024 **/
.mainwallet-wrap {
  padding: 25px 30px;
  grid-template-columns: 48% 30% 20%;
}

a.rwc-wrap {
  text-align: center;
  text-transform: uppercase;
  color: var(--color-background);
  font-size: 13px;
  font-weight: 600;
}

.rwiconimg {
  margin-bottom: 5px;
}

.rwiconimg img {
  max-width: 45px;
}

a.rwc-wrap:hover .rwiconimg {
  transform: scale(1.05);
}

a.bmenu-link {
  position: relative;
}

.bmimg {
  height: 25px;
}

.bmimg.rwc-img img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50%;
  margin: 0 auto;
  max-height: 45px;
}

@media (max-width: 480px) {
  .mainwallet-wrap {
    padding: 15px 15px;
    grid-template-columns: 59% 40%;
  }
}

.btncopy {
  cursor: pointer;
}

#snackbar {
  visibility: hidden;
  color: var(--tertiary-text-color);
  background-color: #333;
  min-width: 250px;
  margin-left: -125px;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  left: 50%;
  bottom: 70px;
  z-index: 100;
  position: fixed;
}

/* This will be activated when the snackbar's class is 'show' which will be added through JS */
#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations for fading in and out */
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 70px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 70px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 70px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 70px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .AGE_GATE .popup {
    padding: 10px 20px 20px;
    width: 90dvw;
  }
  .AGE_GATE h6 {
    text-align: left;
  }
  section.home-slider-sec,
  section.uw-card-sec,
  section.feature-game-sec,
  section.home-crypto-sec,
  section.home-promo-sec {
    margin: 20px 0;
  }
  section.promotion-sec {
    margin: 20px 0 20px 0;
  }
  section.terms-slider-sec {
    margin: 20px 0 20px 0;
  }
  #faq_fbinner {
    height: calc(100vh - 10vh - 57px) !important;
  }
  .modal-content.how-popup {
    padding: 20px 15px;
  }
  .how-depo-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .don-show-tick {
    text-align: center;
    margin-top: 15px;
  }
  .mail-content {
    padding: 15px;
  }
  .mail-title {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .modal-content.payout {
    padding: 15px;
  }
  .pytitle {
    font-size: 20px;
  }
  button.close-x {
    font-size: 15px;
  }
  #faq_fbinner {
    font-size: 14px;
  }
  .pmwrap {
    padding: 5px 15px 15px;
  }
  .pmtnc-wrap {
    padding: 20px 15px;
  }
  .pmtitle {
    font-size: 20px;
  }
  .table-responsive.promo-table {
    font-size: 13px;
  }
  .how-title {
    font-size: 20px;
  }
  a.dllink-btn {
    font-size: 13px;
  }
}

.nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.tab-content > .active {
  display: block;
}
.show {
  display: none;
}

.fancybox-opened {
  z-index: 10000;
}
.fancybox-overlay {
  z-index: 9999;
}

/*====================  WINNERLIST ========================*/
.popuptext {
  width: 350px;
  background-color: var(--color-primary);
  color: #414141 !important;
  text-align: center;
  border-radius: 4px;
  padding: 8px 12px;
  position: fixed;
  z-index: 99999999;
  font-size: 14px;
  border: 1px solid #be9f38;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  top: 90px;
  left: inherit;
}

.popuptext.showpopup {
  animation: fadepop 9s ease-in-out forwards;
}

#imageid {
  float: left;
  width: 15%;
  margin-left: 8px;
}

@keyframes fadepop {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  5.56% {
    opacity: 1;
    transform: translateY(0);
  }
  38.89% {
    opacity: 1;
    transform: translateY(0);
  }
  44.44% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@media (max-width: 1080px) {
  .popuptext {
    left: 50%;
    top: 60px;
    max-width: 350px !important;
    width: 100% !important;
    transform: translateX(-50%) translateY(10px);
  }
  .popuptext.showpopup {
    animation: fadepop2 9s ease-in-out forwards;
  }
  @keyframes fadepop2 {
    0% {
      opacity: 0;
      transform: translateX(-50%) translateY(10px);
    }
    5.56% {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
    38.89% {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
    44.44% {
      opacity: 0;
      transform: translateX(-50%) translateY(-10px);
    }
    100% {
      opacity: 0;
      transform: translateX(-50%) translateY(-10px);
    }
  }
}

.AGE_GATE {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  color: var(--color-text);
  text-align: center;
  padding-top: 20%;
  font-family: sans-serif;
}

.AGE_GATE .popup {
  background: linear-gradient(to bottom, #7674066e, #4323018f), #815e00;
  padding: 10px 30px 20px;
  border-radius: 10px;
  display: inline-block;
  width: 30dvw;
}
.AGE_GATE h3 {
  font-weight: bold;
  color: var(--color-text);
  text-align: justify;
}
.AGE_GATE .popup h3 img {
  width: 42px;
  margin-right: 10px;
  vertical-align: middle;
}
.AGE_GATE h6 {
  text-align: justify;
  line-height: normal;
  margin: 0 0 20px;
}
.AGE_GATE button {
  padding: 10px 20px;
  margin: 5px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}
.YES_BUTTON {
  background: #ffc800;
  color: var(--color-background);
  width: 100px;
  border: 2px solid #ffc80000;
  font-weight: bold;
}
.NO_BUTTON {
  background: #8d000063;
  color: white;
  width: 100px;
  border: 2px solid #8d0000;
}


/* token-overrides */
:root{--color-text:#ffffff;--color-accent:#ffc300;--color-primary:#efbc15;--color-surface:#13131c;--color-highlight:#fde047;--color-background:#0b0b0b;}

/* custom:49f74c5a4478ffb9a9271ed73eea20753567e62c */
body.light .m-popup__suppress, body.light .m-popup__close{
    color: var(--color-background) !important;
}
.m-popup__suppress, .m-popup__close{
    color: var(--color-text) !important;
}
body.light .m-popup__panel{
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(3px) !important;
    -webkit-backdrop-filter: blur(3px) !important;
}
.m-popup__panel{
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(3px) !important;
    -webkit-backdrop-filter: blur(3px) !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.m-popup__panel img{
    max-height: 80vh;
}
.m-popup{
    z-index: 99999 !important;
}

#clean.t-inner-body {
  padding-top: 40px;
}
#clean .vipRules li {
  line-height: var(--prose-line-height);
}
#clean .m-faq__q--card {
  font-size: 16px;
}
#clean .allbtns {
  top: 0;
}
#clean .splide__arrows.splide__arrows--ltr {
  top: 0;
}
@media (max-width: 767px) {
  #clean.t-inner-body {
    padding-top: 20px;
  }
}

body.light .bank-list .c-listing.m-banner-splide--multi-card .splide__slide .m-banner-splide__img {
    filter: brightness(0.7) saturate(0) !important;
    opacity: 0.7 !important;
}
body.light .support__item-wrapper {
  background: var(--color-light-2);
}
body.light .support__item-title {
  color: var(--color-background) !important;
}
.qrcode {
  border-radius: 10px !important;
}
a.support__item-btn:hover {
  filter: contrast(0.9);
  transition: 0.3s;
}
.jsUw99__download .support__item-icon {
  width: 100% !important;
  height: 100% !important;
  max-width: 180px !important;
  max-height: 180px !important;
}
.jsUw99__download a.support__item-btn {
  padding: 0;
  background: transparent;
  width: 100%;
  max-width: 180px;
}
.jsUw99__download a.support__item-btn:hover {
  transform: translateY(-3px);
  filter: contrast(1);
  transition: 0.2s;
}

.jsUw99__customer-support,
.jsUw99__marketing-support,
.jsUw99__affiliate-support,
.jsUw99__download {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
  margin-top: 10px;
}
.jsUw99__marketing-support {
  margin-bottom: 0;
}

.support__item-wrapper {
  background: var(--color-dark-12);
  border-radius: 10px;
  padding: 34px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.support__item-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.support__item-title {
  color: var(--color-light-2) !important;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 6px;
}

.support__item-subTitle {
  color: var(--color-accent) !important;
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 18px;
}

.support__item-btn {
  background: var(--color-accent);
  color: var(--color-light-9) !important;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: unset;
  text-transform: uppercase;
  padding: 10px 26px;
  border-radius: 4px;
  text-decoration: none;
}

body.light .gamewrap::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 0;
  width: 51px;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(241, 242, 243, 0) 0%,
    rgba(241, 242, 243, 1) 100%
  );
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gamewrap::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 0;
  width: 51px;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(11, 11, 11, 0) 0%,
    rgba(11, 11, 11, 1) 100%
  );
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gamewrap {
  position: relative;
}

body.light .download .dl-expand,
body.light .download .dl-hide {
  background: var(--color-light-3);
}
body.light .download .dl-expand .down-text p {
  color: var(--color-light-10);
}
body.light .download .dl-expand .down-text h5 {
  color: var(--color-light-9);
}
body.light .sb-wrap .smenu-text {
  color: var(--color-light-10);
}

body.light .download .dl-hide:hover,
body.light .socials .dots:hover,
body.light .supportbtn:hover,
body.light .m-lang-zone .cg-lang-dropdown__summary:hover {
  background: var(--color-light-1);
  transition: all 0.3s;
}

.download .dl-hide:hover {
  background: var(--color-dark-11);
  transition: all 0.3s;
}
.body-container.active .download .dl-hide {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.body-container.active .download {
  display: flex;
  gap: 10px;
  justify-content: space-evenly;
  padding: 0;
  height: 36px;
}
.body-container.active .download .dl-expand {
  display: none;
}

.body-container.active .download .dl-hide img {
  width: 20px;
  height: 20px;
}

.download .dl-hide {
  display: none;
  background: var(--color-dark-12);
  border-radius: 8px;
  transition: 0.3s;
}
.download .dl-expand {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-dark-12);
  border-radius: 8px;
  transition: 0.3s;
  padding: 10px;
  height: 70px;
}
.download {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0;
}
.download .dl-expand img {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  object-fit: cover;
  border-radius: 8px;
}

.download .dl-expand .down-text {
  flex: 1;
  min-width: 0;
}

.download .dl-expand .down-text h5 {
  margin: 0 0 6px;
  color: var(--color-text);
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
}

.download .dl-expand .down-text p {
  margin: 0;
  color: var(--color-dark-13);
  font-size: 11px;
  line-height: 11px;
}

.download .cg-lang-dropdown__chev {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: 0.2s;
}
body.light .download .cg-lang-dropdown__chev {
  border-right: 2px solid var(--color-light-9);
  border-bottom: 2px solid var(--color-light-9);
}

.hometab-mobile {
  display: none;
  margin: 15px 0;
}
.sopnImg.uw88_classic {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/badge1_1-medium.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.sopnImg.uw88_steel {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/badge2_1-medium.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.sopnImg.uw88_silver {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/badge3_1-medium.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.sopnImg.uw88_gold {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/badge4_2-medium.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.sopnImg.uw88_platinum {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/badge5_1-medium.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.sopnImg.uw88_diamond {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/badge6_1-medium.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.mobile-bottom-nav {
    position: fixed;
    left: 10px;
    right: 0;
    bottom: 10px;
    width: calc(100% - 20px);
    z-index: 10000;
    padding: 0;
    display: none;
    border-radius: 100px;
    height: 78px;
    box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.1);
}

ul.btm-menu-nav {
height: 78px;
    background: unset;
}
.darkMode .mobile-btm-sec,
.mobile-btm-sec {
  background: transparent;
}
.darkMode .mobile-bottom-nav {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.mobile-bottom-nav {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.darkMode ul.btm-menu-nav {
    background: unset;
}
body.light ul.btm-menu-nav {
    background: unset;
}
.darkMode .footerterms {
  color: var(--color-dark-4);
}
.footerterms {
  text-align: center;
}
body.light .footerterms {
  color: var(--color-light-10);
}
.darkMode .footerterms a {
  color: var(--color-text) !important;
}
body.light .footerterms a {
  color: var(--color-light-9) !important;
}
.footerterms a:hover {
  text-decoration: underline !important;
}
.footerterms a {
  font-size: 14px;
}

.crbox {
  font-size: 14px;
}

body.light .crbox {
  background: var(--color-light-2);
}
.darkMode .crbox {
  background: var(--color-surface);
  color: var(--color-text);
}

.m-template-uw99id .m-module-hub__section + .m-module-hub__section,
.m-template-uw99id .m-news-editorial,
.m-template-uw99id .m-module-hub__listing,
.m-template-uw99id .c-module-hub.m-module-hub {
  margin-top: 0;
}
article.c-news.m-news--lead,
article.c-news.m-news-card {
  padding: 15px !important;
}
nav.m-news-detail__crumb,
#hub-items-title {
  display: none;
}

.m-detail-back a.m-btn.m-btn--ghost.m-casino-btn.m-casino-btn--ghost {
  background: var(--color-accent);
  color: var(--color-dark-1) !important;
  border-radius: 10px;
  text-transform: uppercase;
}

.m-detail-back {
  margin: auto;
  margin-top: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.m-template-uw99id .m-news__excerpt {
  display: -webkit-box;
  display: box;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.m-template-uw99id .m-news-detail__divider,
.m-template-uw99id .m-gallery-detail__divider,
.m-template-uw99id .m-faq-detail__divider {
  display: none;
}
.m-template-uw99id #page-title,
.m-template-uw99id .c-page h1,
.m-template-uw99id .prose h1 {
  letter-spacing: inherit;
  text-shadow: none;
}
.m-template-uw99id .m-news-detail__crumb,
.m-template-uw99id .m-gallery-detail__crumb,
.m-template-uw99id .m-faq-detail__crumb {
  font-size: 14px;
}
body.light .m-news-detail__crumb,
body.light .m-gallery-detail__crumb,
body.light .m-faq-detail__crumb {
  color: var(--color-light-7);
}

body.light .m-news__date,
body.light h2.m-news__headline.m-news__headline--lead,
body.light p.m-news__excerpt {
  color: var(--color-light-7) !important;
}

body.light article.c-news {
  background: var(--color-light-2) !important;
}
.m-template-uw99id .m-news-detail__cover,
.m-template-uw99id .m-faq-detail__cover {
  border-radius: 10px;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  background: transparent;
}

body.light .m-news-detail__meta,
body.light .m-gallery-detail__meta {
  background: var(--color-light-2);
  color: var(--color-light-7);
}
.m-news-detail__meta,
.m-gallery-detail__meta {
  border-radius: 10px !important;
  border: 0 !important;
}
body.light #page-title,
body.light .m-news-detail__crumb-sep,
body.light .m-gallery-detail__crumb-sep,
body.light .m-faq-detail__crumb-sep,
body.light .m-news-detail__meta time,
body.light .m-gallery-detail__meta time {
  color: var(--color-light-7);
}
body.light .m-news-detail--lay-editorial .m-news-detail__article {
  color: var(--color-light-7);
}
.m-news-detail--lay-editorial .m-news-detail__article {
  max-width: 100% !important;
}
ul.c-listing.m-module-hub__categories,
h2#hub-cats-title,
form.m-module-hub__search.m-listing-search.cms-scroll-target.is-inview,
span.m-module-hub__category-cta {
  display: none;
}
li.m-module-hub__category {
  border-radius: 45px;
}

ul.c-listing.m-module-hub__categories li:first-child {
  margin-left: 0;
}
.darkMode ul.c-listing.m-module-hub__categories li:not(.inactive),
.darkMode ul.c-listing.m-module-hub__categories li:hover {
  color: var(--color-text);
  background: var(--color-surface) !important;

  transition: 0.2s;
}
ul.c-listing.m-module-hub__categories {
  padding: 0;
  border-radius: 45px;
  margin: 0 0 15px;
  max-width: fit-content;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: auto;
  margin-bottom: 0;
}

article.c-news {
  max-width: 100% !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  background: var(--color-surface) !important;
}
.m-news-editorial__grid {
  grid-template-columns: repeat(
    auto-fill,
    minmax(min(100%, 300px), 1fr)
  ) !important;
}
.m-news-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.m-news-card__body {
  padding: calc(var(--space-unit) * 1.05) calc(var(--space-unit) * 1.15);
}
span.m-news__read-more {
  background: var(--color-accent) !important;
  color: var(--color-background) !important;
  padding: 14px 20px;
  border: 2px solid var(--color-accent) !important;
  font-size: 16px !important;
  margin-bottom: calc(var(--space-unit) * 1);
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1;
  border-radius: 5px;
  transition: all 0.25s;
}

.rankpage .cms-transferlist-root .m-transferlist__viewport {
  position: relative;
  height: max-content !important;
  max-height: max-content !important;
  overflow: hidden !important;
}
.bmimg img {
  padding: 2.5px;
}
.bmimg img.active {
  display: none;
}
body.light .bmimg img {
  filter: brightness(0.2) !important;
}
body.light .bmtext {
  color: var(--color-background);
}

.bmenu-link.active .bmimg img.inactive {
  display: none;
}

.bmenu-link.active .bmimg img.active {
  display: block;
}

.firstbtm .pressme {
  display: none;
}

.new-sidemenu-btn.active .firstbtm .nopress {
  display: none;
}

.new-sidemenu-btn.active .firstbtm .pressme {
  display: block;
}

.vip-slide.active {
  opacity: 1;
  z-index: 2;
}

.vip-slider {
  position: relative;
  width: 100%;
}

.vip-viewport {
  width: 100%;
  overflow: hidden;
}

.vip-slide-track {
  display: flex;
  transition: transform 0.4s ease;
}

.vip-slide {
  flex: 0 0 100%;
  width: 100%;
}

.vip-arrow {
  cursor: pointer;
}

.vip-arrow.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.vip-arrow.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.darkMode .vip-arrow {
  fill: var(--color-text);
}
body.light .vip-arrow {
  fill: var(--color-light-9);
}
.vip-arrow.left {
  transform: rotate(-180deg);
}
.mobile .vip-level-image{
  flex-direction: column;
}
.mobile .vip-level-image p{
  font-weight:bold;
  font-size: 24px;
  margin: 0;
  color: var(--color-text);
}
body.light .mobile .vip-level-image p{
  color: var(--color-light-9);
}
.vip-level-image img {
  max-width: 208px !important;
  height: 208px !important;
}

.vipbanner-d.desktop,
.vipWrapper .desktop {
  display: block !important;
}
.vipbanner-m.mobile,
.vipWrapper .mobile {
  display: none !important;
}

body.light .viptitle {
  color: var(--color-light-7);
}

body.light .vipTable .vipRow:nth-child(1) {
  border-top: 1px solid var(--color-light-5);
}
.darkMode .vipTable .vipRow:nth-child(1) {
  border-top: 1px solid var(--color-dark-4);
}
.darkMode .vipTable .vipRow {
  border-bottom: 1px solid var(--color-dark-4);
}
body.light .vipTable .vipRow {
  border-bottom: 1px solid var(--color-light-5);
}

.uw99card {
  max-width: 848px !important;
  margin-top: 80px !important;
}

.right-vip p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.new-vip-banner {
  position: relative;
  border-radius: 10px !important;
  overflow: hidden;
}

.vipbanner-d {
  height: 325.66px !important;
  border-radius: 0 !important;
}
.m-template-uw99id .prose h2,
.m-template-uw99id .prose h3 {
  letter-spacing: 0;
  line-height: 1.1;
}

.vip-highlight {
  background: transparent;
}
.golden,
.goldtext {
  color: var(--color-accent) !important;
}

body.light .termscwrap p,
body.light .termscwrap li,
body.light .termscwrap li::marker {
  color: var(--color-light-7) !important;
}

.termscwrap h2 {
  color: var(--color-accent) !important;
  font-weight: bold;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 20px;
}

.popuptext {
  top: 96px;
  z-index: 2;
}

body.light .circle {
  color: var(--color-light-7);
}
.subbanner .c-listing.m-banner-splide .splide__track {
  pointer-events: none;
}

body.light .vipRules ul li,
body.light .vipRules ul li::marker {
  color: var(--color-light-7) !important;
}

body.light ul.terms li,
body.light ul.terms li::marker {
  color: var(--color-light-7) !important;
}
body.light .vipContent thead th {
  background: var(--color-light-1);
  color: var(--color-light-7);
}
body.light .vipContent tbody tr {
  border-bottom: 1px solid var(--color-light-5) !important;
}
body.light .vipContent td,
body.light .fgtitle {
  color: var(--color-light-9);
}
body.light .bstt2,
body.light .bstt3,
body.light .bonustable p,
body.light .bonustable2 p,
body.light .bttitle h5,
body.light .bstt4 {
  color: var(--color-light-7);
}

.vipContent .fgtitle {
  margin: 0;
}
.bttitle h5 {
  line-height: 1.2;
  margin-top: 10px;
}
.vipContent table {
  margin: 0;
}
.vipContent td,
.vipContent th,
.vipContent thead {
  border: 0 !important;
  vertical-align: middle;
}
.vipContent tbody tr {
  border-bottom: 1px solid var(--color-dark-4) !important;
  vertical-align: middle;
}
.bonustable img,
.bonustable2 img {
  width: 60px !important;
  height: 60px !important;
  max-width: 60px !important;
}
.bonustable {
  width: fit-content;
  max-width: 100%;
  grid-template-columns: 60px 50px 60px 50px 60px;
}
.table-scroll::-webkit-scrollbar,
.lotteryuww-sec::-webkit-scrollbar,
.table_component::-webkit-scrollbar,
.bonustable2::-webkit-scrollbar {
  height: 8px;
  border: 0;
}
.table-scroll::-webkit-scrollbar-thumb,
.lotteryuww-sec::-webkit-scrollbar-thumb,
.table_component::-webkit-scrollbar-thumb,
.bonustable2::-webkit-scrollbar-thumb {
  height: 8px;
  border: 0;
}
body.light .table-scroll::-webkit-scrollbar,
body.light .lotteryuww-sec::-webkit-scrollbar,
body.light .table_component::-webkit-scrollbar,
body.light .bonustable2::-webkit-scrollbar {
  background: var(--color-light-5) !important;
}
body.light .table-scroll::-webkit-scrollbar-thumb,
body.light .lotteryuww-sec::-webkit-scrollbar-thumb,
body.light .table_component::-webkit-scrollbar-thumb,
body.light .bonustable2::-webkit-scrollbar-thumb {
  background: var(--color-light-5) !important;
  border: 0 !important;
}
body.light .table-scroll::-webkit-scrollbar-track,
body.light .lotteryuww-sec::-webkit-scrollbar-track,
body.light .table_component::-webkit-scrollbar-track,
body.light .bonustable2::-webkit-scrollbar-track {
  background: var(--color-light-1) !important;
}

body.light .m-lotto-tab.active {
  color: var(--color-dark-1);
}
body.light .m-lotto-tab {
  color: var(--color-light-10);
}
body.light .m-lotto-tabs {
  background: var(--color-light-2);
}
body.light #cms-lotto-block .m-lotto-card__section-title,
body.light #cms-lotto-block .m-lotto-card__prize-label,
body.light #cms-lotto-block .m-lotto-card__draw-id {
  color: var(--color-light-10);
}
body.light #cms-lotto-block .m-lotto-card__draw-id {
  border-top: 1px solid var(--color-light-5);
}
body.light #cms-lotto-block .m-lotto-card__prize-num,
body.light #cms-lotto-block .m-lotto-card__section--subdraw .m-lotto-card__cell,
body.light #cms-lotto-block .m-lotto-card__rank,
body.light #cms-lotto-block .m-lotto-card__num,
body.light #cms-lotto-block .m-lotto-card__nums {
  background: var(--color-light-3);
  color: var(--color-light-9);
  border: 1px solid var(--color-light-5);
}

body.light #cms-lotto-block .m-lotto-card {
  background: var(--color-light-2);
}
body.light #cms-lotto-block .m-lotto-toolbar__credit-line,
body.light #cms-lotto-block .m-lotto-toolbar__label {
  color: var(--color-light-9);
}
#cms-lotto-block .m-lotto-toolbar__credit-line,
#cms-lotto-block .m-lotto-toolbar__label {
  font-size: 14px;
  color: var(--color-text);
}
body.light #cms-lotto-block .m-lotto-toolbar {
  background: var(--color-light-2);
}
body.light .lotteryTableColHeader {
  background: var(--color-light-2);
}
body.light .lotteryTable td {
  border: 1px solid var(--color-light-1) !important;
  color: var(--color-light-9) !important;
}
body.light .lotteryTableRow td {
  color: var(--color-light-9);
}
body.light .lotteryTableRow {
  background: var(--color-light-2);
}
.darkMode .lotteryTableRow {
  background: var(--color-dark-11);
}
.m-lotto-toolbar input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
#cms-lotto-block .m-lotto-toolbar__btn {
  font-size: 14px;
  border: 0;
}
.m-template-uw99id .m-lotto-toolbar__input {
  border: 0;
  border-radius: 0;
}

.lotteryTable td {
  border: 1px solid var(--color-background) !important;
}
.lotteryuww-sec {
  background: transparent;
  padding: 0;
  border-radius: 10px;
  scrollbar-width: inherit;
  -ms-overflow-style: inherit;
}
#cms-lotto-block .m-lotto-card__date-label {
  color: var(--color-background);
}
#cms-lotto-block .m-lotto-card__head {
  background: linear-gradient(
      165deg,
      color-mix(in srgb, var(--color-text, #f1f5f9) 18%, transparent) 0%,
      color-mix(in srgb, #efbc15 35%, transparent) 42%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      var(--lotto-accent) 0%,
      var(--lotto-accent-head) 100%
    );
}
#cms-lotto-block .m-lotto-card,
#cms-lotto-block .m-lotto-toolbar {
  box-shadow: none;
  border: 0;
}
.lotteryTable {
  white-space: nowrap;
  margin: 0;
}
.lotteryTable .lotteryTableHeader td {
  color: var(--color-background) !important;
}

.m-lotto-tabs {
  position: relative;
  padding: 10px !important;
  height: auto;
  background: var(--color-surface);
  border-radius: 10px;
  gap: 10px;
  display: grid;
  grid-template-rows: repeat(1, auto);
  grid-auto-flow: column;
  grid-auto-columns: minmax(100px, auto);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-top: 10px;
  margin-bottom: 20px;
}
.m-lotto-tab.active {
  background: var(--color-accent);
  color: var(--color-dark-1);
  border: 1px solid var(--color-accent);
  font-weight: bold;
}
.m-lotto-tab {
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--color-dark-13);
  height: 42px;
  line-height: 1.1;
  padding: 0 5px;
}
.mobile .m-lotto-card.active-hide {
  display: none;
}
.m-lotto-result__item:has(.m-lotto-card.active-hide) {
  display: none !important;
}

.t-inner-body {
  padding-top: 96px;
}
ul#promo-tab {
  margin-bottom: 0 !important;
}
.slider-sec .c-listing.m-banner-splide {
  margin-block: 0;
}
body.light .gamepage-container hr {
  border-color: var(--color-light-5);
}
.darkMode .gamepage-container hr {
  border-color: var(--color-dark-4);
}
.ctasec {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ctasec h3 {
  margin: 0;
  color: var(--color-text);
  line-height: 1.2;
  padding-right: 20px;
}
body.light .ctasec h3 {
  color: var(--color-light-9);
}
.vmbtn {
  background: var(--color-primary);
  color: var(--color-background);
  font-size: 16px;
  padding: 2px 10px;
  font-weight: bold;
  width: 140px;
  height: 50px;
  border-radius: 5px;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2em;
}
.table-scroll table {
  white-space: nowrap;
  margin-bottom: 0;
}

.darkMode a.uwwtab.active,
.darkMode a.uwwtab:hover {
  background: var(--color-accent) !important;
  color: var(--color-dark-1) !important;
}
a.uwwtab:hover span {
  filter: brightness(0);
}
.darkMode a.uwwtab {
  color: var(--color-dark-13) !important;
}
body.light a.uwwtab.active,
body.light a.uwwtab:hover {
  background: var(--color-accent) !important;
  color: var(--color-dark-1) !important;
}
body.light a.uwwtab {
  color: var(--color-light-11) !important;
}
span.gamitabicon {
  width: 16px;
  height: 16px;
}
span.gamitabicon.gicon0 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/fire-flame-curved-medium.webp);
  background-size: contain;
  filter: saturate(0);
}
span.gamitabicon.gicon1 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu_icon-29_1-medium.webp);
  background-size: contain;
  filter: saturate(0);
}
span.gamitabicon.gicon2 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu_icon-27_1-medium.webp);
  background-size: contain;
  filter: saturate(0);
}
span.gamitabicon.gicon3 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu_icon-28_1-medium.webp);
  background-size: contain;
  filter: saturate(0);
}
span.gamitabicon.gicon4 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu_icon-32_1-medium.webp);
  background-size: contain;
  filter: saturate(0);
}
span.gamitabicon.gicon5 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu_icon-31_1-medium.webp);
  background-size: contain;
  filter: saturate(0);
}
span.gamitabicon.gicon6 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu_icon-30_1-medium.webp);
  background-size: contain;
  filter: saturate(0);
}
a.uwwtab {
  gap: 5px;
  height: 37px;
  line-height: 1;
}

a.uwwtab.active span.gamitabicon.gicon0 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/fire-flame-curved-medium.webp);
  background-size: contain;
}
a.uwwtab.active span.gamitabicon.gicon1 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu_icon-29_1-medium.webp);
  background-size: contain;
}
a.uwwtab.active span.gamitabicon.gicon2 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu_icon-27_1-medium.webp);
  background-size: contain;
}
a.uwwtab.active span.gamitabicon.gicon3 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu_icon-28_1-medium.webp);
  background-size: contain;
}
a.uwwtab.active span.gamitabicon.gicon4 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu_icon-32_1-medium.webp);
  background-size: contain;
}
a.uwwtab.active span.gamitabicon.gicon5 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu_icon-31_1-medium.webp);
  background-size: contain;
}
a.uwwtab.active span.gamitabicon.gicon6 {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu_icon-30_1-medium.webp);
  background-size: contain;
}
a.uwwtab.active span {
  filter: brightness(0);
}

body.light .theme-toggle.shrink {
  background-color: var(--color-light-1);
}
body.light .theme-toggle.shrink .light-icon {
  filter: brightness(0.2) !important;
}

.registerform.lv2-remote-register .lv2-remote-icon-slot {
  color: var(--color-background);
}
.m-template-uw99id .m-btn--icon,
.m-template-uw99id .lv2-remote-icon-btn.lv2-captcha-reload {
  background: var(--color-accent);
}
#registerform_Currency {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
body.light .registerpopup-header{
    color: var(--color-light-9);
}
.registerpage .regimg {
  border-radius: 10px !important;
}
.regimg {
  border-radius: 0 !important;
  height: 100% !important;
  object-fit: cover;
}
.reglogimg {
  height: 100%;
  object-fit: cover;
  display: block;
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/reg-girl-medium.webp);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}
.uwlog-left {
  height: 100%;
}

.darkMode input#customformv1_submit,
.darkMode input#customform_submit,
.darkMode input#registerform_btnSubmit {
  box-shadow: none;
}
input#registerform_btnSubmit:hover {
  filter: brightness(1.06);
}
.m-template-uw99id .m-btn--accent:hover,
.m-template-uw99id .m-form__submit:hover,
.m-template-uw99id .lv2-remote-submit:hover:not(:disabled) {
  box-shadow: none;
}

.m-template-uw99id .m-btn--accent,
.m-template-uw99id .m-form__submit,
.m-template-uw99id .m-contact-page__submit,
.m-template-uw99id .lv2-remote-submit,
.m-template-uw99id .m-lotto-toolbar__btn,
.m-template-uw99id .c-newsletter-php .m-form__submit,
input#customformv1_submit,
input#customform_submit,
input#registerform_btnSubmit {
  background-color: var(--color-primary) !important;
  color: var(--color-background) !important;
}

.darkMode .myinputcss input,
.darkMode .myinputcss inputtextarea,
.darkMode .myinputcss select {
  background-color: var(--color-dark-12) !important;
  color: var(--color-text);
  border: 0 !important;
}

.m-template-uw99id .m-btn--secondary,
.m-template-uw99id .lv2-remote-secondary-btn,
.m-template-uw99id .lv2-remote-icon-btn,
.m-template-uw99id .btnCheckUser.lv2-btn-check-user {
  min-width: 100%;
}
.lv2-remote-inline.lv2-remote-inline--check {
  gap: clamp(0.65rem, 2vw, 1rem);
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, auto);
}

input#registerform_UserName {
  width: auto !important;
  float: none;
}

input.btnCheckUser.lv2-btn-check-user.lv2-remote-secondary-btn.m-btn.m-btn--secondary {
  background: var(--color-primary) !important;
  color: var(--color-background) !important;
  font-size: 14px;
  border-radius: 10px !important;
  line-height: 14px;
  text-transform: capitalize;
  margin: 0;
  min-height: auto;
  max-width: 100%;
  width: max-content;
}
.registerform.lv2-remote-register .lv2-remote-icon-btn.lv2-captcha-reload,
.customform.lv2-remote-login .lv2-remote-icon-btn.lv2-captcha-reload {
  max-width: 48px;
}
.registerform.lv2-remote-register .lv2-remote-captcha-grid {
  display: grid;
  grid-template-columns: auto max-content;
  gap: clamp(0.65rem, 2vw, 1rem);
  align-items: center;
}
input#registerform_varifycode {
  width: 100%;
  float: unset;
}
.customform.lv2-remote-login .lv2-remote-input--captcha-num,
.registerform.lv2-remote-register .lv2-remote-input--captcha-num {
  max-width: 100%;
}
.customform.lv2-remote-login .lv2-remote-captcha-visual,
.registerform.lv2-remote-register .lv2-remote-captcha-visual {
  display: grid;
  align-items: center;
  gap: clamp(0.65rem, 2vw, 1rem);
  grid-template-columns: minmax(0, 100px) minmax(0, auto);
}
.split-row {
  display: flex;
  gap: 30px;
  align-items: stretch;
}
.split-col {
  width: 50%;
}
.registerform.lv2-remote-register .lv2-remote-feedback.lv2-msg {
  display: none;
}
input#registerform_Email {
  background-image: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/email.png) !important;
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 16px center;
}

body.light .m-faq-pop__panel::after {
  background: linear-gradient(
    180deg,
    rgb(241 242 243 / 0%) 0%,
    rgb(241 242 243) 100%
  );
}

body.light .m-faq-pop__close {
  background: var(--color-light-2) !important;
  color: var(--color-light-9) !important;
}

.mobile-sidemenu .theme-toggle.shrink {
  display: none !important;
}

.m-faq-pop__title {
  font-size: 24px;
  font-weight: bold;
}
.m-faq-pop__panel h3 {
  margin-top: 10px;
}
body.light .m-faq-pop__panel td,
body.light .m-faq-pop__panel h2,
body.light .m-faq-pop__panel p,
body.light .m-faq-pop__panel h3,
body.light .m-faq-pop__panel li,
body.light .m-faq-pop__panel li::marker {
  color: var(--color-light-9);
}

body.light .m-faq-pop__panel {
  background: var(--color-light-1);
}

.darkMode .theme-toggle.shrink {
  background-color: var(--color-background);
}
.theme-toggle.shrink .theme-option {
  padding: 0;
  width: 100%;
  height: 100%;
}
.theme-toggle.shrink .dark-icon {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu_icon-41_1-medium.webp);
  background-size: contain;
}
.theme-toggle.shrink .light-icon {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu_icon-40_1-medium.webp);
  background-size: contain;
  filter: brightness(0.7);
}
.theme-toggle.shrink .dark-icon,
.theme-toggle.shrink .light-icon {
  display: none;
  width: 20px;
  height: 20px;
}

.theme-toggle.shrink .dark-icon.active,
.theme-toggle.shrink .light-icon.active {
  display: inline-block;
}
.body-container.active .side-menu {
  height: calc(100% - 133px);
  margin-top: 133px;
}
body.light .header-wrap.active .changeMode {
  border-bottom: 1px solid var(--color-light-5);
}
.header-wrap.active .changeMode {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  height: 133px;
  justify-content: center;
  gap: 10px;
}
.header-wrap .theme-toggle.shrink {
  display: none !important;
}
.header-wrap.active .theme-toggle.shrink {
  display: block !important;
}

.theme-toggle.mbsidemenu {
  display: none !important;
}

body.light .mobile-sidemenu .socials {
  border-top: 1px solid var(--color-light-5);
}
body.light .modal-content.mobile-side {
  background: var(--color-light-2);
}
body.m-template-uw99id.modal-open.light .burger .opncls,
body.m-template-uw99id.light .burger .opncls {
  filter: none;
}

body.m-template-uw99id.modal-open .burger .opncls {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/cross2-medium.webp) !important;
  background-size: contain !important;
  filter: invert(1);
}
body.m-template-uw99id .burger .opncls {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/burger-menu.svg) !important;
  background-size: contain !important;
  filter: invert(1);
}

.modal.left .modal-dialog {
  z-index: 99;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.5);

  z-index: 98;

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.3s ease;
}

.modal-backdrop.show {
  opacity: 1;
  visibility: visible;
}

body.light
  .bank-list
  .c-listing.m-banner-splide--multi-card
  .splide__slide
  .m-banner-splide__img {
  filter: brightness(0.7);
}
body.light .ai-answer.subtle > .ai-answer__summary::after {
  border-right: 1.5px solid var(--color-light-10);
  border-bottom: 1.5px solid var(--color-light-10);
}

body.light .footer-logo img {
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.9));
}

body.light .providers-slider .c-listing.m-banner-splide .m-banner-splide__img {
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.4));
}
body.light .m-site-footer {
  border-top: 1px solid var(--color-light-5);
  background: transparent;
}

body.light .footer-content h3 {
  color: var(--color-light-9);
}
body.light .footer-content p {
  color: var(--color-light-10);
}
body.light .copyright,
body.light .ai-answer.subtle > .ai-answer__summary,
body.light .ai-answer.subtle {
  color: var(--color-light-10) !important;
}

body.light .m-card__link.m-faq-card__shell {
  background: var(--color-light-2);
}
body.light .m-faq__q--card {
  color: var(--color-light-9) !important;
}
body.light .cms-transferlist-root .m-transferlist__row:hover {
  background: var(--color-light-3);
}
body.light
  .providers-slider
  .c-listing.m-banner-splide--multi-card
  .splide__slide
  .m-banner-splide__link {
  box-shadow: inset 0 0 8px rgb(0 0 0 / 15%) !important;
  background: var(--color-light-2) !important;
}

body.light .m-transferlist__viewport.m-transferlist__viewport--marquee::before {
  background: linear-gradient(
    0deg,
    rgba(241, 242, 243, 0) 0%,
    rgba(241, 242, 243, 0.7) 100%
  );
}
body.light .m-transferlist__viewport.m-transferlist__viewport--marquee::after {
  background: linear-gradient(
    180deg,
    rgba(241, 242, 243, 0) 0%,
    rgba(241, 242, 243, 1) 100%
  );
}

body.light span.m-transferlist__th {
  color: var(--color-light-10) !important;
}
body.light .cms-transferlist-root .m-transferlist__row,
body.light .m-transferlist__thead {
  background: var(--color-light-2);
}
body.light .cms-transferlist-root .m-transferlist__value {
  color: var(--color-light-9);
}
body.light .allbtns,
body.light button.splide__arrow.splide__arrow--prev,
body.light button.splide__arrow.splide__arrow--next {
  background: var(--color-light-2) !important;
}
body.light .allbtns:hover,
body.light button.splide__arrow.splide__arrow--prev:hover,
body.light button.splide__arrow.splide__arrow--next:hover {
  background: var(--color-light-3) !important;
  filter: none;
}

body.light .c-listing.m-banner-splide .splide__arrow svg {
  fill: var(--color-light-9);
}

body.light .allbtns p {
  color: var(--color-light-9);
}
body.light .uw99-footer hr {
  border-top: 1px solid var(--color-light-5);
}
body.light .socials {
  border-bottom: 1px solid var(--color-light-5);
}

.m-template-uw99id .m-btn--accent,
.m-template-uw99id .m-form__submit,
.m-template-uw99id .m-contact-page__submit,
.m-template-uw99id .lv2-remote-submit,
.m-template-uw99id .m-lotto-toolbar__btn,
.m-template-uw99id .c-newsletter-php .m-form__submit {
  border: 0;
  box-shadow: none;
}
body.light .m-form__input,
body.light .m-form__textarea,
body.light .m-form__select,
body.light .m-contact-page__input,
body.light .m-contact-page__textarea,
body.light .lv2-remote-input,
body.light .lv2-remote-select,
body.light .m-lotto-toolbar__input,
body.light .m-livescorepro-field__control,
body.light .c-newsletter-php .m-form__input {
  background: var(--color-light-2);
  color: var(--color-light-7);
}

body.light .lv2-remote-field__lbl {
  color: var(--color-light-9);
}
body.light figcaption.m-gallery__caption.m-gallery__caption--below b {
  color: var(--color-light-9);
}
body.light .recent-slider .m-gallery__caption {
  color: var(--color-light-10);
}

body.light .m-lang-zone .m-lang-switch__link:hover {
  background: var(--color-light-3) !important;
}
body.light .m-lang-zone .cg-lang-dropdown__item + .cg-lang-dropdown__item {
  border-top: 1px solid var(--color-border-light);
}
body.light .m-lang-zone .m-lang-switch__link::before {
  border: 1px solid var(--color-border-light);
}
body.light .m-lang-zone .m-lang-switch__link {
  color: var(--color-light-9) !important;
}
body.light .mobile-sidemenu .social-popup {
  background: var(--color-light-1);
}

body.light .mobile-sidemenu .m-lang-zone .cg-lang-dropdown__menu {
  background: var(--color-light-1);
}

body.light .social-popup a {
  color: var(--color-light-9) !important;
}
body.light .m-lang-zone .cg-lang-dropdown__menu {
  background: var(--color-light-2);
}
body.light .social-popup {
  background: var(--color-light-2);
}
body.light .sidemenu-nav-btm:before {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}
body.light .socials .dots,
body.light .supportbtn,
body.light .m-lang-zone .cg-lang-dropdown__summary {
  background: var(--color-light-3);
  color: var(--color-light-9);
}

body.light ul.nav.sidemenu-nav li a.m-nav__link .smenu-text {
  color: var(--color-light-10);
}
body.light ul.nav.sidemenu-nav li.active a.m-nav__link .smenu-text {
  color: var(--color-light-9) !important;
}
body.light ul.nav.sidemenu-nav li.active a.m-nav__link,
body.light ul.nav.sidemenu-nav li.active a.m-nav__link:hover {
  background: var(--color-light-1) !important;
}

body.light button.sidemenu-btn {
  background: var(--color-light-3);
}
body.light .header-logomenu {
  background: var(--color-light-2);
}
body.light .footer-col h4 {
  color: var(--color-light-9);
}
body.light .footer-menu a {
  color: var(--color-light-10) !important;
}
body.light .footer-menu a:hover .siicon {
  filter: brightness(0);
}
body.light .footer-menu a:hover {
  color: var(--color-light-9) !important;
}
body.light .logo img {
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.9));
}
body.light .header-wrap {
  background: var(--color-light-1);
  border-bottom: 1px solid var(--color-light-5);
}
button {
  cursor: pointer;
}
body.light button.login-btn {
  border: 0;
}
button.login-btn {
  font-weight: bold;
}
body.light .htmenu:hover p {
  color: var(--color-dark-1);
  transition: all 0.3s;
}
body.light .htmenu p {
  color: var(--color-light-10);
}
body.light .htmenu.current p {
  color: var(--color-dark-1);
  transition: all 0.3s;
}

span.m-transferlist__th {
  color: var(--color-dark-13) !important;
}

.mobile-sidemenu ul.nav.sidemenu-nav {
  padding: 75px 10px 15px 10px !important;
}
.mobile-sidemenu .socials {
  border-top: 1px solid var(--color-dark-4);
}
.mobile-sidemenu .social-popup {
  left: calc(36px + 10px);
  background: var(--color-dark-12);
}

.mobile-sidemenu ul.nav.sidemenu-nav li a.m-nav__link {
  border-radius: 10px;
}
.mobile-sidemenu .sm-btm-wrap {
  padding: 0 10px;
}
.mobile-sidemenu .sidemenu-nav-btm:before {
  display: none;
}

.mobile-sidemenu .download {
  margin-bottom: 10px;
}

.sidemenu-nav-btm:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: -39px;
  width: 100%;
  height: 40px;
  background: linear-gradient(
    180deg,
    rgba(19, 19, 28, 0) 0%,
    rgba(19, 19, 28, 1) 100%
  );
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.darkMode .modal-content.mobile-side {
  background: var(--color-surface);
}

.social-dropdown {
  position: relative;
  display: inline-block;
}

.social-dropdown summary {
  list-style: none;
  cursor: pointer;
}

.social-dropdown summary::-webkit-details-marker {
  display: none;
}

.social-popup {
  position: absolute;
  left: calc(100% + 20px);
  bottom: 0;

  width: 193px;
  display: none;

  background: var(--color-surface);
  border-radius: 10px;
  padding: 0;
}

.social-dropdown[open] .social-popup {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}

.social-popup a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  color: var(--color-text);
  text-decoration: none;
}
.sidemenu-wrapper {
  overflow-x: inherit;
  overflow-y: inherit;
}
.m-lang-zone {
  display: block;
  flex-shrink: 0;
  position: relative;
  z-index: 99999;
  margin-left: 10px;
}

.m-lang-zone .cg-lang-dropdown,
.m-lang-zone .cg-lang-dropdown__branch {
  position: relative;
}

.m-lang-zone details.cg-lang-dropdown__details {
  position: relative;
  cursor: pointer;
  pointer-events: auto;
}

.m-lang-zone .cg-lang-dropdown__summary {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px !important;
  border: 0;
  background: var(--color-dark-12);
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  position: relative;
  border-radius: 8px;
  width: 85px;
  padding: 0 10px;
  transition: all 0.3s;
}

.m-lang-zone .cg-lang-dropdown__summary > * {
  pointer-events: none;
}

.m-lang-zone .cg-lang-dropdown__summary::-webkit-details-marker {
  display: none;
}

.m-lang-zone .cg-lang-dropdown__summary::marker {
  display: none;
}
html[lang="en"] .m-lang-zone .cg-lang-dropdown__summary::before {
  background: url(https://flagcdn.com/w40/us.png) center / cover no-repeat;
}

html[lang="id"] .m-lang-zone .cg-lang-dropdown__summary::before {
  background: url(https://flagcdn.com/w40/id.png) center / cover no-repeat;
}

.m-lang-zone .cg-lang-dropdown__summary::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}
span.cg-lang-dropdown__current {
  line-height: 1;
}

.m-lang-zone .cg-lang-dropdown__chev {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);

  transition: 0.2s;
}

.m-lang-zone details[open] .cg-lang-dropdown__chev {
  transform: rotate(-225deg);
}

.m-lang-zone .cg-lang-dropdown__menu {
  position: absolute;
  top: auto;
  left: calc(100% + 20px);
  right: auto;
  bottom: 0;
  width: 146px;
  margin: 0;
  gap: 0;
  padding: 0;
  list-style: none;
  background: var(--color-surface);
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  pointer-events: auto;
}

.m-lang-zone .cg-lang-dropdown__item {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}

.m-lang-zone .cg-lang-dropdown__item + .cg-lang-dropdown__item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.m-lang-zone .m-lang-switch__link {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 54px;
  gap: 12px;
  padding: 0 18px !important;
  margin: 0 !important;
  box-sizing: border-box;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
  pointer-events: auto !important;
  cursor: pointer !important;
}

.m-lang-zone .m-lang-switch__link::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  pointer-events: none;
  border: 1px solid var(--color-dark-13);
}

.m-lang-zone .m-lang-switch__link[href="/en"]::before,
.m-lang-zone .m-lang-switch__link[hreflang="en"]::before {
  background-image: url("https://flagcdn.com/w40/us.png");
}

.m-lang-zone .m-lang-switch__link[href="/cn"]::before,
.m-lang-zone .m-lang-switch__link[hreflang="zh-Hans"]::before {
  background-image: url("https://flagcdn.com/w40/cn.png");
}

.m-lang-zone .m-lang-switch__link[href="/id"]::before,
.m-lang-zone .m-lang-switch__link[hreflang="id"]::before {
  background-image: url("https://flagcdn.com/w40/id.png");
}

.m-lang-zone .cg-lang-dropdown__item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.m-lang-zone .cg-lang-dropdown__item:has(.m-lang-switch__link--active) {
  background: rgba(255, 255, 255, 0.12);
}

.m-lang-zone .m-lang-switch__link:hover,
.m-lang-zone .m-lang-switch__link--active {
  background: transparent !important;
}

.m-lang-zone .m-lang-switch__link,
.m-lang-zone .m-lang-switch__link:focus,
.m-lang-zone .m-lang-switch__link:active {
  outline: none;
  box-shadow: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  content: "";
}

.siicon {
  width: 16px;
  height: 16px;
}

.ai-answer.subtle {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px !important;
  color: var(--color-dark-13);
  border: 0 !important;
  margin-top: 0 !important;
}
.ai-answer.subtle > .ai-answer__summary,
.ai-answer.subtle {
  font-size: 12px !important;
  color: var(--color-dark-13) !important;
}
figcaption.m-gallery__caption.m-gallery__caption--below b {
  font-size: 14px;
  line-height: 14px;
  float: left;
  color: var(--color-text);
}
.recent-slider figure.m-gallery__item.m-gallery-cards__card {
  border-radius: 0;
}
figcaption.m-gallery__caption.m-gallery__caption--below img {
  width: 13px;
  height: 13px;
  float: left;
  margin-right: 7px;
}
.m-gallery__caption--below {
  text-align: left !important;
}

.darkMode .loginpopup,
.darkMode .registerpopup {
  background: var(--color-dark-6);
}
section.uw99-footer {
  margin: 40px 0 0 0;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-dark-4);
}

body.light section.uw99-footer {
  border-bottom: 1px solid var(--color-light-5);
}
section#content-page {
  margin-bottom: 60px;
}
.readmore span:last-child {
  display: none;
}

.readmore.active span:first-child {
  display: none;
}

.readmore.active span:last-child {
  display: inline;
}
.m-site-footer {
  border-top: 1px solid var(--color-dark-4);
}
body.m-template-uw99id #footer-contact .m-site-footer__glow,
body.m-template-uw99id #footer-contact .m-site-footer__meta {
  display: none;
}
.m-site-footer__inner {
  display: none;
}
.modal.left .modal-content {
  padding-bottom: 100px;
}
.mobile-sidemenu .socials {
  justify-content: left;
  display: flex;
  flex-wrap: wrap;
}
.mobile-sidemenu .sm-btm-content {
  justify-content: space-between;
  align-items: inherit;
}
.mobile-sidemenu .m-lang-zone .cg-lang-dropdown__menu {
  left: calc(85px + 10px);
  background: var(--color-dark-12);
}
.mobile-sidemenu .m-lang-zone {
  align-self: inherit;
  margin-left: 0;
}
.mobile-sidemenu .sidemenu-nav-btm {
  height: auto;
  display: flex;
  align-items: unset;
}

.show {
  display: block;
}
.mobile-sidemenu ul.nav.sidemenu-nav {
  height: 100%;
  padding-top: 65px;
  padding-bottom: 0px;
}
.logo img {
  max-width: 125px;
  width: 100%;
  height: auto;
  max-height: max-content;
}
.m-site-header {
  z-index: 10001;
}
.registerform.lv2-remote-register .lv2-remote-input::placeholder,
.customform.lv2-remote-login .lv2-remote-input::placeholder,
.myinputcss input::placeholder {
  color: var(--color-dark-13) !important;
}

body.light .registerform.lv2-remote-register .lv2-remote-input::placeholder,
body.light .customform.lv2-remote-login .lv2-remote-input::placeholder,
body.light .myinputcss input::placeholder {
  color: var(--color-light-10) !important;
}

.registerform.lv2-remote-register .lv2-remote-input,
.customform.lv2-remote-login .lv2-remote-input,
.registerform.lv2-remote-register .lv2-remote-select {
  padding: 5px 16px 5px 50px !important;
  border-radius: 10px;
}
.myinputcss input#registerform_FullName {
  background-image: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/pencil.png) !important;
  background-size: 18px !important;
  background-repeat: no-repeat !important;
  background-position: left 16px center !important;
}
.myinputcss input#registerform_CPassword {
  background-image: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/cpassword.png) !important;
  background-size: 18px !important;
  background-repeat: no-repeat !important;
  background-position: left 16px center !important;
}
.myinputcss select#registerform_Currency {
  background-image: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/ccurrency.png) !important;
  background-size: 18px !important;
  background-repeat: no-repeat !important;
  background-position: left 16px center !important;
}
.myinputcss input#registerform_Mobile {
  background-image: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/phone.png) !important;
  background-size: 18px !important;
  background-repeat: no-repeat !important;
  background-position: left 16px center !important;
}
.myinputcss input#customform_UserName,
.myinputcss input#customformv2_UserName,
.myinputcss input#registerform_UserName {
  background-image: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/username.png) !important;
  background-size: 18px !important;
  background-repeat: no-repeat !important;
  background-position: left 16px center !important;
}
.myinputcss input#customform_Password,
.myinputcss input#customformv2_Password,
.myinputcss input#registerform_Password {
  background-image: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/password.png) !important;
  background-size: 18px !important;
  background-repeat: no-repeat !important;
  background-position: left 16px center !important;
}
.myinputcss input#customform_varifycode,
.myinputcss input#registerform_varifycode {
  background-image: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/captcha.png) !important;
  background-size: 18px !important;
  background-repeat: no-repeat !important;
  background-position: left 16px center !important;
}

.myinputcss input {
  border-radius: 10px !important;
}

.loginpopup-header {
  display: flex;
  align-items: center;
}
.loginpopup-close {
  position: unset;
  transition: var(--btn-transition);
}
.loginpopup-close:hover {
  transition: var(--btn-transition);
  filter: brightness(1.2);
}
.uwlog-right {
  padding: 30px;
  overflow: unset;
}
.reglink a {
  color: var(--color-accent) !important;
}
.reglink a:hover {
  text-decoration: underline !important;
}

.lv2-remote-shell {
  max-width: 100%;
  box-shadow: none;
  backdrop-filter: none;
  margin: 0px;
  border-radius: 0px;
  border-width: 0px;
  border-style: none;
  border-color: currentcolor;
  border-image: none;
  background: transparent;
  padding: 0px;
}

.body-container.active .sm-btm-content {
  flex-direction: column;
}
.loginpopup-overlay {
  background: rgba(0, 0, 0, 0.6);
}
ul.terms {
  padding-left: 0;
  list-style: decimal;
  list-style-position: inside;
  text-align: left;
}
.m-template-uw99id .m-faq-card .m-card__link:hover .m-faq__q--card,
.m-template-uw99id .m-faq-grid .m-card__link:hover .m-faq__q--tile {
  color: inherit;
}
.m-template-uw99id .m-faq-card .m-card__link:hover .m-faq__more-label,
.m-template-uw99id .m-faq-grid .m-card__link:hover .m-faq__more-label {
  text-decoration: none;
  text-underline-offset: 0;
}
button.m-faq-pop__close.m-btn.m-btn--ghost:hover {
  background: var(--color-dark-3) !important;
  color: var(--color-text) !important;
}
.m-template-uw99id .prose th {
  background: var(--color-dark-11);
  border: var(--border-width) solid var(--color-dark-7);
}
.m-template-uw99id .prose td {
  background: transparent;
  border: var(--border-width) solid var(--color-dark-7);
}
.m-faq-pop__panel .m-countdown {
  display: none;
}
.m-faq-pop__panel .promo-modal-content strong {
  color: var(--color-accent);
}
.m-faq__cat-badge,
.m-faq__excerpt.m-faq__excerpt--card {
  display: none;
}

.recent-slider .m-gallery__caption {
  color: var(--color-dark-13);
  margin-top: 5px;
}
body.m-faq-pop-open {
  overflow: hidden;
}
.m-template-uw99id .m-faq-card .m-card--faq:hover {
  transform: none;
}
article.m-card.m-card--faq {
  border-radius: 10px !important;
}
li.m-faq-card__cell {
  margin: 0;
}
.m-faq__more-label:hover {
  filter: brightness(0.9);
}
.m-faq__more-label {
  background: var(--color-accent);
  color: var(--color-dark-1) !important;
  width: 92px;
  height: 43px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-template-uw99id .m-faq__more {
  margin: 0;
  position: absolute;
  right: 10px;
  bottom: 0;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-template-uw99id .m-faq__q--card {
  width: calc(100% - 102px);
  height: 77px;
  padding: 17px 15px;
  color: var(--color-text) !important;
  font-size: 12px;
  font-weight: normal;
}
.m-template-uw99id .m-faq-card .m-faq-card__shell {
  padding: 0;
  position: relative;
  align-items: flex-start;
  gap: 0;
}
figure.m-faq__media.m-card__media.m-card__media--has-img {
  margin: 0;
  border-radius: 0;
  aspect-ratio: inherit;
  width: 100%;
}
.m-faq-pop {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 99999;
}
.m-faq-pop__panel::after {
  content: "";
  display: block !important;
  position: sticky;
  left: 0;
  bottom: -30px;
  width: 100%;
  height: 50px;
  background: linear-gradient(
    180deg,
    rgb(11 11 11 / 0%) 0%,
    rgb(11 11 11) 100%
  );
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.m-faq-pop-open .m-faq-pop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.m-faq-pop__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.m-faq-pop__panel {
  position: relative;
  width: 100vw;
  max-width: 767px;
  height: 77dvh;
  max-height: 77dvh;
  margin: auto 20px;
  border-radius: 10px;
  background: var(--color-background);
  border: 0;
  box-shadow: none;
  padding: 30px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.m-faq-pop__close {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  min-height: 30px !important;
  border: none !important;
  background: var(--color-background) !important;
  font-size: 30px !important;
  line-height: 30px !important;
  border-radius: 50% !important;
  display: block !important;
  padding: 0 !important;
  position: fixed !important;
  right: max(7.5px, calc((100vw - 767px) / 2 - 15px)) !important;
  top: calc(11.5dvh - 15px) !important;
  font-family: serif !important;
  color: var(--color-text-muted) !important;
  filter: drop-shadow(0 0 0.03rem #6c6c6c) !important;
}

.m-card--faq {
  margin-bottom: 24px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-text);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.m-faq-card__shell {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 28px;
  align-items: center;
  padding: 16px;
  cursor: pointer;
}
.m-faq__media {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
}
.m-card__media-img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.m-card__media--has-img {
  aspect-ratio: inherit;
}
.m-faq-card .m-card--faq:hover {
  border: 0;
  box-shadow: none;
  background: transparent;

  transform: none;
  transition: none;
}
.m-faq-card .m-card--faq {
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.m-template-uw99id .m-faq-card {
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr));
}

.m-card__link.m-faq-card__shell {
  background: var(--color-surface);
}

.videolist {
  display: flex;
  gap: 20px;
}
.videolist iframe {
  border-radius: 10px;
}
section.m-transferlist.m-transferlist--has-data.m-transferlist--layout-list.m-transferlist--group-all {
  margin-block: var(--space-unit, 1rem);
}

.providers-slider
  .c-listing.m-banner-splide--multi-card
  .splide__slide
  .m-banner-splide__link {
  pointer-events: none;
  padding: 5px 20px;
  border-radius: 10px;
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.15) !important;
}
.providers-slider
  .c-listing.m-banner-splide--multi-card
  .splide__slide:hover
  .m-banner-splide__link {
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.3) !important;
}
.cms-transferlist-root .m-transferlist__track--marquee-y {
  gap: 5px;
}
.cms-transferlist-root .m-transferlist__row {
  background: var(--color-surface);
  transition: 0.3s;
  height: 54px;
  padding: 0 40px;
  border-radius: 10px;
}
.m-transferlist__viewport.m-transferlist__viewport--marquee {
  position: relative;
}
.m-transferlist__viewport.m-transferlist__viewport--marquee::after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 30px;
  background: linear-gradient(
    180deg,
    rgba(11, 11, 11, 0) 0%,
    rgba(11, 11, 11, 1) 100%
  );
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.m-transferlist__viewport.m-transferlist__viewport--marquee::before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(
    0deg,
    rgba(11, 11, 11, 0) 0%,
    rgba(11, 11, 11, 0.7) 100%
  );
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.cms-transferlist-root .m-transferlist__row:hover {
  background: var(--color-dark-12);
  transition: 0.3s;
}
.cms-transferlist-root .m-transferlist__value {
  color: var(--color-text);
}
.cms-transferlist-root .m-transferlist__amount {
  color: var(--color-accent);
}
.m-transferlist__thead {
  font-size: 16px !important;
  background: var(--color-dark-12);
  height: 54px;
  opacity: 1 !important;
  padding: 0 40px !important;
  letter-spacing: normal !important;
  text-transform: capitalize !important;
  align-items: center;
  border-radius: 10px;
  margin-bottom: 5px;
}

.darkMode .allbtns,
button.splide__arrow.splide__arrow--prev,
button.splide__arrow.splide__arrow--next {
  background: var(--color-background-sec) !important;
}

.casino-slider .c-listing.m-banner-splide--multi-card .splide__slide,
.sports-slider .c-listing.m-banner-splide--multi-card .splide__slide,
.slots-slider .c-listing.m-banner-splide--multi-card .splide__slide {
  width: calc(12.5% - 13.125px) !important;
}

.seo-content-collapsible {
  display: none;
}

.seo-content-collapsible.expanded {
  display: block;
}
.cms-transferlist-root .m-transferlist__header {
  display: none;
}

.c-listing.m-banner-splide .splide__track {
  border-radius: 0 !important;
}
.bank-list .c-listing.m-banner-splide--multi-card .splide__slide {
  display: flex;
  align-items: center;
  width: calc(11.1111% - 26.6667px) !important;
}
.bank-list
  .c-listing.m-banner-splide--multi-card
  .splide__slide
  .m-banner-splide__link {
  pointer-events: none;
}
.bank-list .c-listing.m-banner-splide .m-banner-splide__link {
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.c-listing.m-banner-splide .splide__arrow svg {
  fill: var(--color-light-1);
  height: 10px;
  width: 10px;
}
.c-listing.m-banner-splide .splide__arrow {
  opacity: 1 !important;
}
.splide {
  position: inherit !important;
}
button.splide__arrow.splide__arrow--prev:hover,
button.splide__arrow.splide__arrow--next:hover {
  filter: contrast(0.9);
}
button.splide__arrow.splide__arrow--prev {
  border-radius: 5px;
  height: 24px;
  width: 24px;
  margin: auto;
  background: var(--color-background-sec);
  transform: none !important;
  border: 0 !important;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  position: initial;
}

button.splide__arrow.splide__arrow--next {
  border-radius: 5px;
  height: 24px;
  width: 24px;
  margin: auto;
  background: var(--color-background-sec);
  transform: none !important;
  border: 0 !important;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  position: initial;
}
.splide__arrows.splide__arrows--ltr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  width: fit-content;
  position: absolute;
  top: -35px;
  right: 0;
}

.fgtitle img {
  height: 22px !important;
}
.recent-slider .fgtitle img {
  height: 30px !important;
}
.recent-slider .fgtitle {
  gap: 5px;
}
.ftgame-container.recent-slider {
  overflow: hidden;
}
.recent-slider .m-gallery-cards {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.recent-slider .m-gallery-cards li.m-gallery-cards__cell {
  height: 100%;
  width: 112px;
  flex: 0 0 112px;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ftgame-container {
  position: relative;
}
.ftgame-container .c-listing.m-banner-splide .m-banner-splide__link img {
  transform: scale(1);
  transition: transform 260ms ease, filter 260ms ease;
}
.ftgame-container .c-listing.m-banner-splide .m-banner-splide__link:hover img {
  transform: scale(1.03);
  transition: transform 260ms ease, filter 260ms ease;
}
.m-gallery__link:hover:before,
.ftgame-container
  .c-listing.m-banner-splide.m-banner-splide--multi-card
  li.splide__slide
  a:hover:before {
  opacity: 1;
  transition: 0.3s;
  transform: translate(-50%, -50%) scale(1);
}

.m-gallery__link:before,
.ftgame-container
  .c-listing.m-banner-splide.m-banner-splide--multi-card
  li.splide__slide
  a:before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.3);
  z-index: 3;
  opacity: 0;
  transition: 0.3s;
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/plybtn-medium.webp);
  background-size: contain;
}
.m-gallery__link:hover:after,
.ftgame-container
  .c-listing.m-banner-splide.m-banner-splide--multi-card
  li.splide__slide
  a:hover:after {
  opacity: 1;
  transition: 0.3s;
}
.m-gallery__link:after,
.ftgame-container
  .c-listing.m-banner-splide.m-banner-splide--multi-card
  li.splide__slide
  a:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
}

.fgtitle {
  position: relative;
  gap: 10px;
  padding-top: 0;
}
.providers-slider {
  position: relative;
  margin: 0 0 30px 0;
}
.casino-slider .allbtns,
.sports-slider .allbtns,
.slots-slider .allbtns,
.providers-slider .allbtns {
  right: 58px;
}

.allbtns {
  top: 5px;
  right: 0;
  height: 24px;
  border-radius: 5px;
  background: var(--color-background-sec);
  z-index: 1;
  width: auto !important;
  min-width: 50px !important;
}

.allbtns p {
  height: 24px;
  padding: 0 5px;
}
.splide__pagination {
  position: relative !important;
  margin-top: 0 !important;
  top: inherit;
  bottom: inherit !important;
}
.splide__pagination__page {
  background: var(--color-dark-9) !important;
  border: 0 !important;
  border-radius: 20px !important;
  display: inline-block !important;
  height: 7px !important;
  opacity: 1 !important;
  margin: 0 1px !important;
  width: 15px !important;
  transition: 0.2s;
}
.c-listing.m-banner-splide .splide__pagination__page.is-active {
  width: 40px !important;
  transform: none !important;
  background: var(--color-primary) !important;
  transition: 0.2s;
}

.readmore {
  display: inline-block;
  margin-top: 0;
  color: var(--color-accent) !important;
  font-weight: normal !important;
}
.footer {
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 14px;
  padding: 50px 0 20px;
}

.footer a {
  color: var(--color-dark-13);
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: var(--color-text);
}

.footer .container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-logo img {
  max-width: 135px;
}

.footer-menu {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}
.footer-menu a:hover .siicon {
  filter: brightness(1.8);
  transition: all 0.3s;
}
.footer-menu a:hover {
  transition: all 0.3s;
  color: var(--color-text) !important;
}
.footer-menu a {
  transition: all 0.3s;
  color: var(--color-dark-13) !important;
  font-size: 14px;
  align-items: center;
  display: flex;
  gap: 10px;
}
.footer-col h4 {
  color: var(--color-text);
  font-size: 15px;
  margin-bottom: 25px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-list img {
  height: 40px;
  object-fit: contain;
}

.uw99-footer hr {
  border-top: 1px solid var(--color-dark-4);
  opacity: 1;
  margin: 40px 0;
}
.bank-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.bank-list img {
  height: 28px;
  opacity: 0.75;
  transition: 0.3s;
  filter: grayscale(100%) brightness(1.8);
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.bank-list img:hover {
  opacity: 1;
}

.footer-content h3 {
  color: var(--color-text);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
.copyright {
  color: var(--color-dark-13);
  font-size: 12px;
}
.footer-content p {
  color: var(--color-dark-13);
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 14px;
}

.readmore {
  color: #ffbf00;
  font-weight: bold;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-license {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-license img {
  height: 41px;
}

.slider-sec .c-listing.m-banner-splide--multi-card .splide__slide {
  margin-right: 1.25rem !important;
  width: calc(33.3333% - 0.833333rem) !important;
}

.c-listing.m-banner-splide--multi-card .splide__slide {
  opacity: 1 !important;
  transition: none !important;
}
.c-listing.m-banner-splide .m-banner-splide__link:hover,
.c-listing.m-banner-splide .m-banner-splide__link:focus-visible {
  transform: none !important;
  box-shadow: none !important;
}
.c-listing.m-banner-splide .m-banner-splide__link {
  transform: none !important;
  box-shadow: none !important;
  border-radius: 10px !important;
  background: transparent !important;
}

.supportbtn:hover,
.socials .dots:hover,
.m-lang-zone .cg-lang-dropdown__summary:hover {
  background: var(--color-dark-11);
  transition: all 0.3s;
}

.supportbtn img {
  width: 20px;
  height: 20px;
}
.sb-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
}
.supportbtn {
  background: var(--color-dark-12);
  border-radius: 8px;
  transition: 0.3s;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.body-container.active .sidemenu-wrapper {
  height: 100%;
}
ul.nav.sidemenu-nav {
  height: calc(100vh - 269px);
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: relative;
}
.sm-btm-wrap {
  width: 100%;
}
.sidemenu-nav-btm {
  height: 193px;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.body-container.active .sidemenu-nav-btm {
  height: 205px;
}
.body-container.active ul.nav.sidemenu-nav {
  height: calc(100vh - 338px);
}
.body-container.active .m-lang-zone .cg-lang-dropdown__summary {
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.body-container.active span.cg-lang-dropdown__current {
  display: none;
}
.body-container.active .m-lang-zone {
  margin-left: 0;
}
.body-container.active .socials a,
.body-container.active .m-lang-zone .cg-lang-dropdown__chev {
  display: none;
}
.body-container.active .social-popup a {
  display: flex;
}
.body-container.active .socials .dots {
  display: flex;
}
button.register-btn,
.darkMode button.register-btn {
  box-shadow: none;
  font-weight: bold;
}
.sm-btm-content {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.socials {
  display: flex;
  gap: 10px;
  justify-content: space-evenly;
  border-bottom: 1px solid var(--color-dark-4);
  padding: 10px 0;
}

.social-dropdown[open] .dots img {
  transition: 0.3s;
  transform: rotate(90deg);
}
.socials .dots {
  background: var(--color-dark-12);
  border-radius: 8px;
  transition: 0.3s;
}
.socials .dots img {
  width: 4px;
  height: 20px;
}
.socials .dots {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.socials a {
  display: flex;
  align-items: center;
  justify-content: left;
}

.socials img {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.socials a:hover {
  filter: brightness(1.1);
}

.m-nav__list {
  gap: 5px;
}
.body-container.active ul.nav.sidemenu-nav li {
  margin: 0;
}
.body-container.active ul.nav.sidemenu-nav li a.m-nav__link img,
.smenu-wrap a img {
  margin: 0 auto;
}
.body-container.active .side-menu {
  padding-top: 0 !important;
}
.header-wrap.active .theme-toggle {
  display: none !important;
}
.header-wrap.active .changeMode {
  padding: 0 10px;
  border-bottom: 1px solid var(--color-dark-4);
}
.header-wrap,
.body-container {
  grid-template-columns: 250px auto;
}
ul.nav.sidemenu-nav li a.m-nav__link img,
.smenu-wrap a img {
  margin-right: 10px;
  max-height: 20px;
}
.header-left-wrapper {
  gap: 40px;
}
.htmenu {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  transition: 0.3s;
}
.htmenu img {
  width: 20px;
  transition: all 0.3s;
}
.htmenu p {
  margin: 0;
  color: var(--color-light-7);
  font-size: 13px;
}
.htmenu img.active {
  display: none;
  transition: all 0.3s;
}

.htmenu img.inactive {
  display: block;
  transition: all 0.3s;
}
.darkMode .htmenu.current p {
  color: var(--color-text);
}
.htmenu.current img.active,
.htmenu.active img.active {
  display: block;
  transition: all 0.3s;
}

.htmenu.current img.inactive,
.htmenu.active img.inactive {
  display: none;
  transition: all 0.3s;
}

.darkMode .htmenu p {
  color: var(--color-dark-13);
  transition: all 0.3s;
}
.darkMode .htmenu:hover img {
  filter: brightness(2);
}
.darkMode .htmenu:hover p {
  color: var(--color-text);
  transition: all 0.3s;
}
.header-container {
  height: 76px;
}
.changeMode {
  height: 76px;
  padding: 0 10px;
}

.header-logomenu {
  background: var(--color-surface);
}
.header-wrap {
  border-bottom: 1px solid var(--color-dark-4);
  height: 77px;
}
.darkMode .header-wrap {
  background: var(--color-background);
}
.side-menu {
  padding: 0 10px;
  width: 250px;
  height: calc(100% - 76px);
  margin-top: 76px;
  z-index: 99;
}
.body-container.active .side-menu {
  width: 65px;
  padding: 10px;
}
ul.nav.sidemenu-nav li a.m-nav__link {
  padding: 0 15px;
  height: 45px;
}
.body-container.active ul.nav.sidemenu-nav li a.m-nav__link {
  padding: 0;
  height: 45px;
  width: 45px;
}
.body-container.active ul.nav.sidemenu-nav {
  margin: 0;
}
.body-container.active ul.nav.sidemenu-nav li:first-child {
  display: block !important;
}
.theme-option.active,
.theme-toggle {
  border-radius: 8px;
}
.theme-toggle {
  padding: 4px;
  height: 45px;
}
.theme-option.active {
  border: 0;
}
.theme-option {
  color: var(--color-dark-13);
}
.theme-option p {
  width: 40px;
  white-space: nowrap;
}
body.light .theme-option.active .light-icon {
  filter: brightness(0.2);
}
button.sidemenu-btn {
  width: 45px;
  height: 45px;
}
.sm-btn-wrap {
  height: auto;
  width: auto;
}
.darkMode button.sidemenu-btn:hover {
  background: var(--color-dark-4);
  transition: all 0.3s;
}

.darkMode button.sidemenu-btn {
  background: var(--color-dark-11);
  transition: all 0.3s;
}
.darkMode ul.nav.sidemenu-nav li a.m-nav__link {
  background: transparent;
}
.darkMode ul.nav.sidemenu-nav li a.m-nav__link .smenu-text {
  color: var(--color-dark-13);
}
.darkMode ul.nav.sidemenu-nav li.active a.m-nav__link .smenu-text {
  color: var(--color-text);
}
.darkMode section.seo-footer-sec,
.darkMode footer {
  background: transparent;
}
.darkMode .theme-option.active {
  background-color: var(--color-background);
  color: var(--color-text);
  border: 0;
}
.darkMode .theme-toggle {
  background-color: var(--color-dark-11);
}
.darkMode ul.nav.sidemenu-nav li a.m-nav__link.active,
.darkMode ul.nav.sidemenu-nav li a.m-nav__link:hover {
  background: var(--color-dark-11);
  color: var(--color-text);
  transition: all 0.3s;
}

.theme-option {
  gap: 8px;
  line-height: 18px;
}
.dark-icon {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu_icon-23_1-medium.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 18px;
  display: block;
}
.darkMode .theme-option.active .dark-icon {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu_icon-41_1-medium.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.light-icon {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu_icon-22_2-medium.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 18px;
  display: block;
}
body.light .theme-option.active .light-icon {
  background: url(/data/upload/e790b999-0e18-4a83-a0f8-54c340aa36a4/menu_icon-40_1-medium.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.icon-menu {
  filter: saturate(0);
  transition: all 0.3s;
}
.m-nav__item.active .icon-menu,
.m-nav__item:hover.icon-menu {
  filter: saturate(1);
  transition: all 0.3s;
}
.m-nav__item .icon-menu.active {
  display: none;
}
.m-nav__item.active .icon-menu.active {
  display: block;
}
.m-nav__item.active .icon-menu.inactive {
  display: none;
}
a {
  color: inherit !important;
  text-decoration: none !important;
}
.m-nav__item.active a,
.m-nav__item.active a:hover {
  background: var(--color-dark-11) !important;
  color: var(--color-text) !important;
}
.theme-toggle.afterLogin {
  display: none !important;
}
.skip-link {
  display: none;
}
.m-template-uw99id #main-content {
  padding: 0;
  margin: 0;
}
.m-template-uw99id #main-content article.c-page,
.m-template-uw99id .c-page.prose {
  background: transparent;
  border: unset;
  border-radius: unset;
  box-shadow: unset;
  padding: unset;
  backdrop-filter: unset;
}
.prose {
  max-width: 100%;
}
.prose
  :where(ol > li):not(:where([class~="not-prose"], [class~="not-prose"] *)),
.prose
  :where(ul > li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose :where(img):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
img:not([width]):not([height]):not(.is-icon) {
  aspect-ratio: unset !important;
  background: transparent !important;
}
.m-template-uw99id .min-touch {
  min-height: auto;
  min-width: auto;
}
.m-template-uw99id #main-content::before {
  display: none;
}
.m-banner {
  display: none;
}
.m-template-uw99id .prose img {
  max-width: 100%;
  height: 100%;
  border-radius: inherit;
  box-shadow: none;
}
.m-template-uw99id .prose a {
  color: inherit;
  text-decoration: inherit;
  text-decoration-thickness: inherit;
  text-underline-offset: inherit;
  transition: none;
  aspect-ratio: inherit !important;
}
.m-template-uw99id .prose a:hover {
  color: inherit;
  text-shadow: none;
}
.m-template-uw99id .m-gallery-cards__img,
.m-template-uw99id .m-gallery-cards__link .m-gallery__placeholder {
  aspect-ratio: inherit !important;
}
.m-template-uw99id .m-card,
.m-template-uw99id .m-news-card,
.m-template-uw99id .m-faq__tile,
.m-template-uw99id .m-product-masonry .m-card--masonry,
.m-template-uw99id .m-gallery-masonry .m-gallery__item,
.m-template-uw99id .m-gallery-cards .m-gallery-cards__card,
.m-template-uw99id .m-module-hub__category .m-card--category,
.m-template-uw99id .m-faq-card .m-card--faq,
.m-template-uw99id .m-product-list .m-card--product {
  border-radius: calc(var(--radius-base) + 2px);
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: none;
}
.m-template-uw99id .m-card:hover,
.m-template-uw99id .m-news-card:hover,
.m-template-uw99id .m-faq__tile:hover,
.m-template-uw99id .m-faq-card .m-card--faq:hover,
.m-template-uw99id .m-module-hub__category .m-card--category:hover,
.m-template-uw99id .m-product-masonry .m-card--masonry:hover,
.m-template-uw99id .m-product-list .m-card--product:hover,
.m-template-uw99id .m-gallery-masonry .m-gallery__item:hover,
.m-template-uw99id .m-gallery-cards .m-gallery-cards__card:hover,
.m-template-uw99id .m-product-bento .m-card--bento:hover,
.m-template-uw99id .m-gallery-bento__album:hover {
  background: transparent;
  box-shadow: none;
  border: 0;
}
::-webkit-scrollbar {
  background: var(--color-dark-11);
  width: 11px;
}
::-webkit-scrollbar-thumb {
  background: var(--color-dark-11);
  border: 3px solid var(--color-surface);
}
::-webkit-scrollbar-track {
  background: var(--color-surface);
  border-radius: 0px;
}

@media (min-width: 64rem) {
  .m-template-uw99id .m-gallery-cards {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}
@media (min-width: 768px) and (max-width: 1080px) {
  .vipbanner-d.desktop,
  .vipWrapper .desktop {
    display: block !important;
  }
  .vipbanner-m.mobile,
  .vipWrapper .mobile {
    display: none !important;
  }
  .reverse-on-mobile {
    flex-direction: inherit;
  }
  .mobile-btm-sec {
    display: none;
  }
  .modal.left.fade .modal-dialog {
    max-width: 768px;
  }
}

@media (max-width: 1080px) {
  .mobile-sidemenu .m-lang-zone .cg-lang-dropdown__menu {
    left: inherit;
    bottom: 40px;
    right: 0;
  }
  .popuptext {
    top: 85px !important;
  }
  .t-inner-body {
    padding-top: 75px;
  }
  .gamepage-container .m-gallery-cards {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)) !important;
  }

  .theme-toggle.mbsidemenu {
    display: block !important;
  }

  .header-wrap {
    height: inherit;
  }
  body.light ul.nav.sidemenu-nav li a.m-nav__link {
    background: var(--color-light-3);
  }
  body.light .header-wrap {
    background: var(--color-light-2);
  }
  .header-container {
    height: 65px !important;
  }
  .logo {
    left: 0;
  }
  .ftgame-container.recent-slider {
    overflow: inherit;
  }
  .header-wrap,
  .header-wrap.active {
    display: grid;
    grid-template-columns: 65px auto;
  }
  .header-logomenu {
    display: block;
    background: transparent;
  }
  .burger .sm-btn-wrap {
    display: flex;
  }
  body.light button.mb-sidemenu-btn {
    background: var(--color-light-3);
  }
  button.mb-sidemenu-btn {
    position: relative;
    z-index: 99;
    background: var(--color-dark-11);
    font-size: 12px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    transition: all 0.3s;
  }
  .burger {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 5px;
    height: 65px;
    padding: 0 10px;
    padding-left: 20px;
  }
  .slider-sec .c-listing.m-banner-splide--multi-card .splide__slide {
    width: calc(50% - 0.625rem) !important;
  }
  .casino-slider .c-listing.m-banner-splide--multi-card .splide__slide,
  .sports-slider .c-listing.m-banner-splide--multi-card .splide__slide,
  .slots-slider .c-listing.m-banner-splide--multi-card .splide__slide {
    width: calc(25% - 0.75rem) !important;
    margin-right: 1rem !important;
  }
  .providers-slider .c-listing.m-banner-splide--multi-card .splide__slide {
    margin-right: 0.75rem !important;
    width: calc(25% - 0.5625rem) !important;
  }
  .bank-list .c-listing.m-banner-splide--multi-card .splide__slide {
    margin-right: 2rem !important;
    width: calc(20% - 1.6rem) !important;
  }

  .hot-slider .m-gallery-cards {
    gap: 1rem !important;
    direction: ltr;
    justify-content: start;
    scroll-behavior: smooth;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
    overflow-x: auto;
    grid-auto-columns: calc((100% - 3rem) / 4);
    grid-template-columns: inherit !important;
  }
  .hot-slider .m-gallery-cards::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 767px) {
    .mobile-bottom-nav {
        display: block;
    }
  .uw99card {
    width: 100%;
    max-width: 100% !important;
    display: block;
    margin: 0 auto !important;
    margin-bottom: 20px !important;
  }

  .crbox {
    font-size: 14px;
    line-height: 1.2;
  }
  .loginpopup .logbanner {
    margin-bottom: 0;
  }
  .hometab-mobile {
    display: block;
  }
  .splide__pagination {
    bottom: 10px !important;
    position: absolute !important;
  }
  .uw99card {
    margin-top: 50px !important;
  }
  .vipbanner-m.mobile {
    max-width: 482px !important;
  }
  .split-col {
    width: 100%;
  }
  .reglogimg {
    height: 500px;
  }
  .theme-option p {
    width: max-content;
  }

  .mobile-btm-sec {
    display: block;
  }

  .mobile-btm-sec {
    display: block;
  }
  .htmenu {
    display: none;
  }
  .slider-sec .c-listing.m-banner-splide--multi-card .splide__slide {
    width: calc(100% + 0rem) !important;
  }
  .casino-slider .c-listing.m-banner-splide--multi-card .splide__slide,
  .sports-slider .c-listing.m-banner-splide--multi-card .splide__slide,
  .slots-slider .c-listing.m-banner-splide--multi-card .splide__slide {
    width: calc(33.3333% - 0.6667rem) !important;
    margin-right: 1rem !important;
  }
  .providers-slider .c-listing.m-banner-splide--multi-card .splide__slide {
    margin-right: 0.75rem !important;
    width: calc(33.3333% - 0.5rem) !important;
  }
  .bank-list .c-listing.m-banner-splide--multi-card .splide__slide {
    margin-right: 2rem !important;
    width: calc(25% - 1.5rem) !important;
  }

  .hot-slider .m-gallery-cards {
    grid-auto-columns: calc((100% - 2rem) / 3);
  }
  .header-logomenu {
    display: block !important;
  }

  .cms-transferlist-root .m-transferlist__col--money {
    text-align: center;
    line-height: 1;
  }
  .cms-transferlist-root .m-transferlist__th--money {
    text-align: center;
  }
  .cms-transferlist-root .m-transferlist__thead {
    display: grid;
    padding: 0 10px !important;
    grid-template-columns: 100px 1fr 1fr 1fr;
    gap: 0.35rem;
  }
  .cms-transferlist-root .m-transferlist__col--player {
    grid-column: unset;
  }
  .cms-transferlist-root .m-transferlist__row {
    grid-template-columns: 100px 1fr 1fr 1fr;
    padding: 0 10px;
    gap: 0.35rem;
  }
  section.ftgame-container.videolist {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 20px -10px;
    padding: 0 10px;
  }
  section.ftgame-container.videolist::-webkit-scrollbar {
    display: none;
  }
  .m-video.m-video--iframe.not-prose {
    min-width: 80vw;
  }
  .burger {
    padding-left: 10px;
  }

  .footer-top {
    display: flex;
    gap: 20px;
    flex-direction: column;
  }

  .footer-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .footer-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }

  .footer-col {
    width: 100%;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-col:last-child .payment-list {
    display: flex;
    justify-content: left;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .ai-answer.subtle {
    margin-bottom: 98px;
    padding: 15px 10px !important;
  }
  .logbanner {
    margin-bottom: 80px;
  }
  .reglogimg,
  .regimg {
    border-radius: 0 !important;
  }
  .loginpopup,
  .registerpopup {
    border-radius: 0;
  }
  .bonustable2 {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 50vw 30px 50vw 30px 50vw;
    justify-content: left;
    overflow-x: auto;
  }
  .vipbanner-d.desktop,
  .vipWrapper .desktop {
    display: none !important;
  }
  .vipbanner-m.mobile,
  .vipWrapper .mobile {
    display: block !important;
  }

  .jsUw99__customer-support {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support__item-wrapper {
    padding: 24px 15px;
  }

  .registerpage .regimg, .registerpage .reglogimg {
    border-radius: 10px !important;
  }
}

@media (max-width: 443px) {
  .mobile-sidemenu .social-popup {
    left: inherit;
    bottom: 40px;
    right: 0;
  }
}


/* cms-frontend-base */
/* Shared with Astro build — tokens injected via :root in layout */

/* Image / iframe CLS prevention (req #25):
 * Reserve aspect-ratio so the layout does not jump while images stream in.
 * Authors can override with explicit width+height attrs; otherwise we infer
 * 4:3 for inline content images and 16:9 for hero banners and embedded video.
 */
img,
picture > img,
video,
iframe,
object,
embed {
  max-width: 100%;
  height: auto;
}

img:not([width]):not([height]):not(.is-icon) {
  aspect-ratio: 4 / 3;
  background: color-mix(in srgb, currentColor 6%, transparent);
}

img.is-hero,
.banner img,
.hero img {
  aspect-ratio: 16 / 9;
}

iframe[src*="youtube"],
iframe[src*="vimeo"],
.video-embed iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

/* Respect reduced-motion preference (rule from .cursorrules) */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* AI answer block — subtle collapsible footer summary (AiAnswer.astro + StorefrontSeoPhp) */
.ai-answer.subtle {
  margin-top: 2.5rem;
  padding: 0.75rem 0 0;
  border: 0;
  border-top: 1px solid color-mix(in srgb, currentColor 10%, transparent);
  border-radius: 0;
  background: transparent;
  font-size: 0.875rem;
  line-height: 1.55;
  color: color-mix(in srgb, currentColor 62%, transparent);
}

.ai-answer.subtle > .ai-answer__summary {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.15rem 0;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: color-mix(in srgb, currentColor 48%, transparent);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.ai-answer.subtle > .ai-answer__summary::-webkit-details-marker {
  display: none;
}

.ai-answer.subtle > .ai-answer__summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  margin-left: auto;
  border-right: 1.5px solid color-mix(in srgb, currentColor 40%, transparent);
  border-bottom: 1.5px solid color-mix(in srgb, currentColor 40%, transparent);
  transform: rotate(-45deg);
  transition: transform 200ms ease;
}

.ai-answer.subtle[open] > .ai-answer__summary::after {
  transform: rotate(45deg);
}

.ai-answer.subtle > .ai-answer__summary:hover {
  color: color-mix(in srgb, currentColor 72%, transparent);
}

.ai-answer.subtle > .ai-answer__body {
  padding: 0.35rem 0 0;
}

.ai-answer.subtle > .ai-answer__body p,
.ai-answer.subtle > .ai-answer__body .ai-answer__text {
  margin: 0;
}

.ai-answer.subtle .ai-answer__faq {
  margin: 0.75rem 0 0;
}

.ai-answer.subtle .ai-answer__question {
  font-weight: 600;
  margin: 0.5rem 0 0.15rem;
}

.ai-answer.subtle .ai-answer__answer {
  margin: 0 0 0.5rem;
  color: inherit;
}

.ai-answer.subtle .ai-answer__facts {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

.ai-answer.subtle .ai-answer__fact {
  margin: 0.25rem 0;
}

.ai-answer.subtle .ai-answer__fact-label {
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .ai-answer.subtle > .ai-answer__summary::after {
    transition: none;
  }
}

/* ----------------------------------------------------------------- */
/* Accessibility — skip link, focus-visible outline, screen-reader   */
/* utility class. Keep selectors small and high-specificity.         */
/* ----------------------------------------------------------------- */

.skip-link {
  position: absolute;
  top: -40px;
  left: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #111827;
  color: #fff;
  border-radius: 0 0 6px 6px;
  z-index: 10000;
  text-decoration: none;
  font-weight: 600;
  transition: top 120ms ease-out;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 0;
  outline: 2px solid #fbbf24;
  outline-offset: 2px;
}

:where(a, button, [role="button"], summary, input, select, textarea):focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
  border-radius: 3px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}