:root {
  --bg-main: #0f0f1a;
  --bg-soft: #1a1a2e;
  --bg-soft-2: #16162b;
  --bg-card: #1e1e36;
  --border: #2a2a4a;
  --text-main: #e5e7eb;
  --text-soft: #9ca3af;
  --text-muted: #6b7280;
  --white: #ffffff;
  --purple: #a855f7;
  --purple-strong: #7c3aed;
  --purple-dark: #6c3baa;
  --indigo: #6366f1;
  --red: #ef4444;
  --green: #22c55e;
  --yellow: #facc15;
  --blue: #3b82f6;
  --orange: #f59e0b;
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.45);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --container: 1280px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
}

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

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
  background: var(--purple-dark);
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}

.container-news {
  max-width: 896px;
}

.page-container {
  min-height: calc(100vh - 200px);
  overflow-x: hidden;
}

.page {
  animation: fadeIn 0.28s ease;
}

.hidden {
  display: none !important;
}

.text-gradient {
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
  animation: pulse-live 2s infinite;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.section-title span {
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.card-surface {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-soft-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.stats-grid-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-soft-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  min-width: 0;
  overflow: hidden;
}

.hover-lift {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  border-color: var(--purple-dark);
  box-shadow: 0 12px 36px rgba(108, 59, 170, 0.18);
}

/* =========================
   NAVBAR
   ========================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-soft-2) 100%);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.navbar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 16px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-logo-icon {
  color: var(--purple);
  -webkit-text-fill-color: var(--purple);
  font-size: 1.3rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: var(--text-soft);
  transition: color 0.2s ease, background 0.2s ease;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 12px;
  border-radius: 8px;
}

.nav-link:hover,
.nav-link.active,
.dropdown-trigger.active {
  color: var(--purple);
}

.dropdown {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow {
  font-size: 0.72rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: none;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 0.88rem;
  color: #d1d5db;
  border-radius: 8px;
}

.dropdown-item:hover {
  background: var(--border);
  color: var(--white);
}

.dropdown-thumb {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
  background: #141425;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.burger {
  display: none;
  color: #d1d5db;
  font-size: 1.18rem;
}

.mobile-menu {
  display: none;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 14px 16px 18px;
  gap: 8px;
}

.mobile-menu .nav-link {
  padding: 10px 12px;
}

/* =========================
   HOME
   ========================= */

.page-hero {
  padding: 48px 0 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-main) 50%, #1a0a2e 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(circle at 30% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 70% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 45%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.hero-header {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
}
.hero-title-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero-title {
  width: 100%;
  font-size: clamp(2.2rem, 5vw, 3.35rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 14px;
  text-align: center;
}

.hero-title-line {
  display: block;
}

.hero-title-line-accent {
  font-size: 1.04em;
}
.hero-play-btn {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f59e0b, #facc15);
  color: #1a1a2e;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 1px solid rgba(250, 204, 21, 0.28);
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hero-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.28);
  filter: brightness(1.04);
  color: #1a1a2e;
}

.hero-play-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.live-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.game-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-soft-2));
  border: 1px solid var(--border);
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple-dark);
  box-shadow: 0 12px 40px rgba(108, 59, 170, 0.25);
}

.game-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  animation: pulse-live 2s infinite;
}

.game-card-media {
  height: 190px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(99, 102, 241, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(99, 102, 241, 0.08));
}

.game-card-body {
  padding: 16px;
}

.game-card-title {
  font-weight: 700;
  font-size: 1.03rem;
  color: var(--white);
  margin-bottom: 4px;
}

.game-card-provider {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.page-section {
  padding: 72px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-soft-2));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple-dark);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-text {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

.testimonials-wrap {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-testimonials 30s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  min-width: 320px;
  max-width: 320px;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-soft-2));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.testimonial-text {
  color: #d1d5db;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.18), rgba(99, 102, 241, 0.16));
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-weight: 700;
}

.testimonial-name {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.76rem;
}

/* =========================
   NEWS
   ========================= */

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-card {
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.news-card:hover {
  border-color: var(--purple-strong);
  transform: translateY(-2px);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.news-tag {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.news-date {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.news-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.news-text {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--purple);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 14px;
}

.news-link:hover {
  color: #c084fc;
}

/* =========================
   GAME PAGE
   ========================= */

.game-page {
  padding: 32px 0 0;
  overflow-x: hidden;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a:hover {
  color: var(--purple);
}

.game-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.game-thumb {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.16), rgba(99, 102, 241, 0.12));
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.02);
}

.game-heading {
  min-width: 0;
  flex: 1;
}

.game-heading h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
}

.game-heading p {
  color: var(--text-soft);
  margin-top: 6px;
  line-height: 1.6;
}

.live-pill {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.18);
  color: #f87171;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.tabs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-soft);
}

.tab-btn:hover {
  color: var(--white);
  background: rgba(108, 59, 170, 0.2);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--purple-strong), var(--indigo));
  color: var(--white);
}

.tab-panel {
  display: none;
  min-width: 0;
}

.tab-panel.active {
  display: block;
}

.panel-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.panel-subtitle {
  color: var(--text-soft);
  font-size: 0.875rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* =========================
   TEMPERATURE
   ========================= */

.temp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}

.temp-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-soft-2));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: border-color 0.3s ease;
  min-width: 0;
}

.temp-card:hover {
  border-color: var(--purple-dark);
}

.temp-segment {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}
.temp-segment-image {
  background: transparent;
  border-radius: 10px;
}

