:root {
  --c-bg: #0b0c15;
  --c-header: #0d101c;
  --c-btn-blue: #0d5492;
  --c-btn-green: #0d7646;
  --c-btn-blue-h: #1166b0;
  --c-btn-green-h: #0f8f56;
  --c-text: #e8eaf0;
  --c-text-muted: #9ba3b8;
  --c-border: #1e2336;
  --c-card: #131726;
  --c-accent: #f0c040;
  --c-accent2: #1de9b6;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --font-main: "Inter", "Open Sans", "Roboto", Arial, sans-serif;
  --trans: 0.22s ease;
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}

body {
  font-family: var(--font-main);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--c-btn-blue);
  text-decoration: none;
  transition: color var(--trans);
}
a:hover {
  color: var(--c-accent);
}

.xw9k2 {
  display: none;
}
.pf3n8 {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.ql7m4 {
  position: absolute;
  left: -9999px;
}

.bq2r5-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.vj8t1-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition:
    background var(--trans),
    transform var(--trans),
    box-shadow var(--trans);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.vj8t1-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.vj8t1-btn:active {
  transform: translateY(0);
}

.btn-blue {
  background: var(--c-btn-blue);
  color: #fff;
}
.btn-blue:hover {
  background: var(--c-btn-blue-h);
  color: #fff;
}
.btn-green {
  background: var(--c-btn-green);
  color: #fff;
}
.btn-green:hover {
  background: var(--c-btn-green-h);
  color: #fff;
}
.btn-accent {
  background: var(--c-accent);
  color: #0b0c15;
}
.btn-accent:hover {
  background: #ffd04e;
  color: #0b0c15;
}

.nh3p7-hdr {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.nh3p7-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nh3p7-logo img {
  height: 44px;
  width: auto;
}
.nh3p7-logo {
  display: flex;
  align-items: center;
}

.nh3p7-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nh3p7-nav a {
  color: var(--c-text-muted);
  font-size: 14px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition:
    color var(--trans),
    background var(--trans);
  font-weight: 500;
}
.nh3p7-nav a:hover {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.06);
}

.nh3p7-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nh3p7-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
  background: rgba(29, 233, 182, 0.08);
  border: 1px solid rgba(29, 233, 182, 0.2);
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
}
.nh3p7-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-accent2);
  animation: k2n9-pulse 1.8s infinite;
}
.nh3p7-online-count {
  color: var(--c-accent2);
  font-weight: 700;
}

@keyframes k2n9-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}

.nh3p7-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nh3p7-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: var(--trans);
}
.nh3p7-burger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nh3p7-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.nh3p7-burger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nh3p7-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 16px;
  border-top: 1px solid var(--c-border);
  background: var(--c-header);
}
.nh3p7-mobile-nav.is-open {
  display: flex;
}
.nh3p7-mobile-nav a {
  color: var(--c-text-muted);
  font-size: 15px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition:
    color var(--trans),
    background var(--trans);
}
.nh3p7-mobile-nav a:hover {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.06);
}

.tk5e2-hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: var(--c-header);
}
.tk5e2-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/ban7b.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.tk5e2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 12, 21, 0.92) 40%,
    rgba(11, 12, 21, 0.3) 100%
  );
}
.tk5e2-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tk5e2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 118, 70, 0.25);
  border: 1px solid var(--c-btn-green);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  color: #5de8a0;
  font-weight: 600;
  width: fit-content;
}
.tk5e2-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5de8a0;
  animation: k2n9-pulse 1.8s infinite;
}
.tk5e2-hero h1 {
  font-size: clamp(26px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  max-width: 600px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}
.tk5e2-hero h1 span {
  color: var(--c-accent);
}
.tk5e2-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--c-text-muted);
  max-width: 520px;
  line-height: 1.6;
}
.tk5e2-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.tk5e2-hero-btns .vj8t1-btn {
  font-size: 15px;
  padding: 13px 28px;
}

.dm6r1-section {
  padding: 60px 20px;
}
.dm6r1-section + .dm6r1-section {
  border-top: 1px solid var(--c-border);
}

.dm6r1-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
  position: relative;
  padding-left: 18px;
}
.dm6r1-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 70%;
  border-radius: 2px;
  background: var(--c-btn-green);
}

