/* MATOK template 601 */
:root {
  --orange: #ff6b35;
  --pink: #ff2d78;
  --magenta: #c850c0;
  --gold: #ffd700;
  --bg: #0a0a0f;
  --bg-2: #12121a;
  --text: #f5f5f7;
  --muted: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.1);
  --grad: linear-gradient(135deg, #ff6b35 0%, #ff2d78 50%, #c850c0 100%);
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(255, 107, 53, 0.18), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(200, 80, 192, 0.16), transparent 50%),
    var(--bg);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

h1,
h2,
h3,
h4,
.brand-name,
.hero-brand {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.text-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 107, 53, 0.45);
  background: rgba(255, 107, 53, 0.12);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill-live::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 10px #ff3b3b;
  animation: pulse-dot 1.6s ease-in-out infinite;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-cta {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 45, 120, 0.28);
}

.btn-primary:hover,
.btn-cta:hover {
  box-shadow: 0 14px 36px rgba(255, 45, 120, 0.4);
}

.btn-pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.btn-cta {
  min-height: 42px;
  padding: 0.55rem 1.1rem;
  font-size: 0.92rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(10, 10, 15, 0.78);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  height: var(--header-h);
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-desktop {
  display: none;
  gap: 1.4rem;
  margin-left: 1.5rem;
}

.nav-desktop a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-desktop a:hover {
  color: #fff;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.nav-toggle-bar {
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0.18rem 0;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1.25rem 1.35rem;
  background: rgba(10, 4, 7, 0.98);
  border-bottom: 1px solid rgba(255, 107, 53, 0.25);
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 1.05rem;
}

.nav-mobile a:hover {
  color: #fff;
}

.nav-mobile-cta {
  width: 100%;
  margin-top: 0.75rem;
}

.lang-switch {
  position: relative;
}

.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 40px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
  white-space: nowrap;
}

.lang-caret {
  opacity: 0.7;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  min-width: 194px;
  padding: 0.4rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #14141e;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  z-index: 60;
}

.lang-menu[hidden] {
  display: none;
}

.lang-menu button {
  width: 100%;
  display: grid;
  grid-template-columns: 1.4rem 1fr 1rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.7rem;
  border-radius: 10px;
  text-align: left;
  color: var(--muted);
}

.lang-menu button:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.lang-menu button.is-active {
  color: var(--orange);
  background: rgba(255, 107, 53, 0.12);
}

.lang-check {
  opacity: 0;
  color: var(--orange);
  font-weight: 700;
}

.lang-menu button.is-active .lang-check {
  opacity: 1;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 1.25rem 3rem;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0510 50%, #0a0a0f 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(64px);
}

.hero-orb-a {
  top: 18%;
  left: 18%;
  width: 24rem;
  height: 24rem;
  opacity: 0.2;
  background: radial-gradient(circle, var(--orange), transparent 70%);
}

.hero-orb-b {
  right: 12%;
  bottom: 16%;
  width: 20rem;
  height: 20rem;
  opacity: 0.15;
  background: radial-gradient(circle, var(--magenta), transparent 70%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  bottom: -20px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.75);
  animation: float-up linear infinite;
  opacity: 0.8;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.hero-title {
  margin: 1rem 0 0.4rem;
  display: grid;
  gap: 0.2rem;
}

.hero-brand {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4s linear infinite;
  background-size: 200% auto;
}

.hero-sub {
  font-size: clamp(1.25rem, 3.2vw, 2rem);
  font-weight: 700;
  color: #fff;
}

.hero-desc {
  margin: 0.9rem 0 0;
  color: var(--muted);
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.chip-inline {
  font-weight: 700;
}

.chip-pg {
  color: var(--orange);
}

.chip-jili {
  color: var(--gold);
}

.hero-slogan {
  display: inline;
  margin-left: 0.35rem;
  color: var(--gold);
  font-weight: 700;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-bebas);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--orange);
}

.hero-stat:nth-child(2) strong {
  color: var(--pink);
}

.hero-stat:nth-child(3) strong {
  color: var(--magenta);
}

.hero-stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual-glow {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: var(--grad);
  filter: blur(36px);
  opacity: 0.4;
}

