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

html, body {
  height: 100%;
  background: #0a0a0c;
  color: #6e6e78;
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.48;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.canvas {
  min-height: 100vh;
  padding: 5.5vh 6.5vw;
  background: linear-gradient(180deg, #0a0a0c 0%, #0f0f14 100%);
  position: relative;
  isolation: isolate;
}

.brand {
  font-size: clamp(4.2rem, 9vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -0.085em;
  color: #ffffff;
  opacity: 0.91;
  text-shadow: 0 0 40px rgba(255,80,80,0.08);
}

.echo {
  color: #ff5050;
  opacity: 0.72;
}

.verified {
  margin: 0.6rem 0 3.5rem;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  letter-spacing: 0.08em;
  color: #3a3a44;
  text-transform: uppercase;
}

.intro-section h1,
.content-block h2 {
  color: #ffffff;
  font-size: clamp(1.9rem, 4.5vw, 2.55rem);
  font-weight: 700;
  margin-bottom: 1.15rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 20px rgba(255,80,80,0.07);
}

.intro-section p,
.content-block p {
  margin-bottom: 1.4rem;
  font-size: clamp(1.05rem, 2.3vw, 1.18rem);
  color: #8a8a98;
}

strong {
  color: #ff5a5a;
  font-weight: 600;
}

ul {
  list-style: none;
  margin: 1.4rem 0;
}

ul li {
  margin-bottom: 0.85rem;
  position: relative;
  padding-left: 1.8rem;
  color: #8a8a98;
}

ul li:before {
  content: "▸";
  color: #ff505055;
  position: absolute;
  left: 0;
  font-size: 1.1rem;
}

.viewport {
  position: absolute;
  inset: 19% 6.5% 27% 6.5%;
  background: #000000;
  border: 1px solid rgba(255,80,80,0.11);
  box-shadow: 
    0 0 100px rgba(255,80,80,0.06),
    inset 0 0 80px rgba(0,0,0,0.95);
  clip-path: polygon(0% 10%, 100% 0%, 100% 86%, 90% 100%, 32% 100%, 16% 90%, 0% 74%);
  overflow: hidden;
  will-change: transform;
}

.viewport-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity;
}

.screen:nth-child(1) {
  opacity: 1;
}

.mirrors {
  position: fixed;
  right: 5.2vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(1.8rem, 4vw, 2.25rem);
  letter-spacing: 0.48em;
  color: rgba(255,80,80,0.22);
  z-index: 10;
  will-change: transform;
}

.mirrors-title {
  color: rgba(255,80,80,0.55);
  font-size: 1.15rem;
  letter-spacing: 0.65em;
  margin-bottom: 1.6rem;
  writing-mode: horizontal-tb;
  transform: rotate(180deg);
  text-transform: uppercase;
}

.mirrors a {
  color: rgba(255,80,80,0.65);
  text-decoration: none;
  transition: all 0.35s ease;
  word-break: break-all;
  max-width: 30vw;
  opacity: 0.82;
}

.mirrors a:hover {
  color: #ff5050;
  opacity: 1;
  text-shadow: 0 0 16px rgba(255,80,80,0.45);
  transform: translateX(-4px);
}

.content-block {
  margin: 5rem 0;
  max-width: 820px;
}

.features .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.2rem;
  margin-top: 2.4rem;
}

.feature-grid h3 {
  color: #ff5050;
  font-size: 1.38rem;
  margin-bottom: 0.9rem;
  font-weight: 600;
}

.feature-grid p {
  color: #7e7e8c;
}

.conclusion {
  border-top: 1px solid rgba(255,80,80,0.09);
  padding-top: 3.5rem;
}

.final-note {
  margin-top: 2.4rem;
  font-size: 1.02rem;
  color: #4a4a56;
  font-style: italic;
}

.ad-fragment {
  position: fixed;
  bottom: -0.5vh;
  left: -12vw;
  width: 1060px;
  height: 128px;
  transform: rotate(-7.5deg) translateY(12%);
  opacity: 0.21;
  filter: brightness(0.84) contrast(1.14) saturate(1.05);
  pointer-events: none;
  z-index: 2;
  will-change: transform, opacity;
}

.ad-fragment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: crisp-edges;
}

@media (max-width: 1100px) {
  .canvas { padding: 5vh 5vw; }
  .viewport { inset: 17% 4% 31% 4%; }
  .mirrors { right: 3.5vw; font-size: clamp(1.6rem, 3.8vw, 2rem); gap: 1.9rem; }
  .ad-fragment { transform: rotate(-10deg) scale(0.78) translate(-18%, 22%); }
}

@media (max-width: 768px) {
  .brand { font-size: clamp(3.4rem, 12vw, 4.6rem); }
  .verified { font-size: 0.98rem; }
  .intro-section h1,
  .content-block h2 { font-size: 2rem; }
  .mirrors { right: 4vw; gap: 1.6rem; font-size: 1.75rem; }
}

h1, h2, h3 {
  color: #ffffff;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.1rem;
  text-shadow: 0 1px 8px rgba(255,80,80,0.06);
}

