* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      background: #0a0a0a;
      color: #fff;
      font-family: 'Inter', sans-serif;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
    }
    .pause-container {
      text-align: center;
      max-width: 700px;
    }
    .pause-icon {
      font-size: 5rem;
      color: #F44336;
      margin-bottom: 1.5rem;
      opacity: 0.9;
      animation: subtlePulse 2s infinite ease-in-out;
    }
    h1 {
      font-size: clamp(2.5rem, 8vw, 4rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #fff 0%, #e0e0e0 80%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    p {
      font-size: 1.2rem;
      line-height: 1.6;
      color: #b0b0b0;
      margin-bottom: 2rem;
    }
    .small-note {
      font-size: 0.95rem;
      color: #666;
      border-top: 1px solid #222;
      padding-top: 2rem;
      margin-top: 2rem;
    }
    @keyframes subtlePulse {
      0% { transform: scale(1); opacity: 0.8; }
      50% { transform: scale(1.05); opacity: 1; }
      100% { transform: scale(1); opacity: 0.8; }
    }
    /* optional overrides for a very clean look */
    a, button, .floating-nav, section, footer {
      display: none;  /* hide any potential leftover elements (none exist in body now) */
    }