:root {
  --bg: #080b18;
  --bg-soft: #0d1226;
  --surface: rgba(17, 23, 48, 0.76);
  --surface-solid: #121932;
  --surface-light: #182144;
  --text: #f7f8ff;
  --muted: #a8b0ca;
  --border: rgba(255, 255, 255, 0.1);
  --primary: #8b5cf6;
  --primary-2: #d946ef;
  --accent: #22d3ee;
  --success: #22c55e;
  --warning: #fbbf24;
  --facebook: #1877f2;
  --whatsapp: #25d366;
  --heading: "Space Grotesk", sans-serif;
  --body: "Manrope", sans-serif;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 28px 90px rgba(0, 0, 0, 0.45);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

html.chatwoot-scroll-lock,
body.chatwoot-scroll-lock {
  overflow: hidden !important;
  overscroll-behavior: none;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 5%, rgba(139, 92, 246, 0.16), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(34, 211, 238, 0.1), transparent 26%),
    linear-gradient(180deg, #090c1b 0%, #080b18 55%, #070914 100%);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-shell {
  overflow: hidden;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 22px 0 56px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 9999;
  transform: translateY(-140%);
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--primary);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(8, 11, 24, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(139, 92, 246, 0.3), rgba(34, 211, 238, 0.13)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.brand-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.brand-copy strong {
  font-family: var(--heading);
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.68rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav > a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
  color: var(--text);
}

.nav-chat {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 999px;
  color: var(--text);
  background: rgba(139, 92, 246, 0.12);
  font-size: 0.83rem;
  font-weight: 800;
  cursor: pointer;
}

.nav-chat:disabled,
.js-chat-trigger:disabled {
  cursor: wait;
  opacity: 0.68;
}

.status-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
  animation: statusPulse 2.2s infinite;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  padding-top: 88px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 72px;
}

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

.hero-glow-one {
  width: 520px;
  height: 520px;
  top: 28px;
  left: -240px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 68%);
}

.hero-glow-two {
  width: 620px;
  height: 620px;
  right: -280px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12), transparent 68%);
}

.eyebrow,
.section-kicker {
  color: #c8b8ff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 13px;
  border: 1px solid rgba(139, 92, 246, 0.34);
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.08);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(3.15rem, 6.6vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(95deg, #ffffff 0%, #b7a3ff 42%, #3de2ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-text {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 32px rgba(139, 92, 246, 0.28);
}

.button-primary:hover:not(:disabled) {
  box-shadow: 0 18px 40px rgba(139, 92, 246, 0.38);
}

.button-secondary {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.075);
}

.button-full {
  width: 100%;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 38px;
}

.hero-proof > div {
  display: flex;
  flex-direction: column;
}

.hero-proof strong {
  font-family: var(--heading);
  font-size: 1.25rem;
}

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

.hero-visual {
  position: relative;
  min-height: 545px;
  display: grid;
  place-items: center;
}

.crystal-card {
  position: relative;
  width: min(430px, 88vw);
  min-height: 490px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(139, 92, 246, 0.17), rgba(17, 25, 50, 0.76) 44%, rgba(34, 211, 238, 0.08)),
    rgba(17, 23, 48, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 42px 100px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(22px);
  transform: rotate(2deg);
}

.crystal-card::before {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  top: 80px;
  left: 70px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(45deg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent);
}

.crystal-card-shine {
  position: absolute;
  width: 220px;
  height: 700px;
  top: -150px;
  left: -280px;
  opacity: 0.48;
  transform: rotate(28deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  animation: cardShine 7s infinite ease-in-out;
}

.visual-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 999px;
  color: #bcf7cc;
  background: rgba(34, 197, 94, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
}

.visual-code {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.visual-logo {
  position: relative;
  z-index: 2;
  height: 230px;
  display: grid;
  place-items: center;
}

.visual-logo img {
  width: 210px;
  max-height: 210px;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 36px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 28px rgba(139, 92, 246, 0.2));
}

.visual-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.visual-content span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-content strong {
  max-width: 330px;
  font-family: var(--heading);
  font-size: 1.58rem;
  line-height: 1.15;
}

.visual-pills {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.visual-pills span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #d5daf0;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.7rem;
  font-weight: 700;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 185px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(13, 18, 38, 0.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.floating-card > i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--primary-2));
}

.floating-card div {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  font-size: 0.79rem;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.67rem;
}

.floating-card-left {
  left: -12px;
  bottom: 85px;
  animation: floatCard 5s infinite ease-in-out;
}

.floating-card-right {
  top: 88px;
  right: -26px;
  animation: floatCard 5.8s infinite ease-in-out reverse;
}

/* Quick actions */
.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.action-card {
  min-width: 0;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.action-card:hover:not(:disabled) {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.45);
  background: rgba(139, 92, 246, 0.07);
}

.action-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  font-size: 1.12rem;
}

.action-icon-purple {
  color: #dfd4ff;
  background: rgba(139, 92, 246, 0.18);
}

