/* 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（不传递权重） ----- */
.notification-9f22 {
  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);
}
.component_70e2 {
  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;
}
.overlay_bright_424e {
  display: block;
  flex-shrink: 0;
}
.overlay_bright_424e img {
  display: block;
  height: 40px;
  width: auto;
}
/* 汉堡按钮：桌面隐藏 */
.smooth_8a64 {
  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;
}
.smooth_8a64:hover {
  background: var(--bg-elevated);
  border-color: var(--accent);
}
.smooth_8a64:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.breadcrumb-light-dc95 {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
/* 展开时变为 X */
.smooth_8a64[aria-expanded="true"] .breadcrumb-light-dc95:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.smooth_8a64[aria-expanded="true"] .breadcrumb-light-dc95:nth-child(2) {
  opacity: 0;
}
.smooth_8a64[aria-expanded="true"] .breadcrumb-light-dc95:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.fast-6b87 {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.fixed-0805 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: flex-start;
}
.fixed-0805 a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  white-space: nowrap;
}
.fixed-0805 a:hover { color: var(--accent); }
@media (max-width: 767px) {
  .fixed-0805 a { white-space: normal; }
}
.feature_ff76 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.highlight-over-6d01 {
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}
.nav_8603 {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.nav_8603:hover { background: rgba(34, 211, 238, 0.15); }
.copper-0b58 {
  background: var(--accent);
  color: var(--bg-page);
  border: 1px solid var(--accent);
}
.copper-0b58:hover { background: var(--accent-dim); border-color: var(--accent-dim); }

@media (max-width: 767px) {
  body { padding-top: 64px; }
  .component_70e2 {
    padding-left: var(--pad-mobile);
    padding-right: var(--pad-mobile);
    flex-wrap: wrap;
  }
  .smooth_8a64 {
    display: flex;
    order: 2;
  }
  .fast-6b87 {
    order: 10;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }
  .notification-9f22.carousel_4ca7 .fast-6b87 {
    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;
  }
  .feature_ff76 { order: 3; }
  .fixed-0805 {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  .fixed-0805 a {
    display: block;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
  }
  .fixed-0805 a:hover {
    background: rgba(34, 211, 238, 0.12);
  }
}

/* ----- Hero: full-width, centered, one column ----- */
.panel-steel-5a94 {
  padding: 3rem 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-page) 100%);
}
.logo-ff6d {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space);
  min-width: 0;
}
.panel-steel-5a94 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);
}
.tertiary-glass-f321 {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
  line-height: 1.7;
}
.tertiary-glass-f321 strong { color: var(--accent); }
.motion-2859 {
  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);
}
.layout_bottom_7f21 { margin-top: 2rem; }
.layout_bottom_7f21 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 ----- */
.message-hot-77a5 {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}
.disabled-prev-f72e {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space);
  min-width: 0;
}
.layout-ca6e {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}
.column_center_82b3 {
  color: var(--text-secondary);
  margin: 0 0 2rem;
  font-size: 0.95rem;
}

/* ----- Features: vertical list, icon + text ----- */
.tooltip-2bd5 { list-style: none; padding: 0; margin: 0; }
.tooltip-2bd5 li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.tooltip-2bd5 li:last-child { border-bottom: 0; }
@media (min-width: 768px) {
  .tooltip-2bd5 li { grid-template-columns: 280px 1fr; align-items: start; }
}
.slider_bb64 { border-radius: var(--radius); overflow: hidden; }
.slider_bb64 img { width: 100%; height: auto; display: block; }
.tooltip-2bd5 h3 { font-size: 1.2rem; margin: 0 0 0.5rem; color: var(--accent); }
.tooltip-2bd5 p { margin: 0 0 0.75rem; color: var(--text-secondary); font-size: 0.95rem; }
.tooltip-2bd5 ul { margin: 0; padding-left: 1.25rem; color: var(--text-secondary); font-size: 0.9rem; }

