/* 255bet - New layout: editorial, Google-friendly, distinct from original */
:root {
  --bg-page: #0f1419;
  --bg-card: #1a2332;
  --bg-elevated: #243044;
  --text-primary: #f0f4f8;
  --text-secondary: #94a3b8;
  --accent: #22d3ee;
  --accent-dim: #0891b2;
  --success: #34d399;
  --border: rgba(34, 211, 238, 0.2);
  --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --space: 1.25rem;
  --radius: 12px;
  --container: min(1200px, 100% - 2rem);
  --pad-mobile: 1rem;
}
@media (max-width: 480px) {
  :root { --space: var(--pad-mobile); }
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0 auto;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  overflow-x: hidden;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-page);
  padding-top: 72px;
}

/* ----- 漂浮顶：Logo + 导航 + Entrar/Cadastrar（不传递权重） ----- */
.caption_4c76 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.progress-3b25 {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.5rem var(--space);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  min-width: 0;
}
.progress-bae7 {
  display: block;
  flex-shrink: 0;
}
.progress-bae7 img {
  display: block;
  height: 40px;
  width: auto;
}
/* 汉堡按钮：桌面隐藏 */
.fresh_fa43 {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0 0 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.2s, border-color 0.2s;
}
.fresh_fa43:hover {
  background: var(--bg-elevated);
  border-color: var(--accent);
}
.fresh_fa43:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.smooth_0bef {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
/* 展开时变为 X */
.fresh_fa43[aria-expanded="true"] .smooth_0bef:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.fresh_fa43[aria-expanded="true"] .smooth_0bef:nth-child(2) {
  opacity: 0;
}
.fresh_fa43[aria-expanded="true"] .smooth_0bef:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button_hovered_0b8f {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.solid-611e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: flex-start;
}
.solid-611e a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  white-space: nowrap;
}
.solid-611e a:hover { color: var(--accent); }
@media (max-width: 767px) {
  .solid-611e a { white-space: normal; }
}
.gallery-wide-d4f3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.pattern_warm_5818 {
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}
.column_static_2c9b {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.column_static_2c9b:hover { background: rgba(34, 211, 238, 0.15); }
.main_brown_3877 {
  background: var(--accent);
  color: var(--bg-page);
  border: 1px solid var(--accent);
}
.main_brown_3877:hover { background: var(--accent-dim); border-color: var(--accent-dim); }

@media (max-width: 767px) {
  body { padding-top: 64px; }
  .progress-3b25 {
    padding-left: var(--pad-mobile);
    padding-right: var(--pad-mobile);
    flex-wrap: wrap;
  }
  .fresh_fa43 {
    display: flex;
    order: 2;
  }
  .button_hovered_0b8f {
    order: 10;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }
  .caption_4c76.caption-48fb .button_hovered_0b8f {
    max-height: 80vh;
    overflow-y: auto;
    opacity: 1;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
  }
  .gallery-wide-d4f3 { order: 3; }
  .solid-611e {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  .solid-611e a {
    display: block;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
  }
  .solid-611e a:hover {
    background: rgba(34, 211, 238, 0.12);
  }
}

/* ----- Hero: full-width, centered, one column ----- */
.component-0f12 {
  padding: 3rem 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-page) 100%);
}
.focus_stale_2638 {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space);
  min-width: 0;
}
.component-0f12 h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 1.5rem;
  line-height: 1.2;
  color: var(--text-primary);
}
.static_517c {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
  line-height: 1.7;
}
.static_517c strong { color: var(--accent); }
.background-3cbf {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.9rem 1.75rem;
  background: var(--accent);
  color: var(--bg-page);
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--radius);
}
.filter_east_b405 { margin-top: 2rem; }
.filter_east_b405 img {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* ----- Sections: narrow content width for readability ----- */
.current_1980 {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}
.outline-active-9781 {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space);
  min-width: 0;
}
.copper_9fa5 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}
.east-6f04 {
  color: var(--text-secondary);
  margin: 0 0 2rem;
  font-size: 0.95rem;
}