.action-icon-green {
  color: #9cf8b6;
  background: rgba(37, 211, 102, 0.14);
}

.action-icon-blue {
  color: #a6eaf4;
  background: rgba(34, 211, 238, 0.13);
}

.action-card > span:nth-child(2) {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.action-card small {
  color: var(--muted);
  font-size: 0.72rem;
}

.action-card strong {
  overflow: hidden;
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.action-arrow {
  color: var(--muted);
  font-size: 0.78rem;
}

/* Headings */
.section-heading {
  max-width: 680px;
}

.section-heading h2 {
  margin: 9px 0 12px;
  font-family: var(--heading);
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.heading-row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

/* Games */
.games-section {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(15, 20, 43, 0.52), transparent);
}

.search-box {
  width: min(390px, 100%);
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 13px 0 17px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.05);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.search-box:focus-within {
  border-color: rgba(139, 92, 246, 0.62);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.09);
}

.search-box > i {
  color: var(--muted);
}

.search-box input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.search-box input::placeholder {
  color: #737d9f;
}

.clear-search {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 9px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.game-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0 18px;
  color: var(--muted);
  font-size: 0.76rem;
}

.game-meta strong {
  color: var(--text);
}

.game-tip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.game-item {
  min-width: 0;
}

.game-card {
  position: relative;
  min-height: 138px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(12, 17, 36, 0.72);
  text-decoration: none;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.game-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.12);
  filter: blur(4px);
  transition: transform 0.25s ease;
}

.game-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.45);
  background:
    linear-gradient(145deg, rgba(139, 92, 246, 0.09), rgba(34, 211, 238, 0.025)),
    rgba(12, 17, 36, 0.9);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.game-card:hover::after {
  transform: scale(1.4);
}

.game-art {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.11), transparent 55%),
    rgba(255, 255, 255, 0.035);
}

.game-art img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.35));
  transition: transform 0.22s ease;
}

.game-card:hover .game-art img {
  transform: scale(1.08);
}

.game-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.game-info strong {
  overflow: hidden;
  font-size: 0.86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-info small {
  color: var(--muted);
  font-size: 0.67rem;
}

.game-open {
  position: relative;
  z-index: 2;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #c8b8ff;
  background: rgba(139, 92, 246, 0.11);
  font-size: 0.7rem;
}

.game-card.is-unavailable {
  opacity: 0.62;
}

.empty-state {
  max-width: 520px;
  margin: 38px auto 0;
  padding: 42px 25px;
  border: 1px dashed rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-lg);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

.empty-state > i {
  color: var(--primary);
  font-size: 1.9rem;
}

.empty-state h3 {
  margin: 14px 0 4px;
  color: var(--text);
  font-family: var(--heading);
}

.empty-state p {
  margin: 0 0 20px;
}

/* Rules and support */
.info-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.72fr;
  align-items: start;
  gap: 24px;
}

.rule-card,
.support-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.rule-card {
  padding: 30px;
}

.rule-preview {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  margin-top: 28px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #0b1023;
  cursor: zoom-in;
}

.rule-preview img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.rule-preview:hover img {
  transform: scale(1.012);
}

.rule-preview span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: white;
  background: rgba(8, 11, 24, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.support-panel {
  position: sticky;
  top: 104px;
  padding: 30px;
}

.support-panel h3 {
  margin: 10px 0 13px;
  font-family: var(--heading);
  font-size: 1.8rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.support-panel > p {
  color: var(--muted);
  font-size: 0.9rem;
}

.support-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 27px;
  padding: 0;
  list-style: none;
}

.support-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dfe3f5;
  font-size: 0.84rem;
}

.support-list i {
  color: var(--success);
}

/* Contact */
.contact-section {
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.055), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  max-width: 940px;
  margin: 42px auto 0;
}

.contact-card {
  min-width: 0;
  min-height: 120px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 24px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.contact-card:hover:not(:disabled) {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.42);
  background: rgba(139, 92, 246, 0.07);
}

.contact-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: white;
  font-size: 1.25rem;
}

.contact-icon-chat {
  background: linear-gradient(145deg, var(--primary), var(--primary-2));
}

.contact-icon-facebook {
  background: var(--facebook);
}

.contact-icon-whatsapp {
  color: #07170d;
  background: var(--whatsapp);
}

