    * {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      width: 100%;
      min-height: 100%;
      background: #020202;
      color: #fff;
      font-family: Arial, Helvetica, sans-serif;
      overflow: hidden;
    }

    body {
      display: flex;
      align-items: center;
      justify-content: center;
      background:
        radial-gradient(circle at center, rgba(255,0,0,.18), transparent 35%),
        radial-gradient(circle at top, rgba(90,0,0,.35), transparent 45%),
        linear-gradient(180deg, #050505, #000);
      animation: bodyBreath 4s ease-in-out infinite;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        repeating-linear-gradient(
          to bottom,
          rgba(255,255,255,.025) 0px,
          rgba(255,255,255,.025) 1px,
          transparent 2px,
          transparent 5px
        );
      opacity: .28;
      pointer-events: none;
      animation: scanLines 7s linear infinite;
    }

    body::after {
      content: "";
      position: fixed;
      inset: -20%;
      background:
        radial-gradient(circle, transparent 42%, rgba(0,0,0,.85) 78%);
      pointer-events: none;
      animation: vignettePulse 3.6s ease-in-out infinite;
    }

    .warning-screen {
      width: 92%;
      max-width: 820px;
      padding: 38px 26px;
      text-align: center;
      border: 1px solid rgba(255,0,0,.48);
      border-radius: 20px;
      background: rgba(8, 0, 0, .82);
      box-shadow:
        0 0 35px rgba(255,0,0,.35),
        0 0 90px rgba(120,0,0,.22),
        inset 0 0 45px rgba(255,0,0,.12);
      position: relative;
      z-index: 2;
      overflow: hidden;
      animation: cardEnter .9s ease-out both, cardBreath 2.8s ease-in-out infinite .9s;
    }

    .warning-screen::before {
      content: "";
      position: absolute;
      inset: -2px;
      border-radius: 20px;
      background: linear-gradient(120deg, transparent, rgba(255,0,0,.75), transparent);
      z-index: -1;
      filter: blur(15px);
      animation: borderSweep 3.2s ease-in-out infinite;
    }

    .warning-screen::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(255,0,0,.14), transparent 58%);
      opacity: .5;
      pointer-events: none;
      animation: innerFog 5s ease-in-out infinite;
    }

    .icon {
      font-size: 74px;
      margin-bottom: 12px;
      filter: drop-shadow(0 0 18px rgba(255,0,0,.8));
      animation: iconFloat 2.4s ease-in-out infinite, iconFear 5s ease-in-out infinite;
    }

    h1 {
      margin: 0 0 14px;
      color: #ff2525;
      font-size: clamp(30px, 6vw, 62px);
      letter-spacing: 3px;
      text-transform: uppercase;
      text-shadow:
        0 0 12px rgba(255,0,0,.95),
        0 0 32px rgba(255,0,0,.55);
    }

    .subtitle {
      margin: 0 auto 24px;
      max-width: 680px;
      color: #ffd6d6;
      font-size: clamp(16px, 2.5vw, 22px);
      line-height: 1.7;
      animation: fadeUp 1s ease both .25s;
    }

    .status-box {
      margin: 24px auto 0;
      padding: 18px;
      max-width: 620px;
      border: 1px dashed rgba(255, 80, 80, .75);
      background: rgba(0,0,0,.48);
      color: #ffbaba;
      font-size: 15px;
      line-height: 1.8;
      text-align: left;
      border-radius: 12px;
      box-shadow: inset 0 0 22px rgba(255,0,0,.08);
      animation: fadeUp 1s ease both .45s;
    }

    .status-line {
      opacity: 0;
      transform: translateY(8px);
      animation: lineReveal .7s ease forwards;
    }

    .status-line:nth-child(1) { animation-delay: .65s; }
    .status-line:nth-child(2) { animation-delay: .82s; }
    .status-line:nth-child(3) { animation-delay: .99s; }
    .status-line:nth-child(4) { animation-delay: 1.16s; }

    .status-line::before {
  content: "\25CF\00A0";
  color: #ff2525;
  text-shadow: 0 0 10px rgba(255,0,0,.9);
    }

    .small {
      margin-top: 22px;
      color: #aaa;
      font-size: 13px;
      line-height: 1.6;
      animation: fadeUp 1s ease both 1.25s;
    }

    .glitch {
      position: relative;
      display: inline-block;
      animation: glitchSoft 2.4s infinite;
    }

    .glitch::before,
    .glitch::after {
      content: attr(data-text);
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      overflow: hidden;
      color: #ff2525;
      background: transparent;
      clip-path: inset(0 0 0 0);
      pointer-events: none;
    }

    .glitch::before {
      transform: translate(2px, -1px);
      opacity: .45;
      text-shadow: -2px 0 rgba(0,255,255,.45);
      animation: glitchOne 1.8s infinite linear alternate-reverse;
    }

    .glitch::after {
      transform: translate(-2px, 1px);
      opacity: .35;
      text-shadow: 2px 0 rgba(255,0,120,.45);
      animation: glitchTwo 2.1s infinite linear alternate-reverse;
    }

    @keyframes bodyBreath {
      0%, 100% { filter: brightness(1); }
      50% { filter: brightness(.78); }
    }

    @keyframes scanLines {
      from { transform: translateY(-20px); }
      to { transform: translateY(20px); }
    }

    @keyframes vignettePulse {
      0%, 100% { opacity: .75; transform: scale(1); }
      50% { opacity: .95; transform: scale(1.04); }
    }

    @keyframes cardEnter {
      from {
        opacity: 0;
        transform: translateY(18px) scale(.96);
        filter: blur(8px);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
      }
    }

    @keyframes cardBreath {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.012); }
    }

    @keyframes borderSweep {
      0%, 100% { transform: translateX(-35%) rotate(0deg); opacity: .35; }
      50% { transform: translateX(35%) rotate(2deg); opacity: .9; }
    }

    @keyframes innerFog {
      0%, 100% { opacity: .25; transform: scale(1); }
      50% { opacity: .55; transform: scale(1.08); }
    }

    @keyframes iconFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    @keyframes iconFear {
      0%, 92%, 100% { filter: drop-shadow(0 0 18px rgba(255,0,0,.8)); }
      94% { transform: translateX(-2px) scale(1.04); }
      96% { transform: translateX(2px) scale(.98); }
      98% { transform: translateX(-1px) scale(1.02); }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(14px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes lineReveal {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes glitchSoft {
      0%, 88%, 100% { transform: translate(0); }
      90% { transform: translate(1px, -1px); }
      92% { transform: translate(-2px, 1px); }
      94% { transform: translate(2px, 0); }
      96% { transform: translate(-1px, -1px); }
    }

    @keyframes glitchOne {
      0% { clip-path: inset(0 0 84% 0); }
      25% { clip-path: inset(22% 0 50% 0); }
      50% { clip-path: inset(62% 0 12% 0); }
      75% { clip-path: inset(12% 0 68% 0); }
      100% { clip-path: inset(38% 0 36% 0); }
    }

    @keyframes glitchTwo {
      0% { clip-path: inset(72% 0 12% 0); }
      25% { clip-path: inset(18% 0 72% 0); }
      50% { clip-path: inset(44% 0 38% 0); }
      75% { clip-path: inset(76% 0 6% 0); }
      100% { clip-path: inset(8% 0 82% 0); }
    }

    @media (max-width: 600px) {
      .warning-screen {
        padding: 30px 18px;
      }

      .icon {
        font-size: 56px;
      }

      .status-box {
        font-size: 13px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation: none !important;
      }
    }

html, body {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  min-height: 100svh;
  padding: 18px;
}

.warning-screen {
  width: min(92vw, 820px);
  max-height: calc(100svh - 36px);
  overflow-y: auto;
  padding: clamp(24px, 5vw, 38px) clamp(16px, 4vw, 26px);
  border-radius: clamp(16px, 4vw, 20px);
}

.icon {
  font-size: clamp(48px, 14vw, 74px);
  margin-bottom: clamp(8px, 2vw, 12px);
}

h1 {
  font-size: clamp(26px, 9vw, 62px);
  letter-spacing: clamp(1px, .8vw, 3px);
  line-height: 1.1;
}

.subtitle {
  font-size: clamp(14px, 4vw, 22px);
  line-height: 1.65;
  margin-bottom: clamp(18px, 4vw, 24px);
}

.status-box {
  margin-top: clamp(18px, 4vw, 24px);
  padding: clamp(14px, 4vw, 18px);
  font-size: clamp(12.5px, 3.5vw, 15px);
  line-height: 1.75;
  border-radius: 12px;
}

.small {
  margin-top: clamp(16px, 4vw, 22px);
  font-size: clamp(11.5px, 3.2vw, 13px);
}

@media (max-width: 480px) {
  body {
    align-items: flex-start;
    padding-top: 22px;
  }

  .warning-screen {
    width: 100%;
    max-height: none;
  }

  .status-box {
    text-align: left;
  }
}

@media (max-height: 620px) {
  body {
    align-items: flex-start;
    padding-top: 14px;
  }

  .warning-screen {
    max-height: none;
  }

  .icon {
    font-size: 46px;
  }

  .subtitle {
    line-height: 1.55;
  }

  .status-box {
    line-height: 1.55;
  }
}

.return-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:22px;
    padding:14px 28px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    font-size:15px;
    letter-spacing:1px;
    color:#ffffff;
    background:linear-gradient(135deg,#7a0000,#ff1a1a);
    border:1px solid rgba(255,0,0,.6);
    box-shadow:
        0 0 18px rgba(255,0,0,.35),
        inset 0 0 12px rgba(255,255,255,.08);
    transition:.3s ease;
    position:relative;
    overflow:hidden;
}

.return-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    transition:.6s;
}

.return-btn:hover{
    transform:translateY(-2px);
    box-shadow:
        0 0 30px rgba(255,0,0,.6),
        inset 0 0 16px rgba(255,255,255,.12);
}

.return-btn:hover::before{
    left:150%;
}

.return-btn:active{
    transform:scale(.98);
}