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

:root {
  --bg:           #08080b;
  --surface:      #111115;
  --surface2:     #16161b;
  --text:         #e8e8ef;
  --text2:        #b8b8c5;
  --text3:        #8c8c9b;
  --accent:       #ff4d4d;
  --accent-dim:   #d13838;
  --accent-glow:  rgba(255, 77, 77, 0.16);
  --border:       #1e1e26;
  --shadow-hard:  0 10px 38px rgba(0,0,0,0.68);
  --shadow-soft:  0 6px 24px rgba(0,0,0,0.42);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.62;
  font-size: 15.6px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 28px 16px 140px;
  min-height: 100vh;
}

.scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(255,77,77,0.018) 2px,
    rgba(255,77,77,0.018) 4px
  );
  opacity: 0.38;
  z-index: 9999;
}

.header-glitch {
  text-align: center;
  margin: 70px 0 90px;
  position: relative;
}

h1 {
  font-size: clamp(3.4rem, 10vw, 5.8rem);
  font-weight: 100;
  letter-spacing: -0.13em;
  color: var(--accent);
  text-shadow: 0 0 32px var(--accent-glow), 0 0 64px rgba(255,77,77,0.07);
  line-height: 0.9;
}

.arrow {
  color: var(--text3);
  margin: 0 14px;
  font-weight: 300;
}

.subtitle {
  color: var(--accent);
  font-size: clamp(1.05rem, 3.2vw, 1.24rem);
  letter-spacing: 1.5px;
  margin-top: 14px;
  opacity: 0.9;
  font-weight: 300;
}

.mirrors-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto 80px;
}

.mirrors-box,
.status-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.015);
  transition: transform 0.2s ease, box-shadow 0.28s ease;
}

.mirrors-box:hover,
.status-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 52px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,77,77,0.14);
}

.mirrors-title,
.status-title,
.footer-title {
  color: var(--accent);
  font-size: 1.22rem;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.8px;
}

.mirror-link {
  color: var(--accent);
  margin: 14px 0;
  font-size: 1rem;
  word-break: break-all;
  line-height: 1.48;
  text-shadow: 0 0 11px var(--accent-glow);
  transition: color 0.18s ease;
}

.mirror-link:hover {
  color: #ff7a7a;
}

.mirror-note {
  margin-top: 22px;
  color: var(--text3);
  font-size: 0.94rem;
  line-height: 1.55;
}

.status-line {
  margin: 10px 0;
  color: var(--text2);
  font-size: 0.99rem;
}

.status-line.dim {
  color: var(--text3);
}

.image-container.login-big img {
  width: 100%;
  max-width: 960px;
  height: auto;
  display: block;
  margin: 60px auto 90px;
  border-radius: 14px;
  box-shadow: var(--shadow-hard), 0 0 0 1px rgba(255,77,77,0.09);
  transition: transform 0.45s ease;
}

.image-container.login-big img:hover {
  transform: scale(1.01);
}

.floating-note {
  max-width: 760px;
  margin: 0 auto 100px;
  padding: 32px 36px;
  background: var(--surface2);
  border-left: 5px solid var(--accent);
  border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow-soft);
  transform: translateX(-10px) rotate(-0.5deg);
  transition: transform 0.28s ease;
}

.floating-note:hover {
  transform: translateX(-5px) rotate(-0.2deg);
}

.floating-note p {
  color: var(--text2);
  margin: 16px 0;
  font-size: 1.04rem;
}

.collage {
  position: relative;
  min-height: 620px;
  margin: 110px 0 130px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.collage-img {
  position: absolute;
  width: 56%;
  max-width: 640px;
  border-radius: 16px;
  box-shadow: var(--shadow-hard), 0 0 0 1px rgba(255,77,77,0.11);
  background: #000;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

.collage-img:hover {
  transform: scale(1.045) rotate(var(--hover-rot, 0deg)) !important;
  box-shadow: 0 36px 90px rgba(0,0,0,0.75), 0 0 0 2px rgba(255,77,77,0.2);
  z-index: 10;
}

.collage-img.home   { top: 0;    left: 0;    transform: rotate(-5deg) scale(0.93); --hover-rot: -5.8deg; }
.collage-img.market { top: 120px; left: 44%;  transform: rotate(4.5deg)  scale(1.11); --hover-rot: 5.2deg;  }
.collage-img.wallet { top: 300px; left: 2%;   transform: rotate(-2deg)   scale(0.9);  --hover-rot: -2.8deg; }

.ad-banner {
  margin: 130px auto 150px;
  text-align: center;
  max-width: 1140px;
}

.ad-banner img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hard), 0 0 56px var(--accent-glow);
  transition: transform 0.35s ease;
}

.ad-banner img:hover {
  transform: scale(1.006);
}

.review-text {
  max-width: 860px;
  margin: 0 auto 130px;
}

.review-text h1 {
  color: var(--accent);
  font-weight: 300;
  font-size: clamp(2.2rem, 5.5vw, 3rem);
  margin-bottom: 36px;
  letter-spacing: -0.6px;
}

.review-text h2 {
  color: var(--accent);
  font-weight: 350;
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  margin: 54px 0 22px;
  letter-spacing: -0.4px;
}

.review-text ol,
.review-text ul {
  margin: 32px 0 42px 36px;
  color: var(--text2);
}

.review-text li {
  margin: 16px 0;
  position: relative;
  padding-left: 10px;
}

.review-text ul li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: -20px;
  font-size: 1.4rem;
  line-height: 1;
}

.review-text ol {
  list-style: none;
  counter-reset: step;
}

.review-text ol li {
  counter-increment: step;
}

.review-text ol li::before {
  content: counter(step) ".";
  color: var(--accent);
  position: absolute;
  left: -32px;
  font-weight: 600;
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 36px;
  margin: 54px 0;
}

.pros, .cons {
  background: var(--surface2);
  padding: 26px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.pros strong { color: #66ff99; }
.cons strong { color: var(--accent); }

.warning {
  background: rgba(45,12,12,0.58);
  padding: 26px 32px;
  border-left: 6px solid var(--accent);
  margin: 60px 0;
  border-radius: 0 12px 12px 0;
  color: #ffcccc;
  backdrop-filter: blur(5px);
}

.footer-mirrors {
  text-align: center;
  margin-top: 180px;
  padding-top: 70px;
  border-top: 1px solid var(--border);
}

.footer-mirrors .mirror-link {
  font-size: 0.98rem;
  margin: 16px 0;
}

.tiny {
  margin-top: 70px;
  color: var(--text3);
  font-size: 0.86rem;
  letter-spacing: 0.5px;
}