﻿@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #080204;
  --bg-deep: #030102;
  --panel: rgba(20, 5, 8, .92);
  --panel-2: rgba(42, 8, 14, .86);
  --red: #9d1827;
  --red-2: #d93446;
  --gold: #f1c85a;
  --gold-2: #ffe58a;
  --text: #fff8ed;
  --muted: #e5c9b3;
  --line: rgba(241, 200, 90, .36);
  --shadow: 0 18px 46px rgba(0, 0, 0, .46);
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans Thai", Tahoma, Arial, sans-serif;
  line-height: 1.58;
  background:
    radial-gradient(circle at 82% 4%, rgba(197, 40, 58, .25), transparent 34%),
    radial-gradient(circle at 8% 20%, rgba(241, 200, 90, .12), transparent 28%),
    linear-gradient(180deg, #070103, #160409 38%, #070103 100%);
}
a { color: inherit; }
a, a:hover { text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.row { display: flex; flex-wrap: wrap; margin-left: -12px; margin-right: -12px; }
.row > * { min-width: 0; padding-left: 12px; padding-right: 12px; }
.g-4 { row-gap: 1.5rem; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8 { flex: 0 0 100%; width: 100%; }
.d-none { display: none !important; }
.d-block { display: block !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: .5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.p-3 { padding: 1rem !important; }
.w-100 { width: 100% !important; }
.sticky-top { position: sticky; top: 0; z-index: 1020; }

.site-header {
  background: linear-gradient(90deg, rgba(9, 2, 4, .98), rgba(79, 9, 18, .96), rgba(10, 2, 4, .98));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .4), inset 0 -1px 0 rgba(255, 229, 138, .25);
  backdrop-filter: blur(12px);
}
.header-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}
.site-logo, .hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.site-logo { text-decoration: none; }
.site-logo span { white-space: nowrap; font-size: 1.12rem; }
.site-nav { justify-content: center; gap: 1.15rem; overflow: hidden; }
.site-nav a, .sidebar-nav a {
  color: #fff3df;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
.site-nav a:hover, .sidebar-nav a:hover { color: var(--gold-2); }
.header-actions, .hero-actions { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; }
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .65rem 1.35rem;
  font-weight: 900;
  text-align: center;`r`n  text-decoration: none;
  white-space: nowrap;
}
.btn-grad {
  color: #170306;
  background: linear-gradient(120deg, #bd2333, #ef4a55 46%, #f7c45b 100%);
  border: 1px solid rgba(255, 229, 138, .62);
  box-shadow: 0 10px 22px rgba(142, 23, 36, .35);
}
.btn-outline-gold {
  color: var(--gold-2);
  background: rgba(80, 10, 18, .34);
  border: 1px solid rgba(241, 200, 90, .7);
}
.hamburger-btn, .icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(241, 200, 90, .42);
  background: rgba(25, 5, 9, .95);
  color: var(--gold-2);
  font-size: 1.25rem;
}
.site-overlay {
  position: fixed;
  inset: 0;
  z-index: 1040;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, .58);
  transition: opacity .25s ease;
}
.site-overlay.is-active { visibility: visible; opacity: 1; }
.mobile-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 1050;
  width: min(84vw, 320px);
  transform: translateX(-100%);
  transition: transform .25s ease;
  background: linear-gradient(160deg, #0b0204, #300a10);
  border-right: 1px solid var(--line);
}
.mobile-sidebar.is-open { transform: translateX(0); }
.sidebar-head { min-height: 72px; display: flex; align-items: center; justify-content: space-between; padding: .85rem 1rem; border-bottom: 1px solid var(--line); }
.sidebar-nav { display: grid; gap: .65rem; padding: 1rem; }
.sidebar-nav a { padding: .7rem .85rem; border-radius: 10px; background: rgba(73, 12, 20, .66); }