/* ----- Features: vertical list, icon + text ----- */
.cold-15d4 { list-style: none; padding: 0; margin: 0; }
.cold-15d4 li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.cold-15d4 li:last-child { border-bottom: 0; }
@media (min-width: 768px) {
  .cold-15d4 li { grid-template-columns: 280px 1fr; align-items: start; }
}
.media_fluid_a972 { border-radius: var(--radius); overflow: hidden; }
.media_fluid_a972 img { width: 100%; height: auto; display: block; }
.cold-15d4 h3 { font-size: 1.2rem; margin: 0 0 0.5rem; color: var(--accent); }
.cold-15d4 p { margin: 0 0 0.75rem; color: var(--text-secondary); font-size: 0.95rem; }
.cold-15d4 ul { margin: 0; padding-left: 1.25rem; color: var(--text-secondary); font-size: 0.9rem; }

/* ----- RTP Table ----- */
.menu_tiny_fbf0 {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}
.hard_9038 {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.hard_9038 th, .hard_9038 td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
.hard_9038 th { background: var(--bg-elevated); color: var(--accent); font-weight: 600; }
.hard_9038 tbody tr:hover { background: rgba(34, 211, 238, 0.05); }
.hard_9038 .info-complex-f882 { background: rgba(239, 68, 68, 0.2); padding: 0.2rem 0.5rem; border-radius: 6px; }
.hard_9038 .modal-df9d { background: rgba(245, 158, 11, 0.2); padding: 0.2rem 0.5rem; border-radius: 6px; }
.hard_9038 .cool_3b7c { background: rgba(34, 197, 94, 0.2); padding: 0.2rem 0.5rem; border-radius: 6px; }
.hovered_ac08 { font-size: 0.9rem; color: var(--text-secondary); margin-top: 1rem; padding: 1rem; background: var(--bg-card); border-radius: var(--radius); }

/* ----- Testimonials: masonry-style grid ----- */
.element_lite_893b {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
  max-width: 100%;
}
.video_9720 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.panel_7fc0 { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.article_97d3 { font-weight: 600; color: var(--accent); font-size: 0.95rem; }
.box_fluid_81a4 { font-size: 0.8rem; color: var(--text-secondary); }
.header-clean-274e { background: var(--success); color: var(--bg-page); padding: 0.2rem 0.6rem; border-radius: 6px; font-size: 0.8rem; font-weight: 600; }
.component-0d04 { font-size: 1.5rem; font-weight: 800; color: var(--text-primary); margin: 0.5rem 0; }
.nav_medium_ce7f { font-size: 0.9rem; color: var(--text-secondary); margin: 0.5rem 0; }
.surface-b335 { font-size: 0.85rem; color: var(--text-secondary); font-style: italic; margin: 0.5rem 0 0; }

/* ----- FAQ: accordion ----- */
.focused_90b9 { margin: 0; padding: 0; list-style: none; }
.primary-steel-89ad {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg-card);
}
.primary-steel-89ad summary {
  padding: 1.25rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.primary-steel-89ad summary::-webkit-details-marker { display: none; }
.primary-steel-89ad summary::after { content: '+'; font-size: 1.25rem; color: var(--accent); }
.primary-steel-89ad[open] summary::after { content: '−'; }
.primary-steel-89ad .old-e0c5 { padding: 0 1.25rem 1.25rem; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }
.primary-steel-89ad .old-e0c5 p { margin: 0.75rem 0; }
.primary-steel-89ad .old-e0c5 ul, .primary-steel-89ad .old-e0c5 ol { margin: 0.75rem 0; padding-left: 1.5rem; }

/* ----- Stats grid ----- */
.hero_hard_a046 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 100%;
}
@media (min-width: 640px) { .hero_hard_a046 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) { .hero_hard_a046 { grid-template-columns: repeat(8, 1fr); } }
.description_0f57 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.aside_right_7a64 { font-size: 1.75rem; font-weight: 800; color: var(--accent); margin-bottom: 0.25rem; }
.short_e4bb { font-size: 0.8rem; color: var(--text-secondary); }

/* ----- Responsible gaming block ----- */
.tertiary-gold-ae51 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2rem;
}
.tertiary-gold-ae51 h3 { font-size: 1.15rem; margin: 0 0 1rem; color: var(--accent); }
.tertiary-gold-ae51 ul { margin: 0 0 1rem; padding-left: 1.25rem; color: var(--text-secondary); }
.tertiary-gold-ae51 .short-73c6 {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-primary);
}

