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

  body {
    font-family: 'Inter', sans-serif;
    background: #080b14;
    color: #e2e8f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .bg-glow {
    position: fixed;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(99, 179, 237, 0.07) 0%, transparent 65%);
    pointer-events: none;
  }

  .card {
    position: relative;
    text-align: center;
    padding: 56px 64px;
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
    min-width: 320px;
  }

  .wordmark {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #68768d;
    margin-bottom: 28px;
  }

  .infinity-symbol {
    font-size: 52px;
    line-height: 1;
    background: linear-gradient(135deg, #63b3ed, #9f7aea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 24px rgba(99, 179, 237, 0.3));
  }

  .version {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #718096;
    margin-bottom: 32px;
    letter-spacing: 0.04em;
  }

  .divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 0 auto 32px;
  }

  .time-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4a5568;
    margin-bottom: 8px;
  }

  .time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 28px;
    font-weight: 400;
    color: #a0aec0;
    letter-spacing: 0.06em;
  }

  .date {
    font-size: 12px;
    color: #4a5568;
    margin-top: 6px;
    letter-spacing: 0.04em;
  }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