.temp-segment-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.temp-value {
  font-size: 1.35rem;
  font-weight: 800;
}

.temp-hot {
  color: var(--red);
}

.temp-warm {
  color: var(--orange);
}

.temp-cold {
  color: var(--blue);
}

.temp-diff {
  font-size: 0.8rem;
  font-weight: 600;
}

.temp-diff.positive {
  color: var(--green);
}

.temp-diff.negative {
  color: var(--red);
}

.temp-spins {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.temp-icon {
  display: block;
  margin-top: 8px;
}

/* =========================
   HISTORY
   ========================= */

.history-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.history-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.history-toolbar-right span {
  color: var(--text-soft);
  font-size: 0.875rem;
}

.select-control {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.875rem;
  color: #d1d5db;
  outline: none;
  max-width: 100%;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--bg-card), var(--bg-soft-2));
  width: 100%;
}

.spin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
}

.spin-table thead th {
  background: var(--bg-soft);
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1;
  white-space: nowrap;
}

.spin-table tbody tr {
  transition: background 0.2s ease;
}

.spin-table tbody tr:hover {
  background: rgba(108, 59, 170, 0.1);
}

.spin-table tbody td {
  padding: 10px 16px;
  border-bottom: 1px solid #1e1e36;
  font-size: 0.85rem;
  white-space: nowrap;
}

.t-left {
  text-align: left;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.text-soft {
  color: var(--text-soft);
}

.text-green {
  color: #4ade80;
}

.text-gold {
  color: var(--yellow);
}

.result-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--white);
  overflow: hidden;
  vertical-align: middle;
}

.result-badge-image {
  background: transparent !important;
  padding: 0;
  min-width: 56px;
  width: 56px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.result-badge-slot {
  min-width: 40px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.result-badge-bonus-image {
  min-width: 72px;
  width: 72px;
  height: 40px;
  border-radius: 10px;
}

.result-badge-img {
  max-width: 100%;
  max-height: 32px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.result-bonus {
  background: linear-gradient(135deg, var(--orange), var(--red));
  font-size: 0.67rem;
  border-radius: 12px;
  min-width: 60px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-soft);
  transition: all 0.2s ease;
}

.page-btn:hover:not(:disabled),
.page-btn.active {
  background: var(--purple-strong);
  color: var(--white);
  border-color: var(--purple-strong);
}

.page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* =========================
   STATS
   ========================= */

.stats-main-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
  align-items: stretch;
}

.stats-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.summary-card {
  text-align: center;
  min-width: 0;
}

.summary-label {
  color: var(--text-soft);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.summary-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  word-break: break-word;
}

.summary-value.purple {
  color: #c084fc;
}

.summary-value.gold {
  color: var(--yellow);
}

.summary-value.green {
  color: #4ade80;
}

.chart-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.chart-box {
  height: 180px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  min-width: 420px;
  width: max-content;
}

.chart-col {
  width: 40px;
  min-width: 40px;
  max-width: 40px;
  height: 100%;
  display: grid;
  grid-template-rows: 18px 1fr 28px;
  align-items: end;
  gap: 10px;
  flex-shrink: 0;
}

.chart-percent {
  font-size: 0.74rem;
  color: #b7bfd1;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}
.chart-bar-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0 2px;
}


.chart-bar {
  width: 100%;
  min-height: 6px;
  border-radius: 8px 8px 0 0;
  transition: height 0.5s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}
.chart-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.1;
  white-space: nowrap;
  display: inline-block;
}

