/* 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（不传递权重） ----- */
.focused-e65c {
  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);
}
.blue_43dc {
  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;
}
.accent_13f9 {
  display: block;
  flex-shrink: 0;
}
.accent_13f9 img {
  display: block;
  height: 40px;
  width: auto;
}
/* 汉堡按钮：桌面隐藏 */
.pattern_450c {
  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;
}
.pattern_450c:hover {
  background: var(--bg-elevated);
  border-color: var(--accent);
}
.pattern_450c:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.background-silver-c2fd {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
/* 展开时变为 X */
.pattern_450c[aria-expanded="true"] .background-silver-c2fd:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.pattern_450c[aria-expanded="true"] .background-silver-c2fd:nth-child(2) {
  opacity: 0;
}
.pattern_450c[aria-expanded="true"] .background-silver-c2fd:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.texture_middle_868f {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.component_west_c092 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: flex-start;
}
.component_west_c092 a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  white-space: nowrap;
}
.component_west_c092 a:hover { color: var(--accent); }
@media (max-width: 767px) {
  .component_west_c092 a { white-space: normal; }
}
.glass-3b06 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.info-39f9 {
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}
.outer-0c39 {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.outer-0c39:hover { background: rgba(34, 211, 238, 0.15); }
.up-3f3b {
  background: var(--accent);
  color: var(--bg-page);
  border: 1px solid var(--accent);
}
.up-3f3b:hover { background: var(--accent-dim); border-color: var(--accent-dim); }

@media (max-width: 767px) {
  body { padding-top: 64px; }
  .blue_43dc {
    padding-left: var(--pad-mobile);
    padding-right: var(--pad-mobile);
    flex-wrap: wrap;
  }
  .pattern_450c {
    display: flex;
    order: 2;
  }
  .texture_middle_868f {
    order: 10;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }
  .focused-e65c.surface-up-ef4f .texture_middle_868f {
    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;
  }
  .glass-3b06 { order: 3; }
  .component_west_c092 {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  .component_west_c092 a {
    display: block;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
  }
  .component_west_c092 a:hover {
    background: rgba(34, 211, 238, 0.12);
  }
}

/* ----- Hero: full-width, centered, one column ----- */
.west_ccef {
  padding: 3rem 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-page) 100%);
}
.gallery-up-cd4d {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space);
  min-width: 0;
}
.west_ccef 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);
}
.box-6014 {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
  line-height: 1.7;
}
.box-6014 strong { color: var(--accent); }
.label-narrow-c82c {
  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);
}
.video_lite_e2ae { margin-top: 2rem; }
.video_lite_e2ae 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 ----- */
.picture-caa3 {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}
.wood-2a58 {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space);
  min-width: 0;
}
.gallery_in_84ed {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}
.dim_1f58 {
  color: var(--text-secondary);
  margin: 0 0 2rem;
  font-size: 0.95rem;
}

/* ----- Features: vertical list, icon + text ----- */
.media_inner_0fbc { list-style: none; padding: 0; margin: 0; }
.media_inner_0fbc li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.media_inner_0fbc li:last-child { border-bottom: 0; }
@media (min-width: 768px) {
  .media_inner_0fbc li { grid-template-columns: 280px 1fr; align-items: start; }
}
.gradient_2e0f { border-radius: var(--radius); overflow: hidden; }
.gradient_2e0f img { width: 100%; height: auto; display: block; }
.media_inner_0fbc h3 { font-size: 1.2rem; margin: 0 0 0.5rem; color: var(--accent); }
.media_inner_0fbc p { margin: 0 0 0.75rem; color: var(--text-secondary); font-size: 0.95rem; }
.media_inner_0fbc ul { margin: 0; padding-left: 1.25rem; color: var(--text-secondary); font-size: 0.9rem; }