/* ----- Footer ----- */
.accent-f261 {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  background: var(--bg-card);
}
.huge-ca4a {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space);
  min-width: 0;
}
.accent-f261 a {
  color: var(--text-secondary);
  text-decoration: none;
  margin: 0 1rem;
}
.accent-f261 a:hover { color: var(--accent); }
.inner-e6cb {
  margin-top: 2rem;
  padding: 0 var(--space);
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: left;
  max-width: 720px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  min-width: 0;
  box-sizing: border-box;
}
.inner-e6cb h2 { font-size: 1.25rem; margin: 1rem 0 0.5rem; color: var(--text-primary); }
.inner-e6cb p { font-size: 0.9rem; color: var(--text-secondary); margin: 0 0 1rem; }

/* ----- CTA bar ----- */
.left-bda2 {
  padding: 1.5rem 0;
  text-align: center;
  background: var(--bg-elevated);
}
.left-bda2 a {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--accent);
  color: var(--bg-page);
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--radius);
}

/* ----- Utility ----- */
.warm_bca3 { text-align: center; }
.shadow-down-a137 {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 1rem 0;
  display: block;
  object-fit: contain;
}
/* 全站图片不超出容器 */
main img,
.component-0f12 img,
.outline-active-9781 img {
  max-width: 100%;
  height: auto;
}
img[loading="lazy"] { content-visibility: auto; }

/* ----- Mobile: prevent overflow, ensure centering ----- */
main { max-width: 100%; min-width: 0; }
.outline-active-9781 p,
.primary-steel-89ad .old-e0c5,
.hovered_ac08 { word-wrap: break-word; overflow-wrap: break-word; }

/* 移动端：严格限制宽度并居中 */
@media (max-width: 767px) {
  .caption_4c76,
  .component-0f12,
  .current_1980,
  .left-bda2,
  .accent-f261 {
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .progress-3b25,
  .focus_stale_2638,
  .outline-active-9781,
  .huge-ca4a {
    max-width: 100%;
    width: 100%;
    padding-left: var(--pad-mobile);
    padding-right: var(--pad-mobile);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }
  .solid-611e {
    max-width: 100%;
    box-sizing: border-box;
  }
  .component-0f12 { padding-left: 0; padding-right: 0; }
  .media_fluid_a972 img,
  .filter_east_b405 img { max-width: 100%; }
  .component-0d04 { font-size: 1.25rem; }
  .aside_right_7a64 { font-size: 1.35rem; }
  .menu_tiny_fbf0 { max-width: 100%; width: 100%; box-sizing: border-box; }
  .element_lite_893b,
  .hero_hard_a046,
  .cold-15d4 { max-width: 100%; box-sizing: border-box; }
  .focused_90b9 { max-width: 100%; }
  .tertiary-gold-ae51 { max-width: 100%; box-sizing: border-box; }
  .inner-e6cb { max-width: 100%; padding-left: var(--pad-mobile); padding-right: var(--pad-mobile); box-sizing: border-box; }
  .left-bda2 a { max-width: calc(100% - 2 * var(--pad-mobile)); }
}

/* css-noise: e8c3 */
.widget-item-k9 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.2;
}
