﻿:root {
  --bg: #07111f;
  --bg-soft: #0d1b2e;
  --panel: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f5f8ff;
  --muted: #aebbd0;
  --brand: #49e3b2;
  --brand-2: #6aa8ff;
  --warning: #ffd166;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

@media (max-width: 760px) {
  .sports-toto-site-page .flow-cards {
    grid-template-columns: 1fr;
  }

  .sports-toto-site-page .content-check-list li,
  .sports-toto-site-page .flow-cards p,
  .sports-toto-site-page .before-after p,
  .sports-toto-site-page .insight-box p,
  .sports-toto-site-page .scenario-box p,
  .sports-toto-site-page .summary-box p {
    line-height: 1.65;
  }
}

@media (max-width: 520px) {
  .sports-toto-site-page .compare-table span:nth-child(1)::before { content: "배당 구간"; }
  .sports-toto-site-page .compare-table span:nth-child(2)::before { content: "읽을 신호"; }
  .sports-toto-site-page .compare-table span:nth-child(3)::before { content: "주의 해석"; }

  .sports-toto-site-page .compare-table span {
    display: block;
    line-height: 1.65;
  }

  .sports-toto-site-page .compare-table span::before {
    display: block;
    margin-bottom: 6px;
  }

  .sports-toto-site-page .content-check-list li,
  .sports-toto-site-page .compare-table span,
  .sports-toto-site-page .flow-cards article,
  .sports-toto-site-page .before-after article,
  .sports-toto-site-page .insight-box,
  .sports-toto-site-page .scenario-box,
  .sports-toto-site-page .summary-box {
    padding-left: 18px;
    padding-right: 18px;
  }

  .sports-toto-site-page .content-check-list li {
    padding-left: 44px;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: Pretendard, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(73, 227, 178, 0.18), transparent 28rem),
    radial-gradient(circle at 85% 5%, rgba(106, 168, 255, 0.18), transparent 30rem),
    linear-gradient(180deg, #07111f 0%, #0b1422 52%, #07111f 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.site-header,
main,
.site-footer {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  padding-top: 94px;
}

main {
  flex: 1;
}

.nav {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 48px));
  padding: 28px 0;
  transform: translateX(-50%);
  background: transparent;
  backdrop-filter: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, backdrop-filter 0.2s ease;
}

.nav.is-scrolled {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: rgba(7, 17, 31, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  opacity: 0;
  backdrop-filter: blur(14px);
  transition: opacity 0.2s ease;
}

.nav.is-scrolled::before {
  opacity: 1;
}

.nav::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 156px;
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #03120e;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.nav-links {
  position: absolute;
  left: 50%;
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
  transform: translateX(-50%);
}

.nav-item {
  position: relative;
}

.nav-main-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  font-weight: 900;
}

.has-submenu .nav-main-link::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.75;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  min-width: 190px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(7, 17, 31, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  backdrop-filter: blur(16px);
}

.nav-submenu a {
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

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

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 92px 0 76px;
  text-align: center;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.hero-copy {
  width: min(720px, 100%);
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 19px;
}

.visual-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 64px;
  text-align: left;
}

.visual-hero .hero-copy {
  margin-left: 0;
  margin-right: 0;
}

.hero-visual {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(73, 227, 178, 0.24);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), 0 16px 44px rgba(73, 227, 178, 0.08);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  color: #06130f;
  background: var(--brand);
  box-shadow: 0 12px 32px rgba(73, 227, 178, 0.24);
}

.button.ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.trust-panel,
.section {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.trust-panel article {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.trust-panel article:last-child { border-right: 0; }
.trust-panel strong { color: var(--brand); }
.trust-panel h2 { margin: 10px 0 8px; font-size: 22px; }
.trust-panel p { margin: 0; color: var(--muted); }

.section {
  margin-top: 28px;
  padding: clamp(28px, 5vw, 52px);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.section h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

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

.home-review-cta {
  display: flex;
  justify-content: center;
  padding: 8px 0 38px;
  margin-top: -28px;
}

.home-review-cta .button {
  min-width: 210px;
}

.home-card-section {
  padding: 0 0 72px;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 26px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.14;
  letter-spacing: -0.045em;
}

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

.home-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.home-info-card {
  position: relative;
  min-height: 228px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.home-info-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(73, 227, 178, 0.34);
  border-radius: 15px;
  color: var(--brand);
  background: rgba(73, 227, 178, 0.08);
  font-weight: 900;
}

.home-info-card h3 {
  margin: 24px 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.home-info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.home-content {
  width: 100%;
  margin: 6px 0 92px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.content-section {
  padding: clamp(30px, 4vw, 48px) clamp(24px, 5vw, 58px);
  border-bottom: 1px solid var(--line);
}

.content-section:last-child {
  border-bottom: 0;
}

.section-visual {
  width: 60%;
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid rgba(73, 227, 178, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.section-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.content-section h2 {
  margin: 0 0 18px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.24;
  letter-spacing: -0.04em;
}

.content-section h3 {
  margin: 30px 0 10px;
  color: #eaf2ff;
  font-size: clamp(19px, 2.1vw, 23px);
  line-height: 1.34;
  letter-spacing: -0.025em;
}

.content-section p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.84;
}

.content-section strong {
  color: var(--text);
  font-weight: 900;
}

.content-section a {
  color: var(--brand);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.content-section a:hover {
  color: #7fffd2;
}

.home-toc {
  width: 100%;
  margin: 0 0 28px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.component-eyebrow,
.home-toc .component-eyebrow {
  margin: 0 0 6px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-toc strong {
  display: block;
  margin-bottom: 16px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.home-toc div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-toc a {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 14px;
  font-weight: 800;
}

.home-toc a:hover {
  color: var(--text);
  border-color: rgba(73, 227, 178, 0.38);
}

.insight-box,
.scenario-box,
.summary-box {
  margin-top: 26px;
  padding: 22px 24px;
  border: 1px solid rgba(73, 227, 178, 0.26);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(73, 227, 178, 0.1), rgba(255, 255, 255, 0.035));
}

.insight-box span,
.scenario-box span,
.summary-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-weight: 900;
}

.compare-table {
  display: grid;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.compare-table > div {
  display: grid;
  grid-template-columns: 0.8fr 1.15fr 1.15fr;
}

.compare-table > div + div {
  border-top: 1px solid var(--line);
}

.compare-table strong,
.compare-table span {
  padding: 15px 16px;
  border-right: 1px solid var(--line);
}

.compare-table strong:last-child,
.compare-table span:last-child {
  border-right: 0;
}

.compare-table strong {
  color: var(--text);
  background: rgba(73, 227, 178, 0.09);
}

.compare-table span {
  color: var(--muted);
}

.flow-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.toto-site-terms-check-page .flow-cards {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.flow-cards article,
.before-after article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.flow-cards span,
.before-after span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.flow-cards strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
}

.flow-cards p,
.before-after p,
.insight-box p,
.scenario-box p,
.summary-box p {
  font-size: 15px;
  line-height: 1.72;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.before-after article:first-child {
  border-color: rgba(255, 209, 102, 0.28);
}

.before-after article:first-child span {
  color: var(--warning);
}

.content-check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.content-check-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.content-check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 15px;
  color: var(--brand);
  font-weight: 900;
}

.signup-priority-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1.16fr;
  gap: 14px;
  margin-top: 26px;
}

.signup-priority-grid article {
  position: relative;
  min-height: 190px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(73, 227, 178, 0.22);
  border-radius: 24px;
  background: radial-gradient(circle at top right, rgba(73, 227, 178, 0.16), transparent 42%), rgba(255, 255, 255, 0.045);
}

.signup-priority-grid article::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: rgba(73, 227, 178, 0.08);
}

.signup-priority-grid span,
.signup-warning-note span,
.signup-review-meter span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.signup-priority-grid strong,
.signup-decision-list strong,
.signup-review-meter strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 18px;
}

.signup-priority-grid p,
.signup-warning-note p,
.signup-decision-list li,
.signup-review-meter p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.signup-warning-note {
  margin-top: 26px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 209, 102, 0.34);
  border-left: 5px solid var(--warning);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.12), rgba(255, 255, 255, 0.035));
}

.signup-warning-note span {
  color: var(--warning);
}

.signup-decision-list {
  margin-top: 26px;
  padding: 22px 24px;
  border: 1px solid rgba(73, 227, 178, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.signup-decision-list ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.signup-review-meter {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1.15fr;
  gap: 12px;
  margin-top: 26px;
}

.signup-review-meter > strong {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.signup-review-meter div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.faq-accordion {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.faq-accordion details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.faq-accordion summary {
  position: relative;
  cursor: pointer;
  padding: 18px 54px 18px 20px;
  color: var(--text);
  font-weight: 900;
  list-style: none;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  color: var(--brand);
  font-size: 22px;
  font-weight: 900;
  transform: translateY(-50%);
}

.faq-accordion details[open] summary::after {
  content: "−";
}

.faq-accordion details p {
  padding: 0 20px 20px;
  font-size: 15px;
  line-height: 1.72;
}

.card-list { display: grid; gap: 12px; }
.check-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: #e9effb;
  font-weight: 700;
}
.check-card span { color: var(--brand); }

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.guide-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.guide-grid h3 { margin: 0 0 10px; font-size: 20px; }

.notice {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  border-color: rgba(255, 209, 102, 0.32);
}

.notice .section-label { color: var(--warning); }

.site-footer {
  width: 100%;
  margin-top: auto;
  margin-bottom: 0;
  padding: 34px max(24px, calc((100vw - 1280px) / 2 + 24px));
  border-top: 1px solid var(--line);
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(73, 227, 178, 0.1), transparent 38%),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-top {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  display: block;
  width: 168px;
  height: auto;
}

.footer-brand span:last-child {
  display: grid;
  gap: 2px;
}

.footer-brand strong {
  color: var(--text);
  font-size: 20px;
  line-height: 1.2;
}

.footer-brand em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
}

.footer-policy-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: clamp(48px, 8vw, 110px);
  min-width: min(560px, 100%);
}

.footer-policy-group {
  display: grid;
  gap: 14px;
}

.footer-policy-group strong {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
}

.footer-policy-group a {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-policy-group a:hover {
  color: var(--text);
  transform: translateX(3px);
}

.footer-disclaimer {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 209, 102, 0.24);
  border-radius: 18px;
  background: rgba(255, 209, 102, 0.055);
}

.footer-disclaimer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--warning);
  font-size: 14px;
}

.footer-disclaimer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.footer-bottom {
  padding-top: 20px;
  font-size: 14px;
}

.footer-bottom p {
  max-width: 680px;
  margin: 0;
}

.footer-bottom span {
  white-space: nowrap;
}

.policy-page {
  padding: 32px 0 72px;
}

.policy-card {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.page-breadcrumb {
  justify-content: flex-start;
  width: min(1280px, calc(100% - 48px));
  margin: 28px auto 0;
  padding-top: 18px;
}

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

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

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

.text-only-hero .policy-intro,
.text-only-hero .hero-copy {
  width: min(760px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.policy-header h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.policy-date {
  margin: 0 0 22px;
  color: var(--brand);
  font-weight: 800;
}

.policy-intro,
.policy-section p {
  color: var(--muted);
}

.policy-toc {
  margin: 34px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.policy-toc h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.policy-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.policy-toc a:hover {
  color: var(--text);
}

.policy-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.03em;
}

.policy-section p {
  margin: 0 0 12px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(73, 227, 178, 0.42);
  border-radius: 18px;
  color: #06130f;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 10px 28px rgba(73, 227, 178, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.back-to-top span {
  position: relative;
  top: -1px;
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.42), 0 14px 34px rgba(73, 227, 178, 0.24);
}

@media (max-width: 1180px) {
  .home-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .flow-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .site-header { padding-top: 84px; }
  .nav {
    align-items: center;
    gap: 12px;
    flex-direction: row;
    padding: 18px 0;
  }
  .brand-logo { width: 132px; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(7, 17, 31, 0.98);
    box-shadow: var(--shadow);
    transform: none;
    backdrop-filter: blur(16px);
  }
  .nav.is-open .nav-links { display: flex; }
  .nav-links a {
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 800;
  }
  .nav-item { width: 100%; }
  .nav-main-link { width: 100%; }
  .nav-submenu {
    position: static;
    min-width: 0;
    margin: 4px 0 0;
    padding: 0 0 0 12px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    backdrop-filter: none;
  }
  .nav-submenu a {
    white-space: normal;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.035);
  }
  .nav-links a:hover { background: rgba(255, 255, 255, 0.06); }
  .hero { text-align: center; padding: 42px 0 56px; }
  .visual-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    width: min(100% - 28px, 1280px);
    padding: 42px 0 56px;
    text-align: center;
  }
  .visual-hero .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-visual {
    width: min(720px, 100%);
    margin: 0 auto;
  }
  .hero h1 { font-size: clamp(34px, 9.5vw, 48px); }
  .hero-actions { justify-content: center; }
  .section-heading { text-align: center; }
  .home-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-panel,
  .split,
  .guide-grid,
  .notice,
  .before-after,
  .signup-priority-grid,
  .signup-review-meter { grid-template-columns: 1fr; }
  .compare-table {
    overflow: visible;
    border: 0;
    border-radius: 0;
    gap: 12px;
  }
  .compare-table > div {
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
  }
  .compare-table > div:first-child {
    display: none;
  }
  .compare-table > div + div {
    border-top: 1px solid var(--line);
  }
  .compare-table span {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .compare-table span:last-child {
    border-bottom: 0;
  }
  .compare-table span:nth-child(1)::before { content: "확인 항목"; }
  .compare-table span:nth-child(2)::before { content: "안정적인 신호"; }
  .compare-table span:nth-child(3)::before { content: "주의할 신호"; }
  .compare-table span::before {
    flex: 0 0 96px;
    color: var(--brand);
    font-weight: 900;
  }
  .trust-panel article { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-panel article:last-child { border-bottom: 0; }
}

@media (max-width: 700px) {
  .toto-site-scam-risk-signals-page .flow-cards,
  .toto-site-withdrawal-condition-check-page .flow-cards,
  .toto-site-security-connection-check-page .flow-cards,
  .toto-site-review-check-page .flow-cards,
  .toto-site-operation-info-check-page .flow-cards,
  .toto-site-terms-check-page .flow-cards,
  .toto-site-customer-support-check-page .flow-cards {
    grid-template-columns: 1fr;
  }

  .toto-site-scam-risk-signals-page .home-toc a,
  .toto-site-before-signup-checklist-page .home-toc a,
  .toto-site-withdrawal-condition-check-page .home-toc a,
  .toto-site-security-connection-check-page .home-toc a,
  .toto-site-review-check-page .home-toc a,
  .toto-site-operation-info-check-page .home-toc a,
  .toto-site-terms-check-page .home-toc a,
  .toto-site-customer-support-check-page .home-toc a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
  }

  .toto-site-scam-risk-signals-page .compare-table span,
  .toto-site-before-signup-checklist-page .compare-table span,
  .toto-site-withdrawal-condition-check-page .compare-table span,
  .toto-site-security-connection-check-page .compare-table span,
  .toto-site-review-check-page .compare-table span,
  .toto-site-operation-info-check-page .compare-table span,
  .toto-site-terms-check-page .compare-table span,
  .toto-site-customer-support-check-page .compare-table span {
    align-items: flex-start;
    line-height: 1.65;
  }

  .toto-site-withdrawal-condition-check-page .compare-table span:nth-child(2)::before,
  .toto-site-security-connection-check-page .compare-table span:nth-child(2)::before { content: "안정적인 안내"; }
  .toto-site-withdrawal-condition-check-page .compare-table span:nth-child(3)::before,
  .toto-site-security-connection-check-page .compare-table span:nth-child(3)::before { content: "주의할 안내"; }
  .toto-site-review-check-page .compare-table span:nth-child(1)::before { content: "후기 유형"; }
  .toto-site-review-check-page .compare-table span:nth-child(2)::before { content: "남길 단서"; }
  .toto-site-review-check-page .compare-table span:nth-child(3)::before { content: "주의할 점"; }
  .toto-site-operation-info-check-page .compare-table span:nth-child(1)::before { content: "확인 항목"; }
  .toto-site-operation-info-check-page .compare-table span:nth-child(2)::before { content: "안정적인 신호"; }
  .toto-site-operation-info-check-page .compare-table span:nth-child(3)::before { content: "주의할 신호"; }
  .toto-site-terms-check-page .compare-table span:nth-child(1)::before { content: "확인 항목"; }
  .toto-site-terms-check-page .compare-table span:nth-child(2)::before { content: "연결 조항"; }
  .toto-site-terms-check-page .compare-table span:nth-child(3)::before { content: "주의 흐름"; }
  .toto-site-customer-support-check-page .compare-table span:nth-child(1)::before { content: "답변 유형"; }
  .toto-site-customer-support-check-page .compare-table span:nth-child(2)::before { content: "확인할 점"; }
  .toto-site-customer-support-check-page .compare-table span:nth-child(3)::before { content: "토토백 판단"; }

  .toto-site-scam-risk-signals-page .content-check-list li,
  .toto-site-before-signup-checklist-page .check-card,
  .toto-site-before-signup-checklist-page .signup-decision-list li,
  .toto-site-before-signup-checklist-page .signup-review-meter p,
  .toto-site-withdrawal-condition-check-page .content-check-list li,
  .toto-site-withdrawal-condition-check-page .flow-cards p,
  .toto-site-withdrawal-condition-check-page .before-after p,
  .toto-site-withdrawal-condition-check-page .faq-accordion p,
  .toto-site-security-connection-check-page .content-check-list li,
  .toto-site-security-connection-check-page .flow-cards p,
  .toto-site-security-connection-check-page .before-after p,
  .toto-site-security-connection-check-page .faq-accordion p,
  .toto-site-review-check-page .content-check-list li,
  .toto-site-review-check-page .flow-cards p,
  .toto-site-review-check-page .before-after p,
  .toto-site-review-check-page .faq-accordion p,
  .toto-site-operation-info-check-page .content-check-list li,
  .toto-site-operation-info-check-page .flow-cards p,
  .toto-site-operation-info-check-page .before-after p,
  .toto-site-operation-info-check-page .insight-box p,
  .toto-site-operation-info-check-page .scenario-box p,
  .toto-site-operation-info-check-page .summary-box p,
  .toto-site-operation-info-check-page .signup-warning-note p,
  .toto-site-operation-info-check-page .faq-accordion p,
  .toto-site-terms-check-page .content-check-list li,
  .toto-site-terms-check-page .flow-cards p,
  .toto-site-terms-check-page .before-after p,
  .toto-site-terms-check-page .insight-box p,
  .toto-site-terms-check-page .scenario-box p,
  .toto-site-terms-check-page .summary-box p,
  .toto-site-terms-check-page .signup-warning-note p,
  .toto-site-customer-support-check-page .content-check-list li,
  .toto-site-customer-support-check-page .flow-cards p,
  .toto-site-customer-support-check-page .before-after p,
  .toto-site-customer-support-check-page .insight-box p,
  .toto-site-customer-support-check-page .scenario-box p,
  .toto-site-customer-support-check-page .summary-box p,
  .toto-site-customer-support-check-page .signup-warning-note p,
  .toto-site-customer-support-check-page .faq-accordion p {
    line-height: 1.65;
  }

  .toto-site-before-signup-checklist-page .signup-priority-grid,
  .toto-site-before-signup-checklist-page .signup-review-meter {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .toto-site-before-signup-checklist-page .signup-priority-grid article {
    min-height: 0;
  }

  .toto-site-before-signup-checklist-page .signup-warning-note,
  .toto-site-before-signup-checklist-page .signup-decision-list {
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .site-header,
  main,
  .site-footer { width: min(100% - 28px, 1280px); }
  .nav,
  .page-breadcrumb { width: min(100% - 28px, 1280px); }
  .page-breadcrumb { margin-top: 20px; padding-top: 14px; }
  .footer-top,
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-policy-nav { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom span { white-space: normal; }
  .home-review-cta { padding: 0 0 30px; margin-top: -14px; }
  .home-card-section { padding-bottom: 52px; }
  .home-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .home-info-card { min-height: 160px; border-radius: 20px; }
  .home-toc { padding: 20px; }
  .home-toc a { width: calc(50% - 5px); text-align: center; }
  .toto-site-withdrawal-condition-check-page .home-toc a,
  .toto-site-security-connection-check-page .home-toc a,
  .toto-site-operation-info-check-page .home-toc a,
  .toto-site-terms-check-page .home-toc a,
  .toto-site-customer-support-check-page .home-toc a { width: 100%; }
  .content-section { padding: 28px 20px; }
  .section-visual { width: 100%; }
  .toto-site-withdrawal-condition-check-page .hero h1,
  .toto-site-security-connection-check-page .hero h1,
  .toto-site-review-check-page .hero h1,
  .toto-site-operation-info-check-page .hero h1,
  .toto-site-terms-check-page .hero h1,
  .toto-site-customer-support-check-page .hero h1 {
    font-size: clamp(28px, 8.5vw, 36px);
    line-height: 1.14;
    letter-spacing: -0.045em;
  }
  .toto-site-withdrawal-condition-check-page .content-section,
  .toto-site-withdrawal-condition-check-page .home-content,
  .toto-site-security-connection-check-page .content-section,
  .toto-site-security-connection-check-page .home-content,
  .toto-site-review-check-page .content-section,
  .toto-site-review-check-page .home-content,
  .toto-site-operation-info-check-page .content-section,
  .toto-site-operation-info-check-page .home-content,
  .toto-site-terms-check-page .content-section,
  .toto-site-terms-check-page main,
  .toto-site-customer-support-check-page .content-section,
  .toto-site-customer-support-check-page main {
    overflow-wrap: break-word;
  }
  .toto-site-withdrawal-condition-check-page .compare-table span,
  .toto-site-security-connection-check-page .compare-table span,
  .toto-site-review-check-page .compare-table span,
  .toto-site-operation-info-check-page .compare-table span,
  .toto-site-terms-check-page .compare-table span,
  .toto-site-customer-support-check-page .compare-table span {
    display: block;
  }
  .toto-site-withdrawal-condition-check-page .compare-table span::before,
  .toto-site-security-connection-check-page .compare-table span::before,
  .toto-site-review-check-page .compare-table span::before,
  .toto-site-operation-info-check-page .compare-table span::before,
  .toto-site-terms-check-page .compare-table span::before,
  .toto-site-customer-support-check-page .compare-table span::before {
    display: block;
    margin-bottom: 6px;
  }
  .toto-site-security-connection-check-page,
  .toto-site-terms-check-page,
  .toto-site-customer-support-check-page {
    overflow-x: hidden;
  }
  .toto-site-security-connection-check-page main,
  .toto-site-security-connection-check-page .site-footer,
  .toto-site-terms-check-page main,
  .toto-site-terms-check-page .site-footer,
  .toto-site-customer-support-check-page main,
  .toto-site-customer-support-check-page .site-footer {
    width: min(100% - 44px, 1280px);
  }
  .toto-site-security-connection-check-page .page-breadcrumb,
  .toto-site-terms-check-page .page-breadcrumb,
  .toto-site-customer-support-check-page .page-breadcrumb {
    display: block;
    width: min(100% - 44px, 1280px);
    font-size: 13px;
    line-height: 1.6;
    overflow-wrap: anywhere;
  }
  .toto-site-security-connection-check-page .page-breadcrumb span,
  .toto-site-terms-check-page .page-breadcrumb span,
  .toto-site-customer-support-check-page .page-breadcrumb span {
    display: inline-block;
    margin: 0 5px;
  }
  .toto-site-security-connection-check-page .page-breadcrumb a,
  .toto-site-security-connection-check-page .page-breadcrumb strong,
  .toto-site-terms-check-page .page-breadcrumb a,
  .toto-site-terms-check-page .page-breadcrumb strong,
  .toto-site-customer-support-check-page .page-breadcrumb a,
  .toto-site-customer-support-check-page .page-breadcrumb strong {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .toto-site-security-connection-check-page .visual-hero,
  .toto-site-terms-check-page .visual-hero,
  .toto-site-customer-support-check-page .visual-hero {
    width: min(100% - 56px, 1280px);
  }
  .toto-site-security-connection-check-page .home-toc,
  .toto-site-terms-check-page .home-toc,
  .toto-site-customer-support-check-page .home-toc {
    max-width: 100%;
    overflow: hidden;
  }
  .toto-site-security-connection-check-page .hero-visual,
  .toto-site-security-connection-check-page .section-visual,
  .toto-site-terms-check-page .hero-visual,
  .toto-site-terms-check-page .section-visual,
  .toto-site-customer-support-check-page .hero-visual,
  .toto-site-customer-support-check-page .section-visual {
    max-width: 100%;
  }
  .toto-site-security-connection-check-page .hero-visual img,
  .toto-site-security-connection-check-page .section-visual img,
  .toto-site-terms-check-page .hero-visual img,
  .toto-site-terms-check-page .section-visual img,
  .toto-site-customer-support-check-page .hero-visual img,
  .toto-site-customer-support-check-page .section-visual img {
    max-width: 100%;
  }
  .toto-site-terms-check-page .content-section h2,
  .toto-site-customer-support-check-page .content-section h2 {
    font-size: clamp(24px, 7.2vw, 32px);
    line-height: 1.22;
    letter-spacing: -0.035em;
  }
  .toto-site-terms-check-page .content-section h3,
  .toto-site-customer-support-check-page .content-section h3 {
    font-size: clamp(18px, 5.2vw, 22px);
    line-height: 1.35;
  }
  .toto-site-terms-check-page .content-check-list li,
  .toto-site-terms-check-page .compare-table span,
  .toto-site-terms-check-page .flow-cards article,
  .toto-site-terms-check-page .before-after article,
  .toto-site-terms-check-page .insight-box,
  .toto-site-terms-check-page .scenario-box,
  .toto-site-terms-check-page .summary-box,
  .toto-site-terms-check-page .signup-warning-note,
  .toto-site-customer-support-check-page .content-check-list li,
  .toto-site-customer-support-check-page .compare-table span,
  .toto-site-customer-support-check-page .flow-cards article,
  .toto-site-customer-support-check-page .before-after article,
  .toto-site-customer-support-check-page .insight-box,
  .toto-site-customer-support-check-page .scenario-box,
  .toto-site-customer-support-check-page .summary-box,
  .toto-site-customer-support-check-page .signup-warning-note {
    padding-left: 18px;
    padding-right: 18px;
  }
  .toto-site-terms-check-page .content-check-list li,
  .toto-site-customer-support-check-page .content-check-list li {
    padding-left: 44px;
  }
  .toto-site-terms-check-page .faq-accordion summary,
  .toto-site-customer-support-check-page .faq-accordion summary {
    min-height: 48px;
    line-height: 1.55;
  }
  .flow-cards { grid-template-columns: 1fr; }
  .policy-toc ol { grid-template-columns: 1fr; }
  .toto-site-before-signup-checklist-page .check-card {
    align-items: flex-start;
    padding: 16px;
  }
  .toto-site-before-signup-checklist-page .signup-priority-grid article,
  .toto-site-before-signup-checklist-page .signup-review-meter div {
    padding: 18px;
  }
  .toto-site-before-signup-checklist-page .signup-decision-list ol {
    padding-left: 18px;
  }
  .hero h1 { font-size: clamp(32px, 10vw, 42px); }
  .visual-hero { gap: 18px; }
  .hero-visual { border-radius: 20px; }
  .hero-copy,
  .content-section p { font-size: 16px; }
  .home-review-cta .button { width: auto; min-width: 210px; min-height: 52px; }
  .back-to-top { right: 18px; bottom: 18px; width: 48px; height: 48px; border-radius: 16px; }
}

.error-main {
  flex: 1;
  display: grid;
  gap: 28px;
  align-content: start;
  padding-bottom: 92px;
}

.error-hero {
  position: relative;
  overflow: hidden;
  margin: 6px 0 0;
  padding: clamp(54px, 7vw, 92px) clamp(24px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 32px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(73, 227, 178, 0.18), transparent 34rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.error-hero::after {
  content: "";
  position: absolute;
  inset: auto 8% -45% 8%;
  height: 260px;
  border-radius: 999px;
  background: rgba(73, 227, 178, 0.12);
  filter: blur(34px);
  pointer-events: none;
}

.error-code {
  display: block;
  margin: 8px 0 10px;
  color: var(--brand);
  font-size: clamp(76px, 16vw, 148px);
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-shadow: 0 18px 56px rgba(73, 227, 178, 0.22);
}

.error-hero h1 {
  margin: 0;
  font-size: clamp(32px, 6vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.error-hero .hero-copy {
  max-width: 720px;
  margin: 20px auto 0;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

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

.button.secondary:hover {
  border-color: rgba(73, 227, 178, 0.42);
  background: rgba(73, 227, 178, 0.1);
}

.error-links {
  margin-bottom: 0;
}

@media (max-width: 520px) {
  .error-main {
    padding-bottom: 62px;
  }

  .error-hero {
    border-radius: 24px;
  }

  .error-actions .button {
    width: 100%;
    min-height: 52px;
  }

  .error-links a {
    width: 100%;
    min-height: 44px;
    text-align: center;
  }
}

/* Domain change caution mobile optimization */
@media (max-width: 700px) {
  .toto-site-domain-change-caution-page .flow-cards {
    grid-template-columns: 1fr;
  }

  .toto-site-domain-change-caution-page .home-toc a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
  }

  .toto-site-domain-change-caution-page .compare-table span {
    align-items: flex-start;
    line-height: 1.65;
  }

  .toto-site-domain-change-caution-page .content-check-list li,
  .toto-site-domain-change-caution-page .flow-cards p,
  .toto-site-domain-change-caution-page .before-after p,
  .toto-site-domain-change-caution-page .insight-box p,
  .toto-site-domain-change-caution-page .scenario-box p,
  .toto-site-domain-change-caution-page .summary-box p,
  .toto-site-domain-change-caution-page .signup-warning-note p,
  .toto-site-domain-change-caution-page .faq-accordion p {
    line-height: 1.65;
  }
}

@media (max-width: 520px) {
  .toto-site-domain-change-caution-page {
    overflow-x: hidden;
  }

  .toto-site-domain-change-caution-page main,
  .toto-site-domain-change-caution-page .site-footer {
    width: min(100% - 44px, 1280px);
  }

  .toto-site-domain-change-caution-page .page-breadcrumb {
    display: block;
    width: min(100% - 44px, 1280px);
    font-size: 13px;
    line-height: 1.6;
    overflow-wrap: anywhere;
  }

  .toto-site-domain-change-caution-page .page-breadcrumb span {
    display: inline-block;
    margin: 0 5px;
  }

  .toto-site-domain-change-caution-page .page-breadcrumb a,
  .toto-site-domain-change-caution-page .page-breadcrumb strong {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .toto-site-domain-change-caution-page .visual-hero {
    width: min(100% - 56px, 1280px);
  }

  .toto-site-domain-change-caution-page .hero h1 {
    font-size: clamp(28px, 8.5vw, 36px);
    line-height: 1.14;
    letter-spacing: -0.045em;
  }

  .toto-site-domain-change-caution-page .content-section,
  .toto-site-domain-change-caution-page .home-content {
    overflow-wrap: break-word;
  }

  .toto-site-domain-change-caution-page .home-toc {
    max-width: 100%;
    overflow: hidden;
  }

  .toto-site-domain-change-caution-page .home-toc a {
    width: 100%;
  }

  .toto-site-domain-change-caution-page .hero-visual,
  .toto-site-domain-change-caution-page .section-visual {
    max-width: 100%;
  }

  .toto-site-domain-change-caution-page .hero-visual img,
  .toto-site-domain-change-caution-page .section-visual img {
    max-width: 100%;
  }

  .toto-site-domain-change-caution-page .content-section h2 {
    font-size: clamp(24px, 7.2vw, 32px);
    line-height: 1.22;
    letter-spacing: -0.035em;
  }

  .toto-site-domain-change-caution-page .content-section h3 {
    font-size: clamp(18px, 5.2vw, 22px);
    line-height: 1.35;
  }

  .toto-site-domain-change-caution-page .compare-table span {
    display: block;
  }

  .toto-site-domain-change-caution-page .compare-table span::before {
    display: block;
    margin-bottom: 6px;
  }

  .toto-site-domain-change-caution-page .content-check-list li,
  .toto-site-domain-change-caution-page .compare-table span,
  .toto-site-domain-change-caution-page .flow-cards article,
  .toto-site-domain-change-caution-page .before-after article,
  .toto-site-domain-change-caution-page .insight-box,
  .toto-site-domain-change-caution-page .scenario-box,
  .toto-site-domain-change-caution-page .summary-box,
  .toto-site-domain-change-caution-page .signup-warning-note {
    padding-left: 18px;
    padding-right: 18px;
  }

  .toto-site-domain-change-caution-page .content-check-list li {
    padding-left: 44px;
  }

  .toto-site-domain-change-caution-page .faq-accordion summary {
    min-height: 48px;
    line-height: 1.55;
  }
}

/* Roulette event condition check mobile optimization */
@media (max-width: 700px) {
  .roulette-event-condition-check-page .flow-cards {
    grid-template-columns: 1fr;
  }

  .roulette-event-condition-check-page .home-toc a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
  }

  .roulette-event-condition-check-page .visual-hero,
  .roulette-event-condition-check-page .visual-hero-content,
  .roulette-event-condition-check-page .hero-visual,
  .roulette-event-condition-check-page .content-section,
  .roulette-event-condition-check-page .home-content {
    box-sizing: border-box;
    min-width: 0;
  }

  .roulette-event-condition-check-page .hero h1,
  .roulette-event-condition-check-page .hero-copy,
  .roulette-event-condition-check-page .content-section h2,
  .roulette-event-condition-check-page .content-section h3,
  .roulette-event-condition-check-page .content-section p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .roulette-event-condition-check-page .compare-table span {
    align-items: flex-start;
    line-height: 1.65;
  }

  .roulette-event-condition-check-page .compare-table span:nth-child(1)::before { content: "확인 항목"; }
  .roulette-event-condition-check-page .compare-table span:nth-child(2)::before { content: "함께 볼 조건"; }
  .roulette-event-condition-check-page .compare-table span:nth-child(3)::before { content: "주의할 해석"; }

  .roulette-event-condition-check-page .content-check-list li,
  .roulette-event-condition-check-page .flow-cards p,
  .roulette-event-condition-check-page .before-after p,
  .roulette-event-condition-check-page .insight-box p,
  .roulette-event-condition-check-page .scenario-box p,
  .roulette-event-condition-check-page .summary-box p,
  .roulette-event-condition-check-page .signup-warning-note p,
  .roulette-event-condition-check-page .faq-accordion p {
    line-height: 1.65;
  }
}

@media (max-width: 520px) {
  .roulette-event-condition-check-page {
    overflow-x: hidden;
  }

  .roulette-event-condition-check-page main,
  .roulette-event-condition-check-page .site-footer {
    width: min(100% - 44px, 1280px);
  }

  .roulette-event-condition-check-page .page-breadcrumb {
    display: block;
    width: min(100% - 44px, 1280px);
    font-size: 13px;
    line-height: 1.6;
    overflow-wrap: anywhere;
  }

  .roulette-event-condition-check-page .page-breadcrumb span {
    display: inline-block;
    margin: 0 5px;
  }

  .roulette-event-condition-check-page .page-breadcrumb a,
  .roulette-event-condition-check-page .page-breadcrumb strong {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .roulette-event-condition-check-page .visual-hero {
    display: flex;
    flex-direction: column;
    width: min(100% - 28px, 1280px);
    padding: 36px 0 44px;
    overflow: hidden;
  }

  .roulette-event-condition-check-page .visual-hero-content {
    width: 100%;
    max-width: 100%;
  }

  .roulette-event-condition-check-page .hero h1 {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(23px, 6.4vw, 31px);
    line-height: 1.24;
    letter-spacing: -0.03em;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .roulette-event-condition-check-page .hero-copy {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.7;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .roulette-event-condition-check-page .content-section,
  .roulette-event-condition-check-page .home-content {
    overflow-wrap: break-word;
  }

  .roulette-event-condition-check-page .home-toc {
    max-width: 100%;
    overflow: hidden;
  }

  .roulette-event-condition-check-page .home-toc a {
    width: 100%;
  }

  .roulette-event-condition-check-page .hero-visual,
  .roulette-event-condition-check-page .section-visual {
    width: min(100% - 8px, 640px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .roulette-event-condition-check-page .hero-visual img,
  .roulette-event-condition-check-page .section-visual img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .roulette-event-condition-check-page .home-toc {
    padding-left: 18px;
    padding-right: 18px;
  }

  .roulette-event-condition-check-page .content-section h2 {
    font-size: clamp(24px, 7.2vw, 32px);
    line-height: 1.22;
    letter-spacing: -0.035em;
  }

  .roulette-event-condition-check-page .content-section h3 {
    font-size: clamp(18px, 5.2vw, 22px);
    line-height: 1.35;
  }

  .roulette-event-condition-check-page .compare-table span {
    display: block;
  }

  .roulette-event-condition-check-page .compare-table span::before {
    display: block;
    margin-bottom: 6px;
  }

  .roulette-event-condition-check-page .content-check-list li,
  .roulette-event-condition-check-page .compare-table span,
  .roulette-event-condition-check-page .flow-cards article,
  .roulette-event-condition-check-page .before-after article,
  .roulette-event-condition-check-page .insight-box,
  .roulette-event-condition-check-page .scenario-box,
  .roulette-event-condition-check-page .summary-box,
  .roulette-event-condition-check-page .signup-warning-note {
    padding-left: 18px;
    padding-right: 18px;
  }

  .roulette-event-condition-check-page .content-check-list li {
    padding-left: 44px;
  }

  .roulette-event-condition-check-page .faq-accordion summary {
    min-height: 48px;
    line-height: 1.55;
  }
}

/* Sports toto mobile refinements */
@media (max-width: 760px) {
  .sports-toto-site-page .home-toc a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .sports-toto-site-page .flow-cards {
    grid-template-columns: 1fr;
  }

  .sports-toto-site-page .content-check-list li,
  .sports-toto-site-page .compare-table span,
  .sports-toto-site-page .flow-cards p,
  .sports-toto-site-page .before-after p,
  .sports-toto-site-page .insight-box p,
  .sports-toto-site-page .scenario-box p,
  .sports-toto-site-page .summary-box p,
  .sports-toto-site-page .faq-accordion p {
    font-size: 16px;
    line-height: 1.65;
  }

  .sports-toto-site-page .flow-cards article,
  .sports-toto-site-page .before-after article,
  .sports-toto-site-page .insight-box,
  .sports-toto-site-page .scenario-box,
  .sports-toto-site-page .summary-box {
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .sports-toto-site-page .home-toc a {
    width: calc(50% - 5px);
  }

  .sports-toto-site-page .compare-table span:nth-child(1)::before { content: "\BC30\B2F9\20\AD6C\AC04"; }
  .sports-toto-site-page .compare-table span:nth-child(2)::before { content: "\C77D\C744\20\C2E0\D638"; }
  .sports-toto-site-page .compare-table span:nth-child(3)::before { content: "\C8FC\C758\20\D574\C11D"; }

  .sports-toto-site-page .compare-table span {
    display: block;
  }

  .sports-toto-site-page .compare-table span::before {
    display: block;
    margin-bottom: 6px;
  }

  .sports-toto-site-page .content-check-list li,
  .sports-toto-site-page .compare-table span,
  .sports-toto-site-page .flow-cards article,
  .sports-toto-site-page .before-after article,
  .sports-toto-site-page .insight-box,
  .sports-toto-site-page .scenario-box,
  .sports-toto-site-page .summary-box {
    padding-left: 18px;
    padding-right: 18px;
  }

  .sports-toto-site-page .content-check-list li {
    padding-left: 44px;
  }

  .sports-toto-site-page .faq-accordion summary {
    min-height: 48px;
    line-height: 1.55;
  }

  .sports-toto-site-page .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }
}

@media (max-width: 520px) {
  .sports-toto-site-page .back-to-top { display: none; }
}


.football-toto-site-page .compare-table span:nth-child(1)::before { content: "\D655\C778\20\D56D\BAA9"; }
.football-toto-site-page .compare-table span:nth-child(2)::before { content: "\B2E8\C21C\20\D310\B2E8"; }
.football-toto-site-page .compare-table span:nth-child(3)::before { content: "\D1A0\D1A0\BC31\20\D310\B2E8"; }

.baseball-toto-site-page .compare-table span:nth-child(1)::before { content: "\D655\C778\20\D56D\BAA9"; }
.baseball-toto-site-page .compare-table span:nth-child(2)::before { content: "\B2E8\C21C\20\D310\B2E8"; }
.baseball-toto-site-page .compare-table span:nth-child(3)::before { content: "\D1A0\D1A0\BC31\20\D310\B2E8"; }

@media (max-width: 860px) {
  .football-toto-site-page .visual-hero,
  .football-toto-site-page .visual-hero-content,
  .football-toto-site-page .hero-visual,
  .football-toto-site-page .content-section,
  .football-toto-site-page .home-content,
  .football-toto-site-page .home-toc {
    box-sizing: border-box;
    min-width: 0;
  }

  .football-toto-site-page .visual-hero {
    width: min(100% - 28px, 1280px);
    overflow: hidden;
  }

  .football-toto-site-page .hero h1 {
    font-size: clamp(28px, 8.4vw, 38px);
    line-height: 1.16;
    word-break: keep-all;
  }

  .football-toto-site-page .hero-copy,
  .football-toto-site-page .content-section p {
    font-size: 16px;
    line-height: 1.72;
  }

  .football-toto-site-page .section-visual,
  .football-toto-site-page .hero-visual {
    width: min(100% - 8px, 640px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .football-toto-site-page .section-visual img,
  .football-toto-site-page .hero-visual img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .football-toto-site-page .flow-cards {
    grid-template-columns: 1fr;
  }

  .football-toto-site-page .home-toc {
    max-width: 100%;
    overflow: hidden;
  }

  .football-toto-site-page .home-toc a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
  }

  .football-toto-site-page .content-check-list li,
  .football-toto-site-page .compare-table span,
  .football-toto-site-page .flow-cards p,
  .football-toto-site-page .before-after p,
  .football-toto-site-page .scenario-box p,
  .football-toto-site-page .summary-box p,
  .football-toto-site-page .signup-warning-note p,
  .football-toto-site-page .faq-accordion p {
    font-size: 16px;
    line-height: 1.65;
  }
}

@media (max-width: 520px) {
  .football-toto-site-page .home-toc a {
    width: 100%;
  }

  .football-toto-site-page .content-section h2 {
    font-size: clamp(24px, 7.2vw, 32px);
    line-height: 1.22;
    letter-spacing: -0.035em;
    word-break: keep-all;
  }

  .football-toto-site-page .content-section h3,
  .football-toto-site-page .faq-accordion summary {
    line-height: 1.45;
    word-break: keep-all;
  }

  .football-toto-site-page .compare-table span {
    display: block;
  }

  .football-toto-site-page .compare-table span::before {
    display: block;
    margin-bottom: 6px;
  }

  .football-toto-site-page .content-check-list li,
  .football-toto-site-page .compare-table span,
  .football-toto-site-page .flow-cards article,
  .football-toto-site-page .before-after article,
  .football-toto-site-page .scenario-box,
  .football-toto-site-page .summary-box,
  .football-toto-site-page .signup-warning-note {
    padding-left: 18px;
    padding-right: 18px;
  }

  .football-toto-site-page .content-check-list li {
    padding-left: 44px;
  }
}

/* Baseball toto mobile optimization */
@media (max-width: 860px) {
  .baseball-toto-site-page,
  .baseball-toto-site-page .visual-hero,
  .baseball-toto-site-page .visual-hero-content,
  .baseball-toto-site-page .hero-visual,
  .baseball-toto-site-page .content-section,
  .baseball-toto-site-page .home-content,
  .baseball-toto-site-page .home-toc {
    box-sizing: border-box;
    min-width: 0;
  }

  .baseball-toto-site-page {
    overflow-x: hidden;
  }

  .baseball-toto-site-page .visual-hero {
    width: min(100% - 28px, 1280px);
    overflow: hidden;
  }

  .baseball-toto-site-page .hero h1 {
    font-size: clamp(28px, 8.2vw, 38px);
    line-height: 1.16;
    letter-spacing: -0.04em;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .baseball-toto-site-page .hero-copy,
  .baseball-toto-site-page .content-section p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.72;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .baseball-toto-site-page .section-visual,
  .baseball-toto-site-page .hero-visual {
    width: min(100% - 8px, 640px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .baseball-toto-site-page .section-visual img,
  .baseball-toto-site-page .hero-visual img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .baseball-toto-site-page .flow-cards {
    grid-template-columns: 1fr;
  }

  .baseball-toto-site-page .before-after {
    grid-template-columns: 1fr;
  }

  .baseball-toto-site-page .home-toc {
    max-width: 100%;
    overflow: hidden;
    padding-left: 18px;
    padding-right: 18px;
  }

  .baseball-toto-site-page .home-toc a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 1.35;
  }

  .baseball-toto-site-page .content-check-list li,
  .baseball-toto-site-page .compare-table span,
  .baseball-toto-site-page .flow-cards p,
  .baseball-toto-site-page .before-after p,
  .baseball-toto-site-page .insight-box p,
  .baseball-toto-site-page .scenario-box p,
  .baseball-toto-site-page .summary-box p,
  .baseball-toto-site-page .signup-warning-note p,
  .baseball-toto-site-page .faq-accordion p {
    font-size: 16px;
    line-height: 1.65;
  }
}

@media (max-width: 520px) {
  .baseball-toto-site-page main,
  .baseball-toto-site-page .site-footer {
    width: min(100% - 44px, 1280px);
  }

  .baseball-toto-site-page .page-breadcrumb {
    display: block;
    width: min(100% - 44px, 1280px);
    font-size: 13px;
    line-height: 1.6;
    overflow-wrap: anywhere;
  }

  .baseball-toto-site-page .page-breadcrumb span {
    display: inline-block;
    margin: 0 5px;
  }

  .baseball-toto-site-page .page-breadcrumb a,
  .baseball-toto-site-page .page-breadcrumb strong {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .baseball-toto-site-page .visual-hero {
    width: min(100% - 56px, 1280px);
    padding: 36px 0 44px;
  }

  .baseball-toto-site-page .hero h1 {
    font-size: clamp(25px, 7.4vw, 34px);
    line-height: 1.18;
    letter-spacing: -0.04em;
  }

  .baseball-toto-site-page .home-toc a {
    width: 100%;
  }

  .baseball-toto-site-page .content-section,
  .baseball-toto-site-page .home-content {
    overflow-wrap: break-word;
  }

  .baseball-toto-site-page .content-section h2 {
    font-size: clamp(24px, 7.2vw, 32px);
    line-height: 1.22;
    letter-spacing: -0.035em;
    word-break: keep-all;
  }

  .baseball-toto-site-page .content-section h3,
  .baseball-toto-site-page .faq-accordion summary {
    font-size: clamp(18px, 5.2vw, 22px);
    line-height: 1.45;
    word-break: keep-all;
  }

  .baseball-toto-site-page .compare-table span {
    display: block;
  }

  .baseball-toto-site-page .compare-table span::before {
    display: block;
    margin-bottom: 6px;
  }

  .baseball-toto-site-page .content-check-list li,
  .baseball-toto-site-page .compare-table span,
  .baseball-toto-site-page .flow-cards article,
  .baseball-toto-site-page .before-after article,
  .baseball-toto-site-page .insight-box,
  .baseball-toto-site-page .scenario-box,
  .baseball-toto-site-page .summary-box,
  .baseball-toto-site-page .signup-warning-note {
    padding-left: 18px;
    padding-right: 18px;
  }

  .baseball-toto-site-page .content-check-list li {
    padding-left: 44px;
  }

  .baseball-toto-site-page .faq-accordion summary {
    min-height: 48px;
  }

  .baseball-toto-site-page .back-to-top {
    display: none;
  }
}

/* Basketball toto mobile optimization */
@media (max-width: 860px) {
  .basketball-toto-site-page,
  .basketball-toto-site-page .visual-hero,
  .basketball-toto-site-page .visual-hero-content,
  .basketball-toto-site-page .hero-visual,
  .basketball-toto-site-page .content-section,
  .basketball-toto-site-page .home-content,
  .basketball-toto-site-page .home-toc {
    box-sizing: border-box;
    min-width: 0;
  }

  .basketball-toto-site-page {
    overflow-x: hidden;
  }

  .basketball-toto-site-page .visual-hero {
    width: min(100% - 28px, 1280px);
    overflow: hidden;
  }

  .basketball-toto-site-page .hero h1 {
    font-size: clamp(28px, 8.2vw, 38px);
    line-height: 1.16;
    letter-spacing: -0.04em;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .basketball-toto-site-page .hero-copy,
  .basketball-toto-site-page .content-section p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.72;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .basketball-toto-site-page .section-visual,
  .basketball-toto-site-page .hero-visual {
    width: min(100% - 8px, 640px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .basketball-toto-site-page .section-visual img,
  .basketball-toto-site-page .hero-visual img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .basketball-toto-site-page .flow-cards,
  .basketball-toto-site-page .before-after {
    grid-template-columns: 1fr;
  }

  .basketball-toto-site-page .home-toc {
    max-width: 100%;
    overflow: hidden;
    padding-left: 18px;
    padding-right: 18px;
  }

  .basketball-toto-site-page .home-toc a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 1.35;
  }

  .basketball-toto-site-page .content-check-list li,
  .basketball-toto-site-page .compare-table span,
  .basketball-toto-site-page .flow-cards p,
  .basketball-toto-site-page .before-after p,
  .basketball-toto-site-page .insight-box p,
  .basketball-toto-site-page .scenario-box p,
  .basketball-toto-site-page .summary-box p,
  .basketball-toto-site-page .faq-accordion p {
    font-size: 16px;
    line-height: 1.65;
  }
}

@media (max-width: 520px) {
  .basketball-toto-site-page main,
  .basketball-toto-site-page .site-footer {
    width: min(100% - 44px, 1280px);
  }

  .basketball-toto-site-page .page-breadcrumb {
    display: block;
    width: min(100% - 44px, 1280px);
    font-size: 13px;
    line-height: 1.6;
    overflow-wrap: anywhere;
  }

  .basketball-toto-site-page .page-breadcrumb span {
    display: inline-block;
    margin: 0 5px;
  }

  .basketball-toto-site-page .page-breadcrumb a,
  .basketball-toto-site-page .page-breadcrumb strong {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .basketball-toto-site-page .visual-hero {
    width: min(100% - 56px, 1280px);
    padding: 36px 0 44px;
  }

  .basketball-toto-site-page .hero h1 {
    font-size: clamp(25px, 7.4vw, 34px);
    line-height: 1.18;
    letter-spacing: -0.04em;
  }

  .basketball-toto-site-page .home-toc a {
    width: 100%;
  }

  .basketball-toto-site-page .content-section,
  .basketball-toto-site-page .home-content {
    overflow-wrap: break-word;
  }

  .basketball-toto-site-page .content-section h2 {
    font-size: clamp(24px, 7.2vw, 32px);
    line-height: 1.22;
    letter-spacing: -0.035em;
    word-break: keep-all;
  }

  .basketball-toto-site-page .content-section h3,
  .basketball-toto-site-page .faq-accordion summary {
    font-size: clamp(18px, 5.2vw, 22px);
    line-height: 1.45;
    word-break: keep-all;
  }

  .basketball-toto-site-page .compare-table span {
    display: block;
  }

  .basketball-toto-site-page .compare-table span:nth-child(1)::before { content: "확인 구간"; }
  .basketball-toto-site-page .compare-table span:nth-child(2)::before { content: "단순 판단"; }
  .basketball-toto-site-page .compare-table span:nth-child(3)::before { content: "토토백 판단"; }

  .basketball-toto-site-page .compare-table span::before {
    display: block;
    margin-bottom: 6px;
  }

  .basketball-toto-site-page .content-check-list li,
  .basketball-toto-site-page .compare-table span,
  .basketball-toto-site-page .flow-cards article,
  .basketball-toto-site-page .before-after article,
  .basketball-toto-site-page .insight-box,
  .basketball-toto-site-page .scenario-box,
  .basketball-toto-site-page .summary-box {
    padding-left: 18px;
    padding-right: 18px;
  }

  .basketball-toto-site-page .content-check-list li {
    padding-left: 44px;
  }

  .basketball-toto-site-page .faq-accordion summary {
    min-height: 48px;
  }

  .basketball-toto-site-page .back-to-top {
    display: none;
  }
}
/* Volleyball toto mobile optimization */
@media (max-width: 860px) {
  .volleyball-toto-site-page,
  .volleyball-toto-site-page .visual-hero,
  .volleyball-toto-site-page .visual-hero-content,
  .volleyball-toto-site-page .hero-visual,
  .volleyball-toto-site-page .content-section,
  .volleyball-toto-site-page .home-content,
  .volleyball-toto-site-page .home-toc {
    box-sizing: border-box;
    min-width: 0;
  }

  .volleyball-toto-site-page {
    overflow-x: hidden;
  }

  .volleyball-toto-site-page .visual-hero {
    width: min(100% - 28px, 1280px);
    overflow: hidden;
  }

  .volleyball-toto-site-page .visual-hero-content {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .volleyball-toto-site-page .hero h1 {
    display: block;
    max-width: 100%;
    font-size: clamp(27px, 7.6vw, 36px);
    line-height: 1.18;
    letter-spacing: -0.045em;
    word-break: normal;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .volleyball-toto-site-page .hero-copy,
  .volleyball-toto-site-page .content-section p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.72;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .volleyball-toto-site-page .section-visual,
  .volleyball-toto-site-page .hero-visual {
    box-sizing: border-box;
    width: min(100% - 8px, 640px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .volleyball-toto-site-page .section-visual img,
  .volleyball-toto-site-page .hero-visual img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .volleyball-toto-site-page .flow-cards,
  .volleyball-toto-site-page .before-after {
    grid-template-columns: 1fr;
  }

  .volleyball-toto-site-page .home-toc {
    max-width: 100%;
    overflow: hidden;
    padding-left: 18px;
    padding-right: 18px;
  }

  .volleyball-toto-site-page .home-toc a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 1.35;
  }

  .volleyball-toto-site-page .content-check-list li,
  .volleyball-toto-site-page .compare-table span,
  .volleyball-toto-site-page .flow-cards p,
  .volleyball-toto-site-page .before-after p,
  .volleyball-toto-site-page .insight-box p,
  .volleyball-toto-site-page .scenario-box p,
  .volleyball-toto-site-page .summary-box p,
  .volleyball-toto-site-page .faq-accordion p {
    font-size: 16px;
    line-height: 1.65;
  }
}

@media (max-width: 520px) {
  .volleyball-toto-site-page main,
  .volleyball-toto-site-page .site-footer {
    width: min(100% - 44px, 1280px);
  }

  .volleyball-toto-site-page .page-breadcrumb {
    display: block;
    width: min(100% - 44px, 1280px);
    font-size: 13px;
    line-height: 1.6;
    overflow-wrap: anywhere;
  }

  .volleyball-toto-site-page .page-breadcrumb span {
    display: inline-block;
    margin: 0 5px;
  }

  .volleyball-toto-site-page .page-breadcrumb a,
  .volleyball-toto-site-page .page-breadcrumb strong {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .volleyball-toto-site-page .visual-hero {
    width: min(100% - 56px, 1280px);
    padding: 36px 0 44px;
  }

  .volleyball-toto-site-page .hero h1 {
    font-size: clamp(24px, 6.7vw, 32px);
    line-height: 1.2;
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
  }

  .volleyball-toto-site-page .home-toc a {
    width: 100%;
  }

  .volleyball-toto-site-page .home-content {
    overflow: visible;
    border-radius: 24px;
  }

  .volleyball-toto-site-page .content-section,
  .volleyball-toto-site-page .home-content {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .volleyball-toto-site-page .content-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .volleyball-toto-site-page .section-visual {
    width: 100%;
    max-width: 100%;
  }

  .volleyball-toto-site-page .content-section h2 {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(22px, 6.2vw, 29px);
    line-height: 1.26;
    letter-spacing: -0.025em;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .volleyball-toto-site-page .content-section h3,
  .volleyball-toto-site-page .faq-accordion summary {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(18px, 5.2vw, 22px);
    line-height: 1.45;
    letter-spacing: -0.015em;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .volleyball-toto-site-page .compare-table span {
    display: block;
  }

  .volleyball-toto-site-page .compare-table span:nth-child(1)::before { content: "?뺤씤 ??ぉ"; }
  .volleyball-toto-site-page .compare-table span:nth-child(2)::before { content: "?⑥닚 ?댁꽍"; }
  .volleyball-toto-site-page .compare-table span:nth-child(3)::before { content: "?좏넗諛??댁꽍"; }

  .volleyball-toto-site-page .compare-table span::before {
    display: block;
    margin-bottom: 6px;
  }

  .volleyball-toto-site-page .content-check-list li,
  .volleyball-toto-site-page .compare-table span,
  .volleyball-toto-site-page .flow-cards article,
  .volleyball-toto-site-page .before-after article,
  .volleyball-toto-site-page .insight-box,
  .volleyball-toto-site-page .scenario-box,
  .volleyball-toto-site-page .summary-box {
    padding-left: 18px;
    padding-right: 18px;
  }

  .volleyball-toto-site-page .content-check-list li {
    padding-left: 44px;
  }

  .volleyball-toto-site-page .faq-accordion summary {
    min-height: 48px;
  }

  .volleyball-toto-site-page .back-to-top {
    display: none;
  }
}

