
    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      text-align: center;
      padding: 0 1rem;
      background: #ffffff;
      color: #333333;
      position: relative;
      overflow: hidden;
    }
    .warning-icon {
      width: 96px;
      height: 96px;
      color: #ffb74d;
      margin-bottom: 1rem;
      filter: drop-shadow(0 0 5px #ffb74d);
      animation: pulseGlow 2.5s infinite alternate ease-in-out;
    }
    @keyframes pulseGlow {
      0% {
        filter: drop-shadow(0 0 5px #ffb74d);
        transform: scale(1);
      }
      50% {
        filter: drop-shadow(0 0 15px #ffb74d);
        transform: scale(1.05);
      }
      100% {
        filter: drop-shadow(0 0 5px #ffb74d);
        transform: scale(1);
      }
    }
    h1 {
      font-size: 4rem;
      margin: 0;
      color: #ffb74d;
      text-shadow: 0 0 5px #ffb74d;
    }
    h2 {
      margin: 0.5rem 0 1.5rem;
      font-weight: 400;
      font-size: 2rem;
      color: #ff9800;
    }
    p {
      max-width: 400px;
      font-size: 1.1rem;
      line-height: 1.5;
      color: #555555;
    }
 
    .support {
      margin-top: 2rem;
      font-size: 1rem;
      color: #777777;
    }
    .support a {
      color: #1976d2;
      text-decoration: none;
    }
    .support a:hover {
      text-decoration: underline;
    }
    @media (max-width: 480px) {
      body {
        padding: 0 1rem;
        height: auto;
        min-height: 100vh;
      }
      .warning-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 0.75rem;
      }
      h1 {
        font-size: 3rem;
      }
      h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
      }
      p {
        font-size: 1rem;
        max-width: 100%;
      }
      .support {
        font-size: 0.9rem;
      }
    }