.chart-label-image {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.chart-label-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.rtp-card-body {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rtp-center {
  text-align: center;
  width: 100%;
}

.rtp-value {
  font-size: clamp(2.4rem, 6vw, 3rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #4ade80, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  word-break: break-word;
}

.rtp-text {
  color: var(--text-soft);
  font-size: 0.875rem;
  margin-top: 10px;
}

.rtp-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.rtp-meta-good {
  color: #4ade80;
  font-size: 0.875rem;
  font-weight: 600;
}

.rtp-meta-muted {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* =========================
   BIG WINS
   ========================= */

.bigwins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.bigwin-card {
  transition: border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.bigwin-card:hover {
  border-color: var(--purple-strong);
  transform: translateY(-2px);
}

.bigwin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 8px;
}

.bigwin-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.bigwin-rank {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-soft);
  flex-shrink: 0;
}

.bigwin-rank.top {
  color: var(--yellow);
}

.bigwin-main {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  min-width: 0;
}

.bigwin-segment {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  padding: 4px;
}

.bigwin-segment-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.bigwin-multiplier {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  word-break: break-word;
}

.bigwin-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.bigwin-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.bigwin-payout {
  color: #4ade80;
  font-weight: 700;
}

.bigwin-watch {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.about-card {
  margin-top: 48px;
}

.about-text {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* =========================
   FOOTER
   ========================= */

.footer {
  margin-top: 48px;
  padding: 48px 0;
  background: #0a0a14;
  border-top: 1px solid #1e1e36;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}

.footer-logo {
  margin-bottom: 12px;
}

.footer-title {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-list a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-list a:hover {
  color: var(--purple);
}

.footer-bottom {
  border-top: 1px solid #1e1e36;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  color: #4b5563;
  font-size: 0.875rem;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  color: #4b5563;
  font-size: 1.125rem;
}

.footer-socials a:hover {
  color: var(--purple);
}

.empty-state {
  color: var(--text-soft);
  font-size: 0.95rem;
  padding: 18px 0;
}

/* =========================
   COINFLIP SPECIAL
   ========================= */

.coinflip-special {
  display: grid;
  gap: 24px;
}

.coinflip-special-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 8px;
  margin-bottom: 28px;
}

.coinflip-board {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-soft-2));
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  min-width: 0;
}

.coinflip-board-header {
  padding: 20px 20px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.coinflip-board-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.coinflip-board-subtitle {
  color: var(--text-soft);
  font-size: 0.85rem;
}

.coinflip-table-wrap {
  overflow-x: auto;
  width: 100%;
}

.coinflip-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.coinflip-table thead th {
  background: rgba(255, 255, 255, 0.03);
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.coinflip-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
  color: var(--text-main);
  vertical-align: middle;
  white-space: nowrap;
}

.coinflip-table tbody tr:hover {
  background: rgba(124, 58, 237, 0.08);
}

.coinflip-table tbody tr.highlight-row {
  background: rgba(99, 102, 241, 0.14);
}

.coinflip-date {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

.coinflip-date-day {
  color: var(--white);
  font-weight: 600;
  font-size: 0.87rem;
}

.coinflip-date-time {
  color: var(--text-muted);
  font-size: 0.73rem;
}

.coinflip-player {
  color: var(--white);
  font-weight: 600;
}

.coinflip-amount {
  color: var(--white);
  font-weight: 700;
}

.coinflip-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #0ea75a;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.coinflip-pill.gold {
  background: linear-gradient(135deg, #f59e0b, #eab308);
  color: #1a1a2e;
}

.coinflip-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.coinflip-summary-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-soft-2));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  min-width: 0;
}

.coinflip-summary-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.coinflip-summary-value {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  word-break: break-word;
}

.coinflip-summary-value.green {
  color: #4ade80;
}

.coinflip-summary-value.blue {
  color: #60a5fa;
}

.coinflip-summary-value.red {
  color: #f87171;
}

.coinflip-summary-value.gold {
  color: #facc15;
}

/* =========================
   ANIMATIONS
   ========================= */

@keyframes pulse-live {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes scroll-testimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .burger {
    display: block;
  }

  .stats-main-grid {
    grid-template-columns: 1fr;
  }

  .coinflip-special-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding-top: 36px;
  }

  .hero-header {
    margin-bottom: 30px;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  }

  .game-card-media {
    height: 160px;
  }

  .live-pill {
    margin-left: 0;
  }

  .game-header {
    align-items: flex-start;
  }

  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
  }

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

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

  .chart-box {
    min-width: 380px;
    gap: 8px;
    height: 180px;
  }

  .chart-col {
    width: 34px;
    min-width: 34px;
    max-width: 34px;
  }

  .chart-percent {
    font-size: 0.64rem;
  }

  .chart-label-image {
    width: 22px;
    height: 22px;
  }

  .chart-label {
    font-size: 0.54rem;
  }

  .rtp-card-body {
    height: auto;
    min-height: 180px;
    padding: 12px 0;
  }

  .rtp-value {
    font-size: 2.7rem;
  }

  .coinflip-board-title {
    font-size: 1.25rem;
  }

  .coinflip-table thead th,
  .coinflip-table tbody td {
    padding: 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 560px) {
  .hero-title {
    font-size: 2rem;
  }

  .game-thumb {
    width: 72px;
    height: 72px;
  }

  .tabs-row {
    gap: 6px;
  }

  .tab-btn {
    width: 100%;
  }

  .history-toolbar {
    align-items: flex-start;
  }

  .history-toolbar-right {
    width: 100%;
    justify-content: space-between;
  }

  .history-toolbar-right .select-control {
    margin-left: auto;
  }

  .stats-grid-card {
    padding: 16px;
  }

  .stats-summary-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .coinflip-summary-grid {
    grid-template-columns: 1fr;
  }

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

  .chart-box {
    min-width: 330px;
    height: 170px;
    gap: 6px;
  }

  .chart-col {
    width: 30px;
    min-width: 30px;
    max-width: 30px;
  }
  .chart-percent {
    font-size: 0.58rem;
  }

  .chart-label-image {
    width: 18px;
    height: 18px;
  }

  .chart-label {
    font-size: 0.48rem;
  }

  .rtp-value {
    font-size: 2.4rem;
  }

  .rtp-text,
  .rtp-meta-good,
  .rtp-meta-muted {
    font-size: 0.8rem;
  }

  .result-badge-image,
  .result-badge-slot {
    width: 34px;
    min-width: 34px;
    height: 34px;
  }

  .result-badge-bonus-image {
    width: 60px;
    min-width: 60px;
    height: 34px;
  }

  .bigwin-segment {
    width: 42px;
    height: 42px;
  }

  .coinflip-table {
    min-width: 480px;
  }
}
.crazytime-bonus-section {
  margin-top: 32px;
}

.crazytime-bonus-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-soft-2));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  overflow: hidden;
}

.crazytime-bonus-header {
  margin-bottom: 22px;
}

.crazytime-bonus-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.crazytime-bonus-subtitle {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 860px;
}

.crazytime-bonus-list {
  display: grid;
  gap: 16px;
}

.crazytime-bonus-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 16px;
}

.crazytime-bonus-top {
  display: grid;
  grid-template-columns: 110px 1fr 110px;
  gap: 16px;
  align-items: center;
}

.crazytime-bonus-label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.crazytime-bonus-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.crazytime-bonus-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.crazytime-bonus-name {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
}

.crazytime-bonus-bar-wrap {
  width: 100%;
  min-width: 0;
}

.crazytime-bonus-bar {
  position: relative;
  width: 100%;
  height: 18px;
  border-radius: 999px;
  background: #e5e7eb22;
  overflow: hidden;
}

.crazytime-bonus-fill {
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
  border-radius: 999px;
}

.crazytime-bonus-marker {
  position: absolute;
  top: -3px;
  bottom: -3px;
  width: 2px;
  background: rgba(255,255,255,0.9);
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
}

.crazytime-bonus-bar-meta {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.76rem;
}

.crazytime-bonus-metric {
  text-align: right;
}

.crazytime-bonus-value {
  color: var(--white);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.crazytime-bonus-diff {
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 700;
}

.crazytime-bonus-diff.positive {
  color: #4ade80;
}

.crazytime-bonus-diff.negative {
  color: #f87171;
}

.crazytime-bonus-footnote {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.7;
}

.crazytime-bonus-footnote strong {
  color: var(--white);
}

.crazytime-recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.crazytime-recent-cell {
  min-height: 56px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
  padding: 8px;
}

.crazytime-recent-cell.high {
  background: rgba(34,197,94,0.18);
  border-color: rgba(34,197,94,0.4);
  color: #dcfce7;
}

.crazytime-recent-cell.low {
  background: rgba(239,68,68,0.18);
  border-color: rgba(239,68,68,0.35);
  color: #fee2e2;
}

@media (max-width: 768px) {
  .crazytime-bonus-card {
    padding: 16px;
  }

  .crazytime-bonus-top {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .crazytime-bonus-metric {
    text-align: left;
  }

  .crazytime-bonus-value {
    font-size: 1.4rem;
  }

  .crazytime-recent-grid {
    grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
    gap: 8px;
  }

  .crazytime-recent-cell {
    min-height: 48px;
    font-size: 0.75rem;
  }
}
.crazytime-bonus-card + .crazytime-bonus-card {
  margin-top: 24px;
}

.crazytime-content-section {
  margin-top: 40px;
}

.crazytime-content-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-soft-2));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.crazytime-content-intro {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 22px;
}

.crazytime-content-block + .crazytime-content-block {
  margin-top: 28px;
}

.crazytime-content-title {
  position: relative;
  padding-left: 58px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.crazytime-content-title::before {
  content: "CT";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-6deg);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.28);
}

.crazytime-content-subtitle {
  position: relative;
  padding-left: 36px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  min-height: 28px;
  display: flex;
  align-items: center;
}

.crazytime-content-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.95), rgba(99, 102, 241, 0.95));
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.25);
}

.crazytime-content-mini-title {
  position: relative;
  padding-left: 28px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  min-height: 22px;
  display: flex;
  align-items: center;
}

.crazytime-content-mini-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(10deg);
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.95), rgba(16, 185, 129, 0.95));
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.18);
}


.crazytime-content-text {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.85;
}

.crazytime-content-text + .crazytime-content-text {
  margin-top: 12px;
}

.crazytime-faq-list {
  display: grid;
  gap: 16px;
}

.crazytime-faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 16px;
}

.crazytime-faq-question {
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.5;
}

.crazytime-faq-question::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(239, 68, 68, 0.95));
  box-shadow: 0 6px 14px rgba(239, 68, 68, 0.18);
}

.crazytime-faq-answer {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .crazytime-content-title {
    padding-left: 50px;
    min-height: 36px;
  }

  .crazytime-content-title::before {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
    border-radius: 10px;
  }

  .crazytime-content-subtitle {
    padding-left: 30px;
  }

  .crazytime-content-subtitle::before {
    width: 18px;
    height: 18px;
    border-radius: 6px;
  }

  .crazytime-content-mini-title {
    padding-left: 24px;
  }

  .crazytime-content-mini-title::before {
    width: 14px;
    height: 14px;
  }

  .crazytime-faq-question {
    padding-left: 28px;
  }

  .crazytime-faq-question::before {
    width: 18px;
    height: 18px;
    font-size: 0.68rem;
  }
  .crazytime-content-card {
    padding: 18px;
  }

  .crazytime-content-title {
    font-size: 1.2rem;
  }

  .crazytime-content-subtitle {
    font-size: 0.98rem;
  }

  .crazytime-content-text,
  .crazytime-faq-answer {
    font-size: 0.88rem;
    line-height: 1.75;
  }
}
.home-editorial-section {
  padding: 64px 0;
}

.home-editorial-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}

.home-editorial-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.home-editorial-intro {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}

.home-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.home-editorial-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-soft-2));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.home-editorial-card:hover {
  border-color: var(--purple-dark);
  transform: translateY(-2px);
}

.home-editorial-card-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-editorial-card-title i {
  color: var(--purple);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.home-editorial-card-text {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.75;
}

.home-editorial-card-text + .home-editorial-card-text {
  margin-top: 10px;
}

.home-editorial-list {
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

.home-editorial-list li {
  color: var(--text-main);
  font-size: 0.9rem;
  padding-left: 16px;
  position: relative;
}

.home-editorial-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: bold;
}

@media (max-width: 920px) {
  .home-editorial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .home-editorial-section {
    padding: 48px 0;
  }
  .home-editorial-card {
    padding: 22px;
  }
  .home-editorial-title {
    font-size: 1.5rem;
  }
}
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-switcher-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
}

.lang-switcher-flag-img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.lang-switcher-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-main);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.85rem;
  outline: none;
  min-width: 72px;
}