.image-slot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px dashed rgba(241, 200, 90, .46);
  background: linear-gradient(135deg, rgba(45, 7, 13, .94), rgba(8, 2, 4, .96));
}
.image-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.08), transparent);
  transform: translateX(-110%);
  animation: slot-shine 4.8s ease-in-out infinite;
}
.image-slot > img { width: 100%; height: 100%; object-fit: contain; position: relative; z-index: 1; }
.logo-slot { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 10px; }
.hero-brand-lockup .logo-slot { width: 54px; height: 54px; flex-basis: 54px; }
.banner-slot, .promo-slot, .wide-slot, .slide-slot, .hero-visual-slot { width: 100%; aspect-ratio: 16 / 9; border-radius: 14px; }
.wide-slot { aspect-ratio: 21 / 8; }
.about-slot { width: 100%; min-height: 260px; border-radius: 14px; }
.provider-slot { width: 100%; height: 86px; border-radius: 10px; }
.slot-game-slot { height: auto; aspect-ratio: 16 / 6; }
.footer-provider-slot { width: 118px; height: 38px; border-radius: 8px; }
.footer-logo-slot { width: 170px; height: 62px; max-width: 100%; border-radius: 10px; margin: 0 auto; }
.banner-slot > img, .promo-slot > img, .wide-slot > img, .about-slot > img { object-fit: cover; }
.slot-game-slot > img { object-fit: contain; padding: .25rem; }

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(241, 200, 90, .16), transparent 26%),
    radial-gradient(circle at 78% 28%, rgba(197, 40, 58, .34), transparent 34%),
    linear-gradient(180deg, #070103, #160409 58%, #070103);
}
.hero-section::before {
  content: "";
  position: absolute;
  left: -10%; right: -10%; bottom: -18%;
  height: 48%;
  opacity: .44;
  background: linear-gradient(rgba(241,200,90,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(241,200,90,.12) 1px, transparent 1px);
  background-size: 68px 68px;
  transform: perspective(620px) rotateX(62deg);
  transform-origin: center top;
  animation: grid-move 6s linear infinite;
}
.hero-section .container { position: relative; z-index: 1; }
.glass-card {
  background: linear-gradient(145deg, var(--panel), rgba(8, 2, 4, .94));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.035);
}
.hero-left { position: relative; overflow: hidden; padding: 1.35rem; max-width: 100%; }
.hero-left::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(241,200,90,.18), transparent);
  transform: translateX(-125%);
  animation: panel-sweep 5s ease-in-out infinite;
}
.hero-left > * { position: relative; z-index: 1; }
.hero-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3.1vw, 3.1rem);
  line-height: 1.24;
  font-weight: 900;
  overflow-wrap: anywhere;
}
.hero-subtitle, .section-text { color: var(--muted); overflow-wrap: anywhere; }
.hero-subtitle { margin: .95rem 0 0; font-size: 1.02rem; }
.hero-news-loop {
  max-width: 100%;
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid rgba(241,200,90,.25);
  border-radius: 999px;
  background: rgba(6, 1, 3, .56);
  white-space: nowrap;
}
.hero-news-loop div { display: flex; width: max-content; gap: 2rem; padding: .45rem 0; animation: ticker 18s linear infinite; }
.hero-news-loop span { color: var(--gold-2); font-size: .86rem; font-weight: 800; }
.hero-news-loop span::before { content: ""; display: inline-block; width: 7px; height: 7px; margin: 0 .55rem 1px 0; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px rgba(241,200,90,.85); }
.hero-actions-stack { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; margin-top: 1.25rem; }
.hero-actions-stack .btn-cta { width: 100%; min-width: 0; }
.hero-actions-stack .btn-cta:nth-child(3) { grid-column: 1 / 2; }
.hero-orbit {
  position: absolute;
  right: 24px;
  top: -18px;
  z-index: 2;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  border: 1px solid rgba(241,200,90,.38);
  box-shadow: 0 0 30px rgba(190,70,255,.26), inset 0 0 28px rgba(255,210,90,.12);
  animation: spin 20s linear infinite;
  pointer-events: none;
}
.hero-orbit::before, .hero-orbit::after { content: ""; position: absolute; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 18px rgba(241,200,90,.9); }
.hero-orbit::before { width: 13px; height: 13px; left: 50%; top: -7px; }
.hero-orbit::after { width: 9px; height: 9px; right: 14px; bottom: 24px; }
.cp-carousel { position: relative; overflow: hidden; border: 1px solid rgba(241,200,90,.42); border-radius: 16px; box-shadow: 0 12px 30px rgba(104,13,25,.42), 0 0 20px rgba(241,200,90,.12); animation: float 5.8s ease-in-out infinite; }
.cp-carousel-item { display: none; }
.cp-carousel-item.is-active { display: block; }
.cp-carousel-control { position: absolute; top: 50%; z-index: 5; width: 42px; height: 42px; transform: translateY(-50%); border-radius: 50%; border: 1px solid rgba(255,236,138,.45); background: rgba(3,10,7,.82); color: var(--gold-2); font-size: 30px; line-height: 1; }
.cp-prev { left: 12px; }
.cp-next { right: 12px; }