.dm6r1-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.rq4n8-tbl-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
}
.rq4n8-tbl {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: var(--c-card);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.rq4n8-tbl td {
  padding: 14px 20px;
  font-size: 14px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
  line-height: 1.6;
}
.rq4n8-tbl tr:last-child td {
  border-bottom: none;
}
.rq4n8-tbl tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.rq4n8-tbl .rq4n8-param {
  color: var(--c-text-muted);
  width: 38%;
  font-weight: 600;
  border-right: 1px solid var(--c-border);
  white-space: nowrap;
}
.rq4n8-tbl .rq4n8-val {
  color: var(--c-text);
}
.rq4n8-tbl .rq4n8-val a {
  color: var(--c-btn-blue);
}

.pm9f3-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pm9f3-card {
  background: var(--c-card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-card);
}
.pm9f3-card-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pm9f3-card-title.plus {
  color: #5de8a0;
}
.pm9f3-card-title.minus {
  color: #ff6b6b;
}
.pm9f3-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pm9f3-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.55;
}
.pm9f3-list li::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  margin-top: 1px;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.pm9f3-list.plus-list li::before {
  background: rgba(93, 232, 160, 0.15);
  border: 1.5px solid #5de8a0;
  content: "✓";
  color: #5de8a0;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pm9f3-list.minus-list li::before {
  background: rgba(255, 107, 107, 0.12);
  border: 1.5px solid #ff6b6b;
  content: "✕";
  color: #ff6b6b;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lm7q2-mirror-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.lm7q2-datetime {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(29, 233, 182, 0.08);
  border: 1px solid rgba(29, 233, 182, 0.2);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
}
.lm7q2-datetime-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-accent2);
  animation: k2n9-pulse 1.8s infinite;
}
.lm7q2-datetime span {
  color: var(--c-accent2);
  font-weight: 700;
}

.lm7q2-tbl-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
}
.lm7q2-tbl {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
  background: var(--c-card);
  border-radius: var(--radius-md);
}
.lm7q2-tbl thead th {
  padding: 14px 18px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-text-muted);
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--c-border);
}
.lm7q2-tbl tbody td {
  padding: 14px 18px;
  font-size: 14px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
}
.lm7q2-tbl tbody tr:last-child td {
  border-bottom: none;
}
.lm7q2-tbl tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.lm7q2-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}
.lm7q2-status.ok {
  background: rgba(93, 232, 160, 0.12);
  color: #5de8a0;
  border: 1px solid rgba(93, 232, 160, 0.3);
}
.lm7q2-tbl .lm7q2-link a {
  color: var(--c-btn-blue);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.lm7q2-tbl .lm7q2-link a:hover {
  color: var(--c-accent);
}

.gw5h8-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gw5h8-slot-card {
  background: var(--c-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--trans),
    box-shadow var(--trans);
  display: flex;
  flex-direction: column;
}
.gw5h8-slot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.gw5h8-slot-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.gw5h8-slot-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gw5h8-slot-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.gw5h8-slot-provider {
  font-size: 12px;
  color: var(--c-text-muted);
}
.gw5h8-slot-btns {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.gw5h8-slot-btns .vj8t1-btn {
  flex: 1;
  font-size: 13px;
  padding: 9px 12px;
}

.jx3f6-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.jx3f6-modal-overlay.is-open {
  display: flex;
}
.jx3f6-modal {
  background: var(--c-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  width: 100%;
  max-width: 920px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
  animation: m4c2-fadein 0.2s ease;
}
@keyframes m4c2-fadein {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jx3f6-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--c-border);
}
.jx3f6-modal-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.jx3f6-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  cursor: pointer;
  color: var(--c-text);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
}
.jx3f6-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
}
.jx3f6-modal-iframe-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 0 0 0 0;
}
.jx3f6-modal-iframe-wrap iframe {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
}
.jx3f6-modal-foot {
  padding: 14px 20px;
  border-top: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.jx3f6-modal-foot span {
  font-size: 13px;
  color: var(--c-text-muted);
}

.wf2k9-wheel-section {
}
.wf2k9-wheel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.wf2k9-canvas-wrap {
  position: relative;
  width: 320px;
  height: 320px;
}
.wf2k9-canvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(13, 84, 146, 0.4);
}
.wf2k9-pointer {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 22px solid var(--c-accent);
  filter: drop-shadow(0 2px 6px rgba(240, 192, 64, 0.6));
}
.wf2k9-spin-btn {
  font-size: 16px;
  padding: 14px 40px;
}
.wf2k9-result {
  text-align: center;
  padding: 24px 32px;
  background: var(--c-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  display: none;
  animation: m4c2-fadein 0.3s ease;
  max-width: 400px;
  width: 100%;
}
.wf2k9-result.is-visible {
  display: block;
}
.wf2k9-result-icon {
  font-size: 48px;
  margin-bottom: 10px;
}
.wf2k9-result-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-accent);
  margin-bottom: 8px;
}
.wf2k9-result-text {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}
.wf2k9-result-loss {
  display: none;
}
.wf2k9-result-loss .wf2k9-result-title {
  color: #ff6b6b;
}