.lang-switcher-mobile {
  margin-top: 8px;
}
.floating-play-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple-strong), var(--indigo));
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 36px rgba(124, 58, 237, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.floating-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(124, 58, 237, 0.42);
  filter: brightness(1.06);
  color: var(--white);
}

.floating-play-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .floating-play-btn {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.9rem;
  }
  .hero-play-btn {
    width: 100%;
    max-width: 260px;
  }
}
@media (max-width:560px) {
  .hero-play-btn {
    width: 100%;
    max-width: 280px;
    min-height: 58px;
    padding: 0 24px;
    font-size: 1rem;
  }
}
.crazytime-coinflip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.crazytime-coinflip-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 18px;
}

.crazytime-coinflip-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.crazytime-coinflip-color {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.crazytime-coinflip-metrics {
  text-align: right;
}

.crazytime-coinflip-label {
  color: var(--text-soft);
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.crazytime-coinflip-value {
  color: var(--white);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.crazytime-coinflip-diff,
.crazytime-coinflip-frequency-diff {
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 700;
}

.crazytime-coinflip-diff.positive,
.crazytime-coinflip-frequency-diff.positive {
  color: #4ade80;
}

.crazytime-coinflip-diff.negative,
.crazytime-coinflip-frequency-diff.negative {
  color: #f87171;
}

.crazytime-coinflip-frequency-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--text-soft);
  margin-bottom: 4px;
}

.crazytime-coinflip-frequency-row strong {
  color: var(--white);
  font-size: 1.4rem;
}

.crazytime-coinflip-bar {
  position: relative;
  margin-top: 10px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.crazytime-coinflip-bar-fill {
  height: 100%;
  border-radius: 999px;
}

.crazytime-coinflip-bar-marker {
  position: absolute;
  top: -3px;
  bottom: -3px;
  width: 2px;
  background: rgba(255,255,255,0.9);
  transform: translateX(-50%);
}

.crazytime-coinflip-bar-meta {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.78rem;
}

.crazytime-symbols-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
}

.crazytime-symbol-card {
  border-radius: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.crazytime-symbol-card.positive {
  border-color: rgba(74, 222, 128, 0.35);
}

.crazytime-symbol-card.negative {
  border-color: rgba(248, 113, 113, 0.35);
}

.crazytime-symbol-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.crazytime-symbol-value {
  color: var(--white);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.1;
}

.crazytime-symbol-diff {
  margin-top: 10px;
  font-size: 0.92rem;
  font-weight: 700;
}

.crazytime-symbol-diff.positive {
  color: #4ade80;
}

.crazytime-symbol-diff.negative {
  color: #f87171;
}

.crazytime-symbol-meta {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .crazytime-coinflip-grid {
    grid-template-columns: 1fr;
  }

  .crazytime-coinflip-top {
    align-items: flex-start;
  }

  .crazytime-coinflip-value {
    font-size: 1.65rem;
  }

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

@media (max-width: 560px) {
  .crazytime-symbols-grid {
    grid-template-columns: 1fr;
  }

  .crazytime-coinflip-color {
    width: 64px;
    height: 64px;
    font-size: 0.9rem;
  }

  .crazytime-coinflip-value {
    font-size: 1.45rem;
  }
}
.crazytime-review-section {
  margin-top: 28px;
}
.crazytime-review-intro,
.crazytime-review-text,
.crazytime-review-faq-answer {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.85;
}

.crazytime-review-hero-media {
  margin-top: 20px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--bg-card), var(--bg-soft-2));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.crazytime-review-hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.crazytime-review-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-soft-2));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}

.crazytime-review-block + .crazytime-review-block {
  margin-top: 28px;
}

.crazytime-review-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.crazytime-review-subtitle {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.crazytime-review-mini-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 14px 0 10px;
}


.crazytime-review-steps,
.crazytime-review-list,
.crazytime-review-proscons-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.crazytime-review-steps {
  padding-left: 20px;
}

.crazytime-review-list li,
.crazytime-review-proscons-list li {
  color: var(--text-main);
  line-height: 1.75;
  position: relative;
}

.crazytime-review-list {
  padding-left: 18px;
}

.crazytime-review-list li::marker {
  color: var(--purple);
}

.crazytime-review-tip {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--text-soft);
  line-height: 1.75;
}