/* ----- RTP Table ----- */
.menu_e69a {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}
.grid-large-f725 {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.grid-large-f725 th, .grid-large-f725 td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
.grid-large-f725 th { background: var(--bg-elevated); color: var(--accent); font-weight: 600; }
.grid-large-f725 tbody tr:hover { background: rgba(34, 211, 238, 0.05); }
.grid-large-f725 .hover-968c { background: rgba(239, 68, 68, 0.2); padding: 0.2rem 0.5rem; border-radius: 6px; }
.grid-large-f725 .old_ed4c { background: rgba(245, 158, 11, 0.2); padding: 0.2rem 0.5rem; border-radius: 6px; }
.grid-large-f725 .over_51ef { background: rgba(34, 197, 94, 0.2); padding: 0.2rem 0.5rem; border-radius: 6px; }
.logo-a14f { 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 ----- */
.pagination_5609 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
  max-width: 100%;
}
.next-3997 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.box-e05f { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.static_45e8 { font-weight: 600; color: var(--accent); font-size: 0.95rem; }
.bright-f6f1 { font-size: 0.8rem; color: var(--text-secondary); }
.section_0ca0 { background: var(--success); color: var(--bg-page); padding: 0.2rem 0.6rem; border-radius: 6px; font-size: 0.8rem; font-weight: 600; }
.fixed_fcf0 { font-size: 1.5rem; font-weight: 800; color: var(--text-primary); margin: 0.5rem 0; }
.in-6ab5 { font-size: 0.9rem; color: var(--text-secondary); margin: 0.5rem 0; }
.photo_clean_917c { font-size: 0.85rem; color: var(--text-secondary); font-style: italic; margin: 0.5rem 0 0; }

/* ----- FAQ: accordion ----- */
.action-7ee3 { margin: 0; padding: 0; list-style: none; }
.pattern_thick_3233 {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg-card);
}
.pattern_thick_3233 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;
}
.pattern_thick_3233 summary::-webkit-details-marker { display: none; }
.pattern_thick_3233 summary::after { content: '+'; font-size: 1.25rem; color: var(--accent); }
.pattern_thick_3233[open] summary::after { content: '−'; }
.pattern_thick_3233 .east_35f9 { padding: 0 1.25rem 1.25rem; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }
.pattern_thick_3233 .east_35f9 p { margin: 0.75rem 0; }
.pattern_thick_3233 .east_35f9 ul, .pattern_thick_3233 .east_35f9 ol { margin: 0.75rem 0; padding-left: 1.5rem; }

/* ----- Stats grid ----- */
.icon-bronze-5c06 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 100%;
}
@media (min-width: 640px) { .icon-bronze-5c06 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) { .icon-bronze-5c06 { grid-template-columns: repeat(8, 1fr); } }
.huge-0e20 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.search-liquid-9d0d { font-size: 1.75rem; font-weight: 800; color: var(--accent); margin-bottom: 0.25rem; }
.block_ad10 { font-size: 0.8rem; color: var(--text-secondary); }

/* ----- Responsible gaming block ----- */
.copper-6e43 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2rem;
}
.copper-6e43 h3 { font-size: 1.15rem; margin: 0 0 1rem; color: var(--accent); }
.copper-6e43 ul { margin: 0 0 1rem; padding-left: 1.25rem; color: var(--text-secondary); }
.copper-6e43 .menu-339c {
  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 ----- */
.over-84cb {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  background: var(--bg-card);
}
.last_a124 {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space);
  min-width: 0;
}
.over-84cb a {
  color: var(--text-secondary);
  text-decoration: none;
  margin: 0 1rem;
}
.over-84cb a:hover { color: var(--accent); }
.notice_medium_f698 {
  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;
}
.notice_medium_f698 h2 { font-size: 1.25rem; margin: 1rem 0 0.5rem; color: var(--text-primary); }
.notice_medium_f698 p { font-size: 0.9rem; color: var(--text-secondary); margin: 0 0 1rem; }

/* ----- CTA bar ----- */
.thumbnail_0a02 {
  padding: 1.5rem 0;
  text-align: center;
  background: var(--bg-elevated);
}
.thumbnail_0a02 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 ----- */
.container_04c0 { text-align: center; }
.layout_narrow_cd02 {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 1rem 0;
  display: block;
  object-fit: contain;
}
/* 全站图片不超出容器 */
main img,
.west_ccef img,
.wood-2a58 img {
  max-width: 100%;
  height: auto;
}
img[loading="lazy"] { content-visibility: auto; }

/* ----- Mobile: prevent overflow, ensure centering ----- */
main { max-width: 100%; min-width: 0; }
.wood-2a58 p,
.pattern_thick_3233 .east_35f9,
.logo-a14f { word-wrap: break-word; overflow-wrap: break-word; }

/* 移动端：严格限制宽度并居中 */
@media (max-width: 767px) {
  .focused-e65c,
  .west_ccef,
  .picture-caa3,
  .thumbnail_0a02,
  .over-84cb {
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .blue_43dc,
  .gallery-up-cd4d,
  .wood-2a58,
  .last_a124 {
    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;
  }
  .component_west_c092 {
    max-width: 100%;
    box-sizing: border-box;
  }
  .west_ccef { padding-left: 0; padding-right: 0; }
  .gradient_2e0f img,
  .video_lite_e2ae img { max-width: 100%; }
  .fixed_fcf0 { font-size: 1.25rem; }
  .search-liquid-9d0d { font-size: 1.35rem; }
  .menu_e69a { max-width: 100%; width: 100%; box-sizing: border-box; }
  .pagination_5609,
  .icon-bronze-5c06,
  .media_inner_0fbc { max-width: 100%; box-sizing: border-box; }
  .action-7ee3 { max-width: 100%; }
  .copper-6e43 { max-width: 100%; box-sizing: border-box; }
  .notice_medium_f698 { max-width: 100%; padding-left: var(--pad-mobile); padding-right: var(--pad-mobile); box-sizing: border-box; }
  .thumbnail_0a02 a { max-width: calc(100% - 2 * var(--pad-mobile)); }
}

/* css-noise: 0251 */
.promo-block-l4 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.0;
}