/* ----- RTP Table ----- */
.rough_0596 {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}
.purple_8567 {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.purple_8567 th, .purple_8567 td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
.purple_8567 th { background: var(--bg-elevated); color: var(--accent); font-weight: 600; }
.purple_8567 tbody tr:hover { background: rgba(34, 211, 238, 0.05); }
.purple_8567 .pressed_311e { background: rgba(239, 68, 68, 0.2); padding: 0.2rem 0.5rem; border-radius: 6px; }
.purple_8567 .table_769e { background: rgba(245, 158, 11, 0.2); padding: 0.2rem 0.5rem; border-radius: 6px; }
.purple_8567 .cold-c209 { background: rgba(34, 197, 94, 0.2); padding: 0.2rem 0.5rem; border-radius: 6px; }
.highlight-orange-d232 { 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 ----- */
.paper-371b {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
  max-width: 100%;
}
.avatar_copper_e500 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.container_82b8 { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.nav_9500 { font-weight: 600; color: var(--accent); font-size: 0.95rem; }
.grid_blue_1c88 { font-size: 0.8rem; color: var(--text-secondary); }
.preview-next-ce85 { background: var(--success); color: var(--bg-page); padding: 0.2rem 0.6rem; border-radius: 6px; font-size: 0.8rem; font-weight: 600; }
.banner-d277 { font-size: 1.5rem; font-weight: 800; color: var(--text-primary); margin: 0.5rem 0; }
.container-plasma-cd78 { font-size: 0.9rem; color: var(--text-secondary); margin: 0.5rem 0; }
.tag_motion_ab66 { font-size: 0.85rem; color: var(--text-secondary); font-style: italic; margin: 0.5rem 0 0; }

/* ----- FAQ: accordion ----- */
.background-west-f035 { margin: 0; padding: 0; list-style: none; }
.section_orange_5aec {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg-card);
}
.section_orange_5aec 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;
}
.section_orange_5aec summary::-webkit-details-marker { display: none; }
.section_orange_5aec summary::after { content: '+'; font-size: 1.25rem; color: var(--accent); }
.section_orange_5aec[open] summary::after { content: '−'; }
.section_orange_5aec .sort_last_5c40 { padding: 0 1.25rem 1.25rem; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }
.section_orange_5aec .sort_last_5c40 p { margin: 0.75rem 0; }
.section_orange_5aec .sort_last_5c40 ul, .section_orange_5aec .sort_last_5c40 ol { margin: 0.75rem 0; padding-left: 1.5rem; }

/* ----- Stats grid ----- */
.component-f2ad {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 100%;
}
@media (min-width: 640px) { .component-f2ad { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) { .component-f2ad { grid-template-columns: repeat(8, 1fr); } }
.liquid_b8e9 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.detail_0d81 { font-size: 1.75rem; font-weight: 800; color: var(--accent); margin-bottom: 0.25rem; }
.border-b4aa { font-size: 0.8rem; color: var(--text-secondary); }

/* ----- Responsible gaming block ----- */
.banner_hot_ab73 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2rem;
}
.banner_hot_ab73 h3 { font-size: 1.15rem; margin: 0 0 1rem; color: var(--accent); }
.banner_hot_ab73 ul { margin: 0 0 1rem; padding-left: 1.25rem; color: var(--text-secondary); }
.banner_hot_ab73 .glass-b383 {
  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 ----- */
.title-c603 {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  background: var(--bg-card);
}
.action_8e7c {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space);
  min-width: 0;
}
.title-c603 a {
  color: var(--text-secondary);
  text-decoration: none;
  margin: 0 1rem;
}
.title-c603 a:hover { color: var(--accent); }
.article-large-9042 {
  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;
}
.article-large-9042 h2 { font-size: 1.25rem; margin: 1rem 0 0.5rem; color: var(--text-primary); }
.article-large-9042 p { font-size: 0.9rem; color: var(--text-secondary); margin: 0 0 1rem; }

/* ----- CTA bar ----- */
.layout_brown_1275 {
  padding: 1.5rem 0;
  text-align: center;
  background: var(--bg-elevated);
}
.layout_brown_1275 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 ----- */
.tooltip_orange_21d1 { text-align: center; }
.picture-237f {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 1rem 0;
  display: block;
  object-fit: contain;
}
/* 全站图片不超出容器 */
main img,
.panel-steel-5a94 img,
.disabled-prev-f72e img {
  max-width: 100%;
  height: auto;
}
img[loading="lazy"] { content-visibility: auto; }

/* ----- Mobile: prevent overflow, ensure centering ----- */
main { max-width: 100%; min-width: 0; }
.disabled-prev-f72e p,
.section_orange_5aec .sort_last_5c40,
.highlight-orange-d232 { word-wrap: break-word; overflow-wrap: break-word; }

/* 移动端：严格限制宽度并居中 */
@media (max-width: 767px) {
  .notification-9f22,
  .panel-steel-5a94,
  .message-hot-77a5,
  .layout_brown_1275,
  .title-c603 {
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .component_70e2,
  .logo-ff6d,
  .disabled-prev-f72e,
  .action_8e7c {
    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;
  }
  .fixed-0805 {
    max-width: 100%;
    box-sizing: border-box;
  }
  .panel-steel-5a94 { padding-left: 0; padding-right: 0; }
  .slider_bb64 img,
  .layout_bottom_7f21 img { max-width: 100%; }
  .banner-d277 { font-size: 1.25rem; }
  .detail_0d81 { font-size: 1.35rem; }
  .rough_0596 { max-width: 100%; width: 100%; box-sizing: border-box; }
  .paper-371b,
  .component-f2ad,
  .tooltip-2bd5 { max-width: 100%; box-sizing: border-box; }
  .background-west-f035 { max-width: 100%; }
  .banner_hot_ab73 { max-width: 100%; box-sizing: border-box; }
  .article-large-9042 { max-width: 100%; padding-left: var(--pad-mobile); padding-right: var(--pad-mobile); box-sizing: border-box; }
  .layout_brown_1275 a { max-width: calc(100% - 2 * var(--pad-mobile)); }
}

/* css-noise: 4f5a */
.ghost-box-o9 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.2;
}