.contact-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.contact-content small {
  color: #b8a8ff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-content strong {
  overflow: hidden;
  font-family: var(--heading);
  font-size: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-content span {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-card > i {
  color: var(--muted);
  font-size: 0.76rem;
}

/* Notice */
.notice-strip {
  padding: 24px 0;
  border-top: 1px solid rgba(251, 191, 36, 0.13);
  border-bottom: 1px solid rgba(251, 191, 36, 0.13);
  background: rgba(251, 191, 36, 0.035);
}

.notice-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #d9d0b0;
  font-size: 0.78rem;
}

.notice-content > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.notice-content i {
  color: var(--warning);
}

.notice-content a {
  color: #f6d878;
  font-weight: 800;
  white-space: nowrap;
}

/* Footer */
.site-footer {
  padding: 58px 0 110px;
  background: #070914;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 0.7fr;
  gap: 42px;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links strong,
.footer-social strong {
  margin-bottom: 5px;
  font-family: var(--heading);
  font-size: 0.86rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-social > div {
  display: flex;
  gap: 9px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.45);
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: #747d9a;
  font-size: 0.72rem;
}

/* Dialog */
.rule-dialog {
  width: min(920px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 24px;
  color: var(--text);
  background: #0a0e1f;
  box-shadow: var(--shadow-lg);
}

.rule-dialog::backdrop {
  background: rgba(2, 4, 12, 0.86);
  backdrop-filter: blur(8px);
}

.rule-dialog img {
  width: 100%;
  display: block;
}

.dialog-toolbar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 14, 31, 0.92);
  backdrop-filter: blur(14px);
}

.dialog-toolbar strong {
  font-family: var(--heading);
}

.dialog-toolbar button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

/* Toast */
.toast-region {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 250;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.toast-message {
  max-width: 350px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 16px;
  color: var(--text);
  background: rgba(13, 18, 38, 0.94);
  box-shadow: var(--shadow-sm);
  font-size: 0.8rem;
  animation: toastIn 0.25s ease both;
  backdrop-filter: blur(16px);
}

.toast-message i {
  color: var(--accent);
}

/* Mobile dock */
.mobile-dock {
  display: none;
}

/* Animations */
@keyframes statusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.025);
  }
}

@keyframes cardShine {
  0%,
  26% {
    left: -300px;
  }
  50%,
  100% {
    left: 560px;
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive */
@media (max-width: 1050px) {
  .hero-grid {
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(3rem, 7vw, 5rem);
  }

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

  .floating-card-left {
    left: 0;
  }

  .floating-card-right {
    right: 0;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 74px 0;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(10, 14, 31, 0.97);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav > a,
  .nav-chat {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 13px;
    border-radius: 12px;
  }

  .site-nav > a:hover {
    background: rgba(255, 255, 255, 0.045);
  }

  .nav-chat {
    margin-top: 4px;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow {
    margin-inline: auto;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    min-height: 525px;
  }

  .action-grid {
    grid-template-columns: 1fr;
  }

  .heading-row {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box {
    width: 100%;
  }

  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .support-panel {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 62px 0;
  }

  .section-sm {
    padding-bottom: 38px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand-mark img {
    width: 37px;
    height: 37px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  .hero-text {
    font-size: 0.94rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    gap: 18px;
  }

  .hero-proof > div {
    min-width: 80px;
  }

  .hero-visual {
    min-height: 455px;
  }

  .crystal-card {
    min-height: 420px;
    padding: 23px;
    border-radius: 30px;
  }

  .visual-logo {
    height: 190px;
  }

  .visual-logo img {
    width: 170px;
    max-height: 170px;
  }

  .visual-content strong {
    font-size: 1.32rem;
  }

  .visual-pills span:nth-child(3) {
    display: none;
  }

  .floating-card {
    min-width: 160px;
    padding: 11px 12px;
  }

  .floating-card-left {
    left: -4px;
    bottom: 25px;
  }

  .floating-card-right {
    top: 52px;
    right: -4px;
  }

  .section-heading h2 {
    font-size: 2.35rem;
  }

  .game-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    margin-top: 28px;
  }

  .game-grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    min-height: 112px;
    grid-template-columns: 64px minmax(0, 1fr) auto;
  }

  .game-art {
    width: 64px;
    height: 64px;
  }

  .game-art img {
    width: 52px;
    height: 52px;
  }

  .rule-card,
  .support-panel {
    padding: 20px;
    border-radius: 25px;
  }

  .rule-preview {
    border-radius: 18px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 108px;
  }

  .notice-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .site-footer {
    padding-bottom: 112px;
  }

  .toast-region {
    left: 14px;
    right: 14px;
    bottom: 92px;
  }

  .toast-message {
    max-width: none;
  }

  .mobile-dock {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 180;
    display: grid;
    grid-template-columns: 1fr 78px 1fr;
    align-items: end;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(10, 14, 31, 0.9);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
  }

  .mobile-dock > a,
  .mobile-chat {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    border: 0;
    border-radius: 15px;
    color: var(--muted);
    background: transparent;
    font-size: 0.69rem;
    text-decoration: none;
  }

  .mobile-dock i {
    font-size: 0.95rem;
  }

  .mobile-chat {
    position: relative;
    width: 68px;
    margin: 0 auto;
    cursor: pointer;
  }

  .mobile-chat > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-top: -27px;
    border: 5px solid #0a0e1f;
    border-radius: 50%;
    color: white;
    background: linear-gradient(145deg, var(--primary), var(--primary-2));
    box-shadow: 0 12px 25px rgba(139, 92, 246, 0.35);
  }

  .mobile-chat small {
    margin-top: 2px;
    color: var(--text);
    font-size: 0.68rem;
    font-weight: 800;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
