.page-disclaimer {
  position: relative;
  padding: clamp(1.25rem, 3vw, 3rem) 0 clamp(3rem, 6vw, 6rem);
}

.page-disclaimer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, var(--line) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.16;
}

.page-disclaimer > .container {
  position: relative;
  z-index: 1;
}

.page-disclaimer a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0, 191, 255, 0.35);
  transition: color 0.2s ease;
}

.page-disclaimer a:hover {
  color: var(--gold-light);
}

.page-disclaimer__head {
  margin-bottom: 1.75rem;
  padding-top: 0.75rem;
}

.page-disclaimer__head .page-heading__title {
  font-size: clamp(2.2rem, 5.6vw, 4.25rem);
  line-height: 1.05;
  max-width: 12em;
  margin-top: 0.5rem;
}

.page-disclaimer__head .page-heading__meta {
  max-width: 60ch;
  margin-top: 1rem;
  font-size: 1.05rem;
}

.page-disclaimer__manual {
  margin: 0 0 2.5rem;
  padding: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}

.page-disclaimer__manual-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(255, 140, 0, 0.2);
}

.page-disclaimer__manual-cap {
  margin: 0.6rem 0.25rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: right;
  letter-spacing: 0.08em;
}

.page-disclaimer__rulelist {
  display: grid;
  gap: 1.25rem;
}

.rule-section {
  border: 1px solid var(--line);
  background: rgba(26, 26, 36, 0.72);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.rule-section[open] {
  border-color: rgba(255, 140, 0, 0.38);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.rule-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  padding: 1.25rem;
  cursor: pointer;
  list-style: none;
}

.rule-section__head::-webkit-details-marker,
.rule-section__head::marker {
  display: none;
  content: "";
}

.rule-section__head:hover {
  background: linear-gradient(90deg, rgba(255, 140, 0, 0.06), transparent 70%);
}

.rule-section__head:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.rule-section__num {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 2px solid var(--gold);
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  background: transparent;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
  flex-shrink: 0;
}

.rule-section[open] .rule-section__num {
  background: var(--gold);
  color: var(--bg-deep);
}

.rule-section__tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  border: 1px solid var(--line);
  padding: 0.25em 0.6em;
  border-radius: 2px;
}

.rule-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  margin: 0;
  margin-right: auto;
}

.rule-section__toggle {
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 1.25rem;
  line-height: 1;
  background: rgba(255, 140, 0, 0.06);
  border-radius: 50%;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}

.rule-section__toggle::before {
  content: "+";
}

.rule-section[open] .rule-section__toggle {
  transform: rotate(180deg);
  background: rgba(255, 140, 0, 0.14);
}

.rule-section[open] .rule-section__toggle::before {
  content: "−";
}

.rule-section__body {
  padding: 1.25rem 1.25rem 1.75rem;
  border-top: 1px dashed var(--line);
  color: var(--text-main);
}

.rule-section__body p {
  margin: 0 0 0.9rem;
  line-height: 1.8;
}

.rule-section__body p:last-child {
  margin-bottom: 0;
}

.rule-section__lead {
  font-size: 1.02rem;
  color: var(--text-main);
}

.rule-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin: 1rem 0 1.2rem;
}

.rule-section__item {
  padding: 0.9rem 1rem;
  background: rgba(10, 10, 15, 0.35);
  border-left: 2px solid rgba(0, 191, 255, 0.5);
}

.rule-section__item .rule-section__h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  color: var(--text-main);
}

.rule-section__item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.rule-section__alertbox {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 140, 0, 0.55);
  border-left-width: 6px;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), rgba(255, 140, 0, 0.02));
}

.rule-section__alertic {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  flex-shrink: 0;
}

.rule-section__alertbox p {
  margin: 0;
  line-height: 1.75;
}

.rule-section__contacts,
.rule-section__forbidden {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.rule-section--alert {
  border-color: rgba(255, 140, 0, 0.28);
}

.rule-section--alert .rule-section__title {
  color: var(--gold-light);
}

.rule-section__contacts li,
.rule-section__forbidden li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.rule-section__contacts li::before,
.rule-section__forbidden li::before {
  content: "◆";
  position: absolute;
  left: 0.1rem;
  top: 0.1rem;
  font-size: 0.7rem;
  color: var(--gold);
}

.rule-section__forbidden li {
  color: var(--text-main);
}

.page-disclaimer__sealbox {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
  padding: 2rem 1.25rem;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 140, 0, 0.06), transparent 40%), var(--bg-card);
}

.page-disclaimer__seal {
  position: relative;
  width: 142px;
  height: 142px;
  margin: 0 auto;
  border: 3px solid rgba(255, 140, 0, 0.8);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: rotate(-12deg);
  box-shadow: inset 0 0 0 4px rgba(255, 140, 0, 0.12), inset 0 0 0 6px rgba(255, 140, 0, 0.05), 0 10px 30px rgba(255, 140, 0, 0.08);
}

.page-disclaimer__seal::before,
.page-disclaimer__seal::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 140, 0, 0.22);
  border-radius: 50%;
}

.page-disclaimer__seal::before {
  inset: 7px;
}

.page-disclaimer__seal::after {
  inset: 13px;
}

.page-disclaimer__sealtext {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.page-disclaimer__sealnote p {
  color: var(--text-muted);
  line-height: 1.85;
}

.page-disclaimer__seal-title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--text-main);
}

@media (min-width: 640px) {
  .rule-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .rule-section__head {
    padding: 1.4rem 1.5rem;
  }

  .rule-section__body {
    padding: 1.4rem 1.5rem 1.8rem;
  }
}

@media (min-width: 768px) {
  .page-disclaimer__head {
    margin-bottom: 2.25rem;
  }

  .page-disclaimer__sealbox {
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
    padding: 2.5rem 2.5rem;
  }

  .page-disclaimer__seal {
    width: 160px;
    height: 160px;
  }
}

@media (min-width: 1024px) {
  .rule-section__num {
    width: 3rem;
    height: 3rem;
    font-size: 1.3rem;
  }

  .rule-section__head {
    gap: 1rem;
    padding: 1.6rem 1.8rem;
  }

  .rule-section__body {
    padding: 1.6rem 1.8rem 2rem;
  }
}