.crazytime-review-specs {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(168, 85, 247, 0.10), transparent 35%),
    linear-gradient(145deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.crazytime-review-specs-head,
.crazytime-review-specs-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.crazytime-review-specs-head {
  background: rgba(255,255,255,0.03);
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.crazytime-review-specs-head > div,
.crazytime-review-specs-row > div {
  padding: 14px 16px;
}

.crazytime-review-specs-row {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.crazytime-review-specs-row:nth-child(even) {
  background: rgba(255,255,255,0.015);
}

.crazytime-review-spec-label {
  color: var(--text-soft);
  font-weight: 600;
}

.crazytime-review-spec-value {
  color: var(--white);
  font-weight: 700;
}

.crazytime-review-wheel-table {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.crazytime-review-wheel-head,
.crazytime-review-wheel-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
}

.crazytime-review-wheel-head {
  background: rgba(255,255,255,0.03);
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.crazytime-review-wheel-head > div,
.crazytime-review-wheel-row > div {
  padding: 14px 16px;
}

.crazytime-review-wheel-row {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.crazytime-review-wheel-row:nth-child(even) {
  background: rgba(255,255,255,0.015);
}

.crazytime-review-wheel-row > div:first-child {
  color: var(--white);
  font-weight: 700;
}

.crazytime-review-wheel-row > div:nth-child(2) {
  color: var(--text-soft);
}

.crazytime-review-wheel-row > div:last-child {
  color: #4ade80;
  font-weight: 800;
}

.crazytime-review-bonus-grid,
.crazytime-review-proscons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.crazytime-review-bonus-card,
.crazytime-review-proscons-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 18px;
}

.crazytime-review-bonus-title {
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.crazytime-review-proscons-card.pros {
  border-color: rgba(34,197,94,0.22);
  background: linear-gradient(145deg, rgba(34,197,94,0.07), rgba(255,255,255,0.02));
}

.crazytime-review-proscons-card.cons {
  border-color: rgba(239,68,68,0.22);
  background: linear-gradient(145deg, rgba(239,68,68,0.07), rgba(255,255,255,0.02));
}

.crazytime-review-proscons-list {
  padding-left: 0;
}

.crazytime-review-proscons-list li {
  list-style: none;
  padding-left: 22px;
}

.crazytime-review-proscons-list.pros li::before,
.crazytime-review-proscons-list.cons li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.crazytime-review-proscons-list.pros li::before {
  content: "+";
  color: #4ade80;
}

.crazytime-review-proscons-list.cons li::before {
  content: "-";
  color: #f87171;
}

.crazytime-review-faq-list {
  display: grid;
  gap: 14px;
}

.crazytime-review-faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 16px;
}

.crazytime-review-faq-question {
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .crazytime-review-card {
    
    padding: 18px;
    
  }
  .crazytime-review-hero-media {
    margin-top: 16px;
    border-radius: 14px;
  }
  .crazytime-review-bonus-grid,
  .crazytime-review-proscons-grid {
    grid-template-columns: 1fr;
  }

  .crazytime-review-specs-head,
  .crazytime-review-specs-row {
    grid-template-columns: 1fr;
  }

  .crazytime-review-wheel-head,
  .crazytime-review-wheel-row {
    grid-template-columns: 1.2fr 0.9fr 1fr;
  }
}

@media (max-width: 560px) {
  .crazytime-review-hero-media {
    margin-top: 14px;
    border-radius: 12px;
  }
  .crazytime-review-title {
    font-size: 1.3rem;
  }

  .crazytime-review-subtitle {
    font-size: 1.02rem;
  }

  .crazytime-review-intro,
  .crazytime-review-text,
  .crazytime-review-faq-answer {
    font-size: 0.88rem;
    line-height: 1.75;
  }

  .crazytime-review-wheel-head > div,
  .crazytime-review-wheel-row > div,
  .crazytime-review-specs-head > div,
  .crazytime-review-specs-row > div {
    padding: 12px;
    font-size: 0.82rem;
  }
}
.crazytime-stream-section {
  margin-top: 28px;
}

.crazytime-stream-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-soft-2));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}

.crazytime-stream-header {
  margin-bottom: 18px;
}

.crazytime-stream-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.crazytime-stream-subtitle {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.crazytime-stream-player-wrap {
  position: relative;
}

.crazytime-stream-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.14);
  color: #fca5a5;
  font-size: 0.82rem;
  font-weight: 800;
}

.crazytime-stream-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.05);
}

.crazytime-stream-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

.crazytime-stream-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,20,0.25), rgba(10,10,20,0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.crazytime-stream-loading {
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(15, 15, 26, 0.86);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  font-weight: 700;
}

.crazytime-stream-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.crazytime-stream-btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.crazytime-stream-btn:hover {
  background: rgba(124, 58, 237, 0.16);
  border-color: var(--purple-dark);
}

.crazytime-stream-error {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.22);
  color: #fecaca;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .crazytime-stream-card {
    padding: 16px;
  }

  .crazytime-stream-controls {
    gap: 8px;
  }

  .crazytime-stream-btn {
    flex: 1 1 calc(50% - 8px);
  }
}

@media (max-width: 560px) {
  .crazytime-stream-btn {
    flex: 1 1 100%;
  }

  .crazytime-stream-title {
    font-size: 1.25rem;
  }

  .crazytime-stream-subtitle {
    font-size: 0.88rem;
  }
}
.crazytime-stream-frame-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.crazytime-stream-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}
.crazytime-stream-intro-player {
  margin-top: 8px;
}

.crazytime-stream-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #05050b;
  border: 1px solid var(--border);
}

.crazytime-stream-overlay {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #09090f;
}

.crazytime-stream-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.45)),
    radial-gradient(circle at center, rgba(124, 58, 237, 0.10), transparent 50%);
  z-index: 1;
}

.crazytime-stream-overlay-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.crazytime-live-stream-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #facc15);
  color: #16162b;
  font-size: 0.98rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 36px rgba(245, 158, 11, 0.28);
  border: 1px solid rgba(255,255,255,0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.crazytime-live-stream-button:hover {
  transform: translate(-50%, -52%);
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.34);
  filter: brightness(1.04);
}

.crazytime-stream-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.16);
  color: #fca5a5;
  font-size: 0.78rem;
  font-weight: 800;
}

@media (max-width: 768px) {
  .crazytime-live-stream-button {
    min-height: 50px;
    padding: 0 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 560px) {
  .crazytime-live-stream-button {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.84rem;
    gap: 8px;
  }

  .crazytime-stream-badge {
    top: 10px;
    left: 10px;
    padding: 7px 12px;
    font-size: 0.72rem;
  }
}
.monopoly-extra-section {
  margin-top: 28px;
}

.monopoly-dice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.monopoly-stats-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-soft-2));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  margin-top: 24px;
}