.hero-visual-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 42rem;
  border-radius: 1.5rem;
  object-fit: cover;
  box-shadow:
    0 0 60px rgba(255, 107, 53, 0.3),
    0 0 120px rgba(200, 80, 192, 0.15);
}

/* Stats strip */
.stats-strip {
  padding: 4rem 1.25rem;
  background: linear-gradient(180deg, #0a0a0f 0%, #120408 50%, #0a0a0f 100%);
}

.stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(30, 12, 16, 0.9);
  border: 1px solid rgba(var(--stat-rgb), 0.2);
  box-shadow: 0 0 20px rgba(var(--stat-rgb), 0.08);
  transition: transform 0.3s ease;
  animation-delay: var(--delay, 0s);
}

.stat-item:hover,
.stat-item.reveal.in-view:hover {
  transform: scale(1.05);
}

.stat-icon {
  font-size: 1.875rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-value {
  display: block;
  font-family: var(--font-bebas);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--stat);
  text-shadow: 0 0 20px rgba(var(--stat-rgb), 0.5);
  line-height: 1.1;
}

.stat-label {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Sections */
.section {
  padding: 4.5rem 1.25rem;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-head h2 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.2;
  color: #fff;
}

.section-head p {
  margin: 0 auto;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  text-transform: uppercase;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.45);
  color: var(--orange);
}

.eyebrow-live::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

.eyebrow-games {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  color: var(--gold);
}

.eyebrow-games::before {
  content: "🎮";
  font-size: 0.85rem;
}

.text-grad-gold {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.live-section {
  background: linear-gradient(180deg, #0a0a0f 0%, #12040a 60%, #0a0a0f 100%);
}

.games-section {
  background: linear-gradient(180deg, #0a0a0f 0%, #0f0308 60%, #0a0a0f 100%);
}

.section-banner {
  margin-bottom: 3.5rem;
}

.section-banner-frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}

.section-banner-tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.25), rgba(200, 80, 192, 0.25));
  pointer-events: none;
}

.section-banner-frame img {
  display: block;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 1.5rem;
  box-shadow: 0 0 60px rgba(255, 107, 53, 0.3);
}

.section-banner-frame-gold img {
  box-shadow: 0 0 60px rgba(255, 215, 0, 0.3);
}

.live-cats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.live-cat {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(30, 12, 16, 0.9);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.06);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.live-cat:hover,
.live-cat.reveal.in-view:hover {
  transform: scale(1.05);
}

.live-cat-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.live-cat-emoji {
  font-size: 2.25rem;
  line-height: 1;
}

.live-cat-online {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.125);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  white-space: nowrap;
}

.live-cat-online i {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

.live-cat h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: #fff;
}

.live-cat p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.live-cat-cta {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  transition: letter-spacing 0.3s ease;
}

.live-cat:hover .live-cat-cta {
  letter-spacing: 0.04em;
}

.game-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.game-card {
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  background: rgba(30, 12, 16, 0.9);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.game-card:hover,
.game-card.reveal.in-view:hover {
  transform: scale(1.1);
  border-color: rgba(var(--accent-rgb), 0.5);
  box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.3);
}

.game-card span {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.game-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  color: #fff;
}

.game-card small {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.game-card em {
  display: block;
  margin-top: 0.35rem;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--accent);
}

.provider-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.provider {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  background: rgba(30, 12, 16, 0.9);
  border: 2px solid rgba(var(--provider-rgb), 0.314);
  box-shadow: 0 0 20px rgba(var(--provider-rgb), 0.125);
}

.provider strong {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--provider), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.provider span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .provider-row {
    flex-direction: row;
  }
}

.features-section {
  background: linear-gradient(180deg, #0a0a0f 0%, #100308 60%, #0a0a0f 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.feature-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(30, 12, 16, 0.9);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover,
.feature-card.reveal.in-view:hover {
  transform: scale(1.05);
  border-color: rgba(var(--accent-rgb), 0.5);
  box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.25);
}

.feature-icon {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: #fff;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.download-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0f 0%, #1e0810 40%, #0e0515 70%, #0a0a0f 100%);
}

.download-topline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff6b35, #ff2d78, #c850c0, transparent);
  z-index: 1;
}

.download-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(64px);
}