h1 {
  font-size: clamp(2.1rem, 5.5vw, 2.9rem);
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(1.75rem, 4.2vw, 2.15rem);
  border-bottom: 1px solid rgba(255,80,80,0.08);
  padding-bottom: 0.5rem;
}

h3 {
  font-size: clamp(1.35rem, 3.2vw, 1.55rem);
  color: #ff5858;
}

p {
  margin-bottom: 1.35rem;
  color: #8c8c9a;
  font-size: clamp(1.02rem, 2.1vw, 1.16rem);
}

strong {
  color: #ff6060;
  font-weight: 600;
}

a:not(.mirrors a) {
  color: #ff7070;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.25s ease;
}

a:not(.mirrors a):hover {
  color: #ff9090;
}

ol, ul {
  margin: 1.3rem 0 1.3rem 1.4rem;
  padding-left: 0.8rem;
}

ol li, ul li {
  margin-bottom: 0.75rem;
  color: #8c8c9a;
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.4rem;
  margin-top: 2rem;
}

.pros h3, .cons h3 {
  font-size: 1.32rem;
  margin-bottom: 1rem;
  color: #ff7070;
}

.pros ul li:before {
  content: "✔";
  color: #ff505066;
  margin-right: 0.6rem;
  font-size: 1.1rem;
}

.cons ul li:before {
  content: "−";
  color: #ff505066;
  margin-right: 0.6rem;
  font-size: 1.2rem;
}

.content-block {
  background: rgba(15,15,20,0.35);
  padding: 2.2rem 2.4rem;
  border-radius: 6px;
  border: 1px solid rgba(255,80,80,0.06);
  margin: 4.5rem 0;
  backdrop-filter: blur(4px);
}

.intro-section {
  background: linear-gradient(to bottom, rgba(20,0,0,0.12), transparent);
  padding: 1.8rem 0 2.8rem;
  margin-bottom: 3rem;
}

.conclusion {
  background: rgba(20,0,0,0.18);
  padding: 2.8rem 2.4rem;
  border-left: 4px solid #ff505044;
}

.final-note {
  font-size: 0.98rem;
  color: #5a5a68;
  font-style: italic;
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,80,80,0.05);
}

.mirrors a {
  transition: all 0.3s ease;
  line-height: 1.3;
}

.mirrors a:hover {
  transform: translateX(-6px);
  letter-spacing: 0.02em;
}

.verified {
  font-family: system-ui, sans-serif;
  letter-spacing: 0.12em;
  font-weight: 500;
}

@media (max-width: 900px) {
  .content-block {
    padding: 1.8rem 1.6rem;
  }
  .pros-cons {
    gap: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

.mirrors-section {
  margin: 5rem 0 6rem;
  padding: 3rem 2.5rem;
  background: rgba(15, 15, 20, 0.4);
  border: 1px solid rgba(255, 80, 80, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.mirrors-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,80,80,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.mirrors-section h2 {
  text-align: center;
  margin-bottom: 2.2rem;
  font-size: clamp(1.9rem, 4.5vw, 2.4rem);
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255,80,80,0.15);
  letter-spacing: -0.02em;
}

.mirrors-section .mirrors-title {
  text-align: center;
  font-size: 1.25rem;
  letter-spacing: 0.4em;
  color: rgba(255,80,80,0.7);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  font-weight: 500;
}

.mirrors-section .mirrors {
  position: static;
  transform: none;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  font-size: clamp(1.3rem, 2.8vw, 1.65rem);
  letter-spacing: 0.12em;
  max-width: 100%;
}

.mirrors-section .mirrors a {
  color: #ff7070;
  text-decoration: none;
  word-break: break-all;
  text-align: center;
  padding: 1rem 1.5rem;
  width: 100%;
  max-width: 680px;
  background: rgba(255,80,80,0.03);
  border: 1px solid rgba(255,80,80,0.15);
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.4;
}

.mirrors-section .mirrors a:hover {
  background: rgba(255,80,80,0.12);
  border-color: rgba(255,80,80,0.4);
  color: #ffffff;
  box-shadow: 0 0 25px rgba(255,80,80,0.18);
  transform: translateY(-2px);
}

.mirrors-section .warning {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.05rem;
  color: #ff9a9a;
  line-height: 1.5;
  padding: 1.2rem;
  background: rgba(255,80,80,0.06);
  border: 1px solid rgba(255,80,80,0.2);
  border-radius: 6px;
}

.mirrors-section .warning strong {
  color: #ff6060;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 900px) {
  .mirrors-section {
    padding: 2.5rem 1.8rem;
    margin: 4rem 0 5rem;
  }

  .mirrors-section .mirrors {
    gap: 1.4rem;
    font-size: 1.35rem;
  }

  .mirrors-section .mirrors a {
    padding: 0.9rem 1.2rem;
  }
}

@media (max-width: 600px) {
  .mirrors-section h2 {
    font-size: 1.95rem;
  }

  .mirrors-section .mirrors-title {
    font-size: 1.05rem;
    letter-spacing: 0.3em;
  }
}