.top-provider-band {
  position: relative;
  z-index: 3;
  padding: .9rem 0 1rem;
  background: linear-gradient(90deg, #080103, #3a0710 45%, #080103);
  border-top: 1px solid rgba(241,200,90,.5);
  border-bottom: 1px solid rgba(241,200,90,.5);
  box-shadow: 0 16px 38px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,229,138,.18);
  overflow: hidden;
}
.top-provider-head { width: min(1180px, calc(100% - 32px)); margin: 0 auto .65rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.top-provider-head span { color: var(--gold); font-weight: 900; text-transform: uppercase; }
.top-provider-head strong { font-size: clamp(1.1rem, 2vw, 1.45rem); }
.top-provider-head a { color: #160305; text-decoration: none; font-weight: 900; border-radius: 999px; padding: .48rem .95rem; background: linear-gradient(180deg, var(--gold-2), var(--gold)); }
.provider-marquee { width: 100%; overflow: hidden; }
.provider-track { display: flex; align-items: center; gap: 1.15rem; width: max-content; animation: provider-scroll 30s linear infinite; }
.provider-item { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; min-width: 154px; padding: .5rem .75rem; color: #ffe8a4; text-decoration: none; white-space: nowrap; border: 1px solid rgba(241,200,90,.24); border-radius: 12px; background: rgba(7,1,3,.64); }
.provider-item span { font-weight: 800; }

.feature-play-section { background: linear-gradient(180deg, #070103, #120307); }
.feature-play-grid, .feature-grid, .review-grid, .provider-logo-grid, .article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.feature-play-card, .feature-card, .review-card, .provider-card, .article-grid article {
  min-width: 0;
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(241,200,90,.34);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(24,5,9,.96), rgba(6,1,3,.96));
  box-shadow: 0 16px 42px rgba(0,0,0,.34), inset 0 0 0 1px rgba(255,255,255,.035);
}
.feature-play-card, .feature-card, .review-card, .article-grid article { padding: 1.15rem; }
.feature-play-card span { width: 54px; height: 54px; display: inline-flex; align-items: center; justify-content: center; border-radius: 16px; background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #150305; font-size: 1.45rem; }
.feature-play-card h2, .feature-card h3, .review-card h3, .article-grid h3 { color: #fff; line-height: 1.25; }
.feature-play-card p, .feature-card p, .review-card p, .article-grid p { color: var(--muted); margin-bottom: .5rem; }
.feature-play-card strong, .review-card span, .article-grid span, .article-grid a, .section-heading a { color: var(--gold-2); font-weight: 900; }

.category-section, .seo-home-section, .long-form-section, .article-section, .brand-sections, .faq-section { background: transparent; }
.seo-block, .long-form-article { padding: 1.35rem; }
.section-title { margin: 0; color: var(--gold-2); font-size: clamp(1.28rem, 2.2vw, 1.85rem); line-height: 1.28; }
.category-tabs { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: .7rem; }
.category-tab { min-height: 98px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem; border: 1px solid rgba(241,200,90,.3); border-radius: 14px; background: rgba(8,2,4,.92); color: #fff3df; cursor: pointer; }
.category-tab.is-active { color: #160305; background: linear-gradient(140deg, rgba(142,23,36,.96), rgba(241,200,90,.8)); border-color: var(--gold-2); }
.category-icon { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #140305; }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.promo-scroll { width: 100%; overflow: hidden; }
.promo-track { display: flex; align-items: stretch; gap: .85rem; width: max-content; animation: promo-scroll 34s linear infinite; }
.promo-card { width: clamp(240px, 23vw, 320px); flex: 0 0 auto; overflow: hidden; }
.content-banner, .register-banner, .about-image-link, .footer-logo-link { display: block; text-decoration: none; }
.provider-logo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.provider-card { min-height: 104px; display: flex; align-items: center; justify-content: center; padding: .55rem; }
.slot-provider-grid .provider-card { min-height: 80px; }
.jackpot-box { margin-top: 1rem; padding: 1.1rem; text-align: center; border-radius: 16px; border: 1px solid rgba(241,200,90,.42); background: linear-gradient(120deg, rgba(91,10,20,.95), rgba(197,40,58,.72)); }
.jackpot-box span { color: var(--gold-2); font-weight: 900; }
.jackpot-box strong { display: block; margin-top: .4rem; font-size: clamp(1.35rem, 3.2vw, 2.1rem); }
.seo-point-list { display: grid; gap: .75rem; }
.seo-point-list div { min-height: 56px; display: flex; align-items: center; gap: .7rem; padding: .85rem 1rem; border: 1px solid rgba(241,200,90,.3); border-radius: 12px; background: rgba(25,5,9,.72); }
.seo-point-list span { width: 10px; height: 10px; flex: 0 0 auto; border-radius: 50%; background: var(--gold); box-shadow: 0 0 14px rgba(241,200,90,.72); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.article-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.register-pill { width: min(920px, 100%); margin: 0 auto; padding: .65rem 1.1rem; text-align: center; font-weight: 900; border: 1px solid rgba(255,229,138,.55); border-radius: 999px; background: linear-gradient(180deg, #e33a4b, #8e1724); }
.register-banner-wrap, .about-split { overflow: hidden; border: 1px solid rgba(241,200,90,.42); border-radius: 16px; background: rgba(13,3,6,.9); }
.about-split { padding: 1.25rem; }
.faq-items { display: grid; gap: .7rem; }
.faq-list details { border: 1px solid rgba(241,200,90,.24); border-radius: 12px; background: rgba(8,2,4,.72); }
.faq-list summary { padding: .9rem 1rem; cursor: pointer; font-weight: 900; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { margin: 0; padding: 0 1rem 1rem; color: var(--muted); }

.site-footer { background: #060102; border-top: 1px solid rgba(241,200,90,.55); padding: 1.4rem 0 1.25rem; }
.footer-shell { width: 100%; padding: 0 1rem; }
.footer-provider-section { padding: .8rem 0; border-top: 1px solid rgba(241,200,90,.42); border-bottom: 1px solid rgba(241,200,90,.42); }
.footer-bonus-title { margin: 1rem 0; text-align: center; font-size: clamp(1.05rem, 2vw, 1.45rem); }
.footer-main-block { padding: 1rem; border-top: 1px solid rgba(241,200,90,.42); background: linear-gradient(180deg, rgba(91,10,20,.9), rgba(17,3,6,.96)); }
.footer-main-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1rem; align-items: center; }
.footer-deposit, .footer-brand { text-align: center; }
.footer-deposit h5, .footer-brand h3 { margin: 0; color: var(--gold-2); }
.deposit-icons, .footer-tag-list { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; margin-top: .8rem; }
.deposit-icons a { min-width: 46px; height: 36px; display: inline-flex; align-items: center; justify-content: center; padding: 0 .55rem; border: 1px solid rgba(241,200,90,.48); border-radius: 999px; color: #fff2c8; background: rgba(80,10,18,.78); text-decoration: none; font-weight: 900; }
.footer-tag-list a { color: #ffe8a4; padding: .35rem .6rem; border: 1px solid rgba(241,200,90,.32); border-radius: 8px; background: rgba(117,16,27,.62); text-decoration: none; }
.footer-year, .footer-version { color: #e7cdb8; }

@keyframes provider-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes promo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes slot-shine { 0%, 70% { transform: translateX(-110%); } 100% { transform: translateX(110%); } }
@keyframes panel-sweep { 0%, 58% { transform: translateX(-125%); } 100% { transform: translateX(125%); } }
@keyframes grid-move { from { background-position: 0 0, 0 0; } to { background-position: 0 68px, 68px 0; } }
@keyframes spin { to { rotate: 360deg; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (min-width: 576px) { .d-sm-inline-flex { display: inline-flex !important; } }
@media (min-width: 768px) { .p-md-4 { padding: 1.5rem !important; } }
@media (min-width: 992px) {
  .d-lg-none { display: none !important; }
  .d-lg-flex { display: flex !important; }
  .col-lg-4 { flex: 0 0 33.333333%; width: 33.333333%; }
  .col-lg-5 { flex: 0 0 41.666667%; width: 41.666667%; }
  .col-lg-6 { flex: 0 0 50%; width: 50%; }
  .col-lg-7 { flex: 0 0 58.333333%; width: 58.333333%; }
  .col-lg-8 { flex: 0 0 66.666667%; width: 66.666667%; }
  .py-lg-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
}
@media (max-width: 991.98px) {
  .header-row { grid-template-columns: auto 1fr auto; }
  .site-logo { justify-self: center; }
  .header-actions { display: none; }
  .hero-section { padding-top: 2rem !important; }
  .feature-play-grid, .feature-grid, .review-grid, .provider-logo-grid, .article-grid, .article-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-orbit { display: none; }
}
@media (max-width: 575.98px) {
  .container { width: 100%; max-width: 100%; padding-left: 16px; padding-right: 16px; }
  .row { margin-left: 0; margin-right: 0; }
  .row > * { padding-left: 0; padding-right: 0; }
  .site-header .container { padding-left: 16px; padding-right: 16px; }
  .header-row { min-height: 60px; gap: .55rem; }
  .site-logo span { font-size: .95rem; }
  .logo-slot { width: 38px; height: 38px; flex-basis: 38px; }
  .hero-left { padding: 1rem; }
  .hero-title { font-size: 1.42rem; line-height: 1.35; word-break: normal; }
  .hero-subtitle { font-size: .92rem; line-height: 1.58; }
  .hero-actions-stack { grid-template-columns: 1fr; }
  .hero-actions-stack .btn-cta:nth-child(3) { grid-column: auto; }
  .btn { width: 100%; min-width: 0; }
  .cp-carousel { margin-top: .5rem; animation: none; }
  .cp-carousel-control { width: 34px; height: 34px; font-size: 24px; }
  .top-provider-head { width: 100%; padding: 0 16px; align-items: flex-start; flex-direction: column; gap: .2rem; }
  .top-provider-head a { display: none; }
  .provider-item { min-width: 132px; }
  .provider-item span { display: none; }
  .feature-play-grid, .feature-grid, .review-grid, .provider-logo-grid, .article-grid, .article-list, .footer-main-grid { grid-template-columns: 1fr; }
  .category-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-tab { min-height: 86px; }
  .promo-card { width: 260px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .wide-slot { aspect-ratio: 16 / 9; }
  .about-split { padding: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}


/* FastSpin96 link underline reset. */
a, a:hover, a:focus, .btn, .site-nav a, .sidebar-nav a, .footer-tag-list a, .article-grid a {
  text-decoration: none !important;
}