.download-orb-a {
  top: 50%;
  left: 20%;
  width: 24rem;
  height: 24rem;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  background: radial-gradient(circle, #ff6b35, transparent 70%);
}

.download-orb-b {
  top: 50%;
  right: 15%;
  width: 20rem;
  height: 20rem;
  transform: translate(50%, -50%);
  opacity: 0.1;
  background: radial-gradient(circle, #c850c0, transparent 70%);
}

.download-panel {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1rem 1.25rem 2rem;
}

.dl-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.45);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dl-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
}

.dl-title-line1,
.dl-title-line2 {
  display: block;
}

.dl-title-line2 {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.dl-copy {
  margin: 0 auto 3rem;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  line-height: 1.7;
}

.dl-bonus {
  color: var(--gold);
  font-weight: 700;
}

.store-row {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 0 3rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 220px;
  padding: 1rem 2rem;
  border-radius: 1rem;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-btn:hover {
  transform: scale(1.05);
}

.store-btn-apple {
  background: linear-gradient(135deg, #1a0d10, #1f1015);
  border: 2px solid rgba(255, 107, 53, 0.3);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.15);
  color: #fff;
}

.store-btn-google {
  background: var(--grad);
  border: 2px solid transparent;
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.5);
  color: #fff;
}

.store-btn-google small {
  color: rgba(255, 255, 255, 0.8);
}

.store-svg {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.store-btn small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.store-btn strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .store-row {
    flex-direction: row;
  }
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.06);
  border: 1px solid rgba(255, 107, 53, 0.2);
  text-align: left;
}

.trust-icon {
  font-size: 1.125rem;
  line-height: 1;
}

.trust-pill strong {
  display: block;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
}

.trust-pill span {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  line-height: 1.3;
}

/* Footer */
.site-footer {
  padding: 3rem 1.25rem 6rem;
  border-top: 1px solid var(--line);
  background: #07070b;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.footer-brand {
  display: grid;
  gap: 0.65rem;
  max-width: 28rem;
}

.footer-brand img {
  border-radius: 10px;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.footer-cols h4 {
  margin: 0 0 0.7rem;
}

.footer-cols a {
  display: block;
  color: var(--muted);
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
}

.footer-cols a:hover {
  color: var(--orange);
}

.footer-copy {
  max-width: 1180px;
  margin: 2rem auto 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.chat-fab {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: #fff;
  opacity: 0;
  transform: translateX(80px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.chat-fab.is-visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.chat-fab-tip {
  margin-bottom: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--grad);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.chat-fab:hover .chat-fab-tip,
.chat-fab:focus-visible .chat-fab-tip,
.chat-fab.is-active .chat-fab-tip {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.chat-fab-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow:
    0 0 20px rgba(255, 107, 53, 0.5),
    0 4px 15px rgba(0, 0, 0, 0.3);
  animation: pulse-glow 2.5s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-fab:hover .chat-fab-btn,
.chat-fab:focus-visible .chat-fab-btn,
.chat-fab.is-active .chat-fab-btn {
  transform: scale(1.12);
  box-shadow:
    0 0 30px rgba(255, 107, 53, 0.8),
    0 0 60px rgba(255, 45, 120, 0.4),
    0 8px 25px rgba(0, 0, 0, 0.4);
}

.chat-fab-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #fff;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.8);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.chat-fab-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 0 8px rgba(255, 107, 53, 0.8);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@keyframes float-up {
  0% {
    opacity: 0.8;
    transform: translateY(0) rotate(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) rotate(180deg);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 8px #ff3b3b80;
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 16px #ff3b3bcc;
    opacity: 0.65;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5), 0 0 10px rgba(255, 45, 120, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.75), 0 0 20px rgba(255, 45, 120, 0.45);
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes count-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .stats-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .live-cats {
    grid-template-columns: repeat(3, 1fr);
  }

  .game-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1.2fr 2fr;
  }

  .footer-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .hero-visual {
    justify-content: flex-end;
  }

  .game-cards {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 767px) {
  .site-header.is-nav-open {
    height: auto;
  }

  .header-actions .btn-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header.is-nav-open .nav-mobile,
  .nav-mobile:not([hidden]) {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-brand,
  .pill-live::before,
  .hero-particles span,
  .btn-pulse {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