.monopoly-dice-card {
  margin-top: 0;
}

.monopoly-stats-header {
  margin-bottom: 18px;
}

.monopoly-stats-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.monopoly-stats-meta {
  color: var(--text-soft);
  font-size: 0.84rem;
}

.monopoly-dice-list,
.monopoly-progress-list {
  display: grid;
  gap: 16px;
}

.monopoly-dice-item,
.monopoly-progress-item {
  display: grid;
  gap: 8px;
}

.monopoly-dice-top {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.monopoly-dice-pair {
  display: inline-flex;
  gap: 6px;
  flex-shrink: 0;
}

.monopoly-dice-text {
  color: var(--text-main);
  font-size: 0.92rem;
}

.monopoly-dice-text strong,
.monopoly-progress-label strong {
  color: var(--white);
  margin-left: 8px;
}

.monopoly-progress-label {
  color: var(--text-main);
  font-size: 0.92rem;
}

.monopoly-progress {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.monopoly-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #6d5dfc, #7c3aed);
}

.monopoly-avg-box-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text-main);
  font-size: 0.95rem;
  margin-top: 4px;
}

.monopoly-avg-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 10px;
  background: linear-gradient(135deg, #312e81, #4f46e5);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
}

.monopoly-multiplier-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #0ea75a;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.monopoly-watch-link {
  display: inline-block;
  margin-top: 4px;
  color: #8b5cf6;
  font-size: 0.8rem;
  font-weight: 700;
}

.monopoly-watch-link:hover {
  color: #a78bfa;
}

.monopoly-watch-clip-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid #6d5dfc;
  color: #fff;
  font-weight: 700;
  background: transparent;
}

.monopoly-watch-clip-btn:hover {
  background: rgba(109, 93, 252, 0.12);
}

.monopoly-watch-clip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.78rem;
}

.monopoly-gallery-btn-wrap {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.monopoly-gallery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  font-weight: 800;
}

.monopoly-gallery-btn:hover {
  filter: brightness(1.06);
  color: #fff;
}

.monopoly-bonus-round-image {
  display: block;
  width: 64px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.monopoly-stats-table .spin-table tbody td,
.monopoly-stats-table td {
  vertical-align: middle;
}

.monopoly-die {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #fff;
  border: 2px solid #111827;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
}

.monopoly-die-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: transparent;
  position: absolute;
}

.monopoly-die-dot.active {
  background: #111827;
}

.monopoly-die-dot.pos-1 { top: 3px; left: 3px; }
.monopoly-die-dot.pos-2 { top: 3px; left: 50%; transform: translateX(-50%); }
.monopoly-die-dot.pos-3 { top: 3px; right: 3px; }
.monopoly-die-dot.pos-4 { top: 50%; left: 3px; transform: translateY(-50%); }
.monopoly-die-dot.pos-5 { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.monopoly-die-dot.pos-6 { top: 50%; right: 3px; transform: translateY(-50%); }
.monopoly-die-dot.pos-7 { bottom: 3px; left: 3px; }
.monopoly-die-dot.pos-8 { bottom: 3px; left: 50%; transform: translateX(-50%); }
.monopoly-die-dot.pos-9 { bottom: 3px; right: 3px; }

@media (max-width: 1100px) {
  .monopoly-dice-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .monopoly-stats-card {
    padding: 16px;
  }

  .monopoly-watch-clip-btn {
    min-height: 40px;
    padding: 0 14px;
  }
}

@media (max-width: 560px) {
  .monopoly-dice-top {
    align-items: flex-start;
  }

  .monopoly-dice-text,
  .monopoly-progress-label {
    font-size: 0.86rem;
  }

  .monopoly-bonus-round-image {
    width: 56px;
  }
}
.monopoly-review-hero-media {
  max-width: 100%;
}
.hero-text {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  line-height: 1.7;
  text-align: center;
}
.hero-text-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero-title {
  max-width: 100%;
  padding: 0 16px;
}
.dream-catcher__extra-section {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.dream-catcher__card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-soft-2));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.dream-catcher__section-head {
  margin-bottom: 18px;
}

.dream-catcher__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.dream-catcher__meta {
  color: var(--text-soft);
  font-size: 0.84rem;
  margin-bottom: 8px;
}

.dream-catcher__text {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.75;
}

.dream-catcher__table-wrap {
  border-radius: 14px;
}

.dream-catcher__badge {
  width: 58px;
  height: 40px;
}

.dream-catcher__wheel-list,
.dream-catcher__match-list {
  display: grid;
  gap: 14px;
}

.dream-catcher__wheel-item,
.dream-catcher__match-item {
  display: grid;
  gap: 8px;
}

.dream-catcher__wheel-top,
.dream-catcher__match-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dream-catcher__wheel-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dream-catcher__wheel-thumb {
  width: 56px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.dream-catcher__bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.dream-catcher__bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--indigo));
}

.dream-catcher__bar--match .dream-catcher__bar-fill {
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

.dream-catcher__bar--nomatch .dream-catcher__bar-fill {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}.dream-catcher__extra-section {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.dream-catcher__card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-soft-2));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.dream-catcher__section-head {
  margin-bottom: 18px;
}

.dream-catcher__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.dream-catcher__meta {
  color: var(--text-soft);
  font-size: 0.84rem;
  margin-bottom: 8px;
}