.rv1p4-review-content {
  background: var(--c-card);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--c-border);
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-text);
}
.rv1p4-review-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 28px 0 12px;
}
.rv1p4-review-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-accent);
  margin: 22px 0 10px;
}
.rv1p4-review-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
  margin: 18px 0 8px;
}
.rv1p4-review-content p {
  margin-bottom: 16px;
}
.rv1p4-review-content p:last-child {
  margin-bottom: 0;
}
.rv1p4-review-content ul,
.rv1p4-review-content ol {
  margin: 12px 0 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rv1p4-review-content li {
  line-height: 1.6;
}
.rv1p4-review-content strong {
  color: #fff;
  font-weight: 700;
}
.rv1p4-review-content em {
  color: var(--c-text-muted);
  font-style: italic;
}
.rv1p4-review-content a {
  color: var(--c-btn-blue);
  text-decoration: underline;
}
.rv1p4-review-content a:hover {
  color: var(--c-accent);
}
.rv1p4-review-content table {
  width: auto;
  margin: 20px auto;
  border-collapse: collapse;
  background: var(--c-bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.rv1p4-review-content table td,
.rv1p4-review-content table th {
  padding: 10px 18px;
  text-align: left;
  border: 1px solid var(--c-border);
  font-size: 14px;
}
.rv1p4-review-content table th {
  background: rgba(255, 255, 255, 0.05);
  color: var(--c-text-muted);
  font-weight: 700;
}
.rv1p4-review-content blockquote {
  border-left: 4px solid var(--c-btn-blue);
  padding: 12px 20px;
  margin: 18px 0;
  background: rgba(13, 84, 146, 0.1);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--c-text-muted);
  font-style: italic;
}
.rv1p4-review-content hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 24px 0;
}
.rv1p4-review-content code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
}

.yb6m3-author-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--c-card);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--c-border);
}
.yb6m3-author-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--c-border);
}
.yb6m3-author-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.yb6m3-author-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.yb6m3-author-title {
  font-size: 13px;
  color: var(--c-accent2);
  font-weight: 600;
}
.yb6m3-author-bio {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.65;
  max-width: 560px;
}
.yb6m3-author-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.yb6m3-author-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 84, 146, 0.2);
  border: 1px solid rgba(13, 84, 146, 0.4);
  color: var(--c-btn-blue-h);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  transition:
    background var(--trans),
    color var(--trans);
}
.yb6m3-author-links a:hover {
  background: var(--c-btn-blue);
  color: #fff;
}

.fq5j1-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 40px 20px 24px;
}
.fq5j1-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.fq5j1-footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 32px;
}
.fq5j1-footer-logo img {
  height: 40px;
}
.fq5j1-footer-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.fq5j1-footer-nav a {
  color: var(--c-text-muted);
  font-size: 13px;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  transition: color var(--trans);
}
.fq5j1-footer-nav a:hover {
  color: var(--c-text);
}
.fq5j1-footer-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fq5j1-footer-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.fq5j1-badge-label {
  font-size: 11px;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
}
.fq5j1-badge-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 12px;
  color: var(--c-text-muted);
  font-weight: 600;
}
.fq5j1-footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fq5j1-copyright {
  font-size: 12px;
  color: var(--c-text-muted);
}
.fq5j1-legal {
  font-size: 11px;
  color: rgba(155, 163, 184, 0.6);
  line-height: 1.7;
  max-width: 900px;
}

.nd8r5-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: linear-gradient(90deg, #0a3d22, #0b4a2a);
  border-top: 1px solid rgba(13, 118, 70, 0.6);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}
.nd8r5-widget-text {
  font-size: 14px;
  color: #a8f0c8;
}
.nd8r5-widget-text strong {
  color: #fff;
}
.nd8r5-widget .vj8t1-btn {
  font-size: 14px;
  padding: 10px 24px;
  flex-shrink: 0;
}
.nd8r5-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: color var(--trans);
}
.nd8r5-close:hover {
  color: #fff;
}

.wp-block-separator {
  display: none;
}
.entry-content {
  display: none;
}
.elementor-widget {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.wp-caption {
  display: none;
}
.yoast-breadcrumbs {
  display: none;
}

@media (max-width: 900px) {
  .nh3p7-nav {
    display: none;
  }
  .nh3p7-burger {
    display: flex;
  }
  .nh3p7-inner {
    grid-template-columns: auto 1fr;
  }
  .nh3p7-actions {
    display: flex;
    gap: 8px;
  }
  .pm9f3-proscons {
    grid-template-columns: 1fr;
  }
  .gw5h8-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fq5j1-footer-top {
    grid-template-columns: 1fr;
  }
  .wf2k9-canvas-wrap {
    width: 260px;
    height: 260px;
  }
  .wf2k9-canvas {
    width: 260px !important;
    height: 260px !important;
  }
  .jx3f6-modal-iframe-wrap iframe {
    height: 360px;
  }
}

@media (max-width: 600px) {
  .gw5h8-slots-grid {
    grid-template-columns: 1fr;
  }
  .tk5e2-hero {
    min-height: 340px;
  }
  .yb6m3-author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .yb6m3-author-links {
    justify-content: center;
  }
  .nd8r5-widget {
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
    text-align: center;
  }
  .nd8r5-close {
    top: 10px;
    right: 10px;
    transform: none;
  }
  .nh3p7-actions .vj8t1-btn {
    font-size: 12px;
    padding: 8px 12px;
  }
  .jx3f6-modal-iframe-wrap iframe {
    height: 280px;
  }
  .dm6r1-section {
    padding: 40px 16px;
  }
}

.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