.dream-catcher__text {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.75;
}

.dream-catcher__table-wrap {
  border-radius: 14px;
}

.dream-catcher__badge {
  width: 58px;
  height: 40px;
}

.dream-catcher__wheel-list,
.dream-catcher__match-list {
  display: grid;
  gap: 14px;
}

.dream-catcher__wheel-item,
.dream-catcher__match-item {
  display: grid;
  gap: 8px;
}

.dream-catcher__wheel-top,
.dream-catcher__match-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dream-catcher__wheel-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dream-catcher__wheel-thumb {
  width: 56px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.dream-catcher__bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.dream-catcher__bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--indigo));
}

.dream-catcher__bar--match .dream-catcher__bar-fill {
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

.dream-catcher__bar--nomatch .dream-catcher__bar-fill {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}
.special-result-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple-strong), var(--indigo));
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
}
/* =========================
   DREAM CATCHER REVIEW
   ========================= */

   .dreamcatcher-review-section {
    margin-top: 28px;
  }
  
  .dreamcatcher-review-card {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-soft-2));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
  }
  
  .dreamcatcher-review-block + .dreamcatcher-review-block {
    margin-top: 28px;
  }
  
  .dreamcatcher-review-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    line-height: 1.1;
  }
  
  .dreamcatcher-review-intro,
  .dreamcatcher-review-text,
  .dreamcatcher-review-faq-answer {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.85;
  }
  
  .dreamcatcher-review-subtitle {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }
  
  .dreamcatcher-review-list {
    display: grid;
    gap: 10px;
    margin-top: 12px;
    padding-left: 18px;
  }
  
  .dreamcatcher-review-list li::marker {
    color: var(--orange);
  }
  
  /* HERO layout */
  .dreamcatcher-review-hero {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 18px;
    align-items: start;
  }
  
  .dreamcatcher-review-hero-aside {
    display: grid;
    gap: 14px;
  }
  
  .dreamcatcher-review-hero-media {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
  
    /* убираем градиенты/фон */
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  
  .dreamcatcher-review-hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .dreamcatcher-review-hero-mini {
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
    padding: 14px 16px;
    display: grid;
    gap: 10px;
  }
  
  .dreamcatcher-review-mini-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--text-soft);
    font-size: 0.88rem;
  }
  
  .dreamcatcher-review-mini-row strong {
    color: var(--white);
    font-weight: 800;
  }
  
  /* Specs table (dreamcatcher version) */
  .dreamcatcher-review-specs {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background:
      radial-gradient(circle at top right, rgba(245, 158, 11, 0.10), transparent 35%),
      linear-gradient(145deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  }
  
  .dreamcatcher-review-specs-head,
  .dreamcatcher-review-specs-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
  }
  
  .dreamcatcher-review-specs-head {
    background: rgba(255,255,255,0.03);
    color: #cbd5e1;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .dreamcatcher-review-specs-head > div,
  .dreamcatcher-review-specs-row > div {
    padding: 14px 16px;
  }
  
  .dreamcatcher-review-specs-row {
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  
  .dreamcatcher-review-specs-row:nth-child(even) {
    background: rgba(255,255,255,0.015);
  }
  
  .dreamcatcher-review-spec-label {
    color: var(--text-soft);
    font-weight: 600;
  }
  
  .dreamcatcher-review-spec-value {
    color: var(--white);
    font-weight: 800;
  }
  
  /* Strategy cards */
  .dreamcatcher-review-bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  
  .dreamcatcher-review-bonus-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 18px;
  }
  
  .dreamcatcher-review-bonus-title {
    color: var(--white);
    font-size: 1.02rem;
    font-weight: 900;
    margin-bottom: 10px;
  }
  
  /* FAQ */
  .dreamcatcher-review-faq-list {
    display: grid;
    gap: 14px;
  }
  
  .dreamcatcher-review-faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px;
    padding: 16px;
  }
  
  .dreamcatcher-review-faq-question {
    color: var(--white);
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1.5;
  }
  
  /* CTA accent (optional) */
  .dreamcatcher-review-play-btn {
    background: linear-gradient(135deg, #f59e0b, #facc15);
    color: #1a1a2e;
    border: 1px solid rgba(250, 204, 21, 0.28);
  }
  
  @media (max-width: 768px) {
    .dreamcatcher-review-card {
      padding: 18px;
    }
  
    .dreamcatcher-review-hero {
      grid-template-columns: 1fr;
    }
  
    .dreamcatcher-review-bonus-grid {
      grid-template-columns: 1fr;
    }
  
    .dreamcatcher-review-specs-head,
    .dreamcatcher-review-specs-row {
      grid-template-columns: 1fr;
    }
  }
  /* =========================
   GAME HEADER CTA (under Live Now)
   ========================= */

   .game-header-actions {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px; /* было 10px — чуть больше отступ от Live Now */
    flex-shrink: 0;
  }

.live-now-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: -0.01em;

  color: var(--white);
  background: linear-gradient(135deg, var(--purple-strong), var(--indigo));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.26);

  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.live-now-cta-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 16px 34px rgba(124, 58, 237, 0.34);
}

@media (max-width: 768px) {
  .game-header-actions {
    margin-left: 0;
    align-items: flex-start;
    width: 100%;
  }

  .live-now-cta-btn {
    width: 100%;          /* во всю ширину контейнера */
    justify-content: center;
  }
}
.dreamcatcher-bullet-icon {
  display: inline-block;
  width: 1.6em;
  margin-right: 8px;
}