body {
    background: linear-gradient(135deg, #363737ff 0%, #4f5051ff 100%);
    color: #d1d5db;
    font-family: 'Share Tech Mono', monospace;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    text-shadow: none;
  }
  h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    border-bottom: 1px solid #444;
    padding-bottom: 0.3em;
    color: #e5e7eb;
    filter: none;
    text-shadow: none;
  }
  #count {
    color: #7dd3fc;
    font-size: 1.3em;
    font-weight: bold;
    margin-left: 0.5em;
    letter-spacing: 2px;
    text-shadow: none;
  }
  #startContainer {
    margin: 1em 0;
    min-height: 32px;
  }
  #startText {
    color: #a3e635;
    font-family: 'Share Tech Mono', monospace;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    animation: none;
    text-shadow: none;
  }
  #clickBtn {
    background: linear-gradient(90deg, #375138ff 0%, #3ca862ff 100%);
    color: #e5e7eb;
    border: none;
    border-radius: 6px;
    padding: 0.8em 1.6em;
    font-size: 1em;
    font-family: 'Share Tech Mono', monospace;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px #2223;
    transition: background 0.2s, color 0.2s;
    margin-top: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  #clickBtn:disabled {
    background: #444;
    color: #a3e635;
    cursor: not-allowed;
    opacity: 0.7;
    text-shadow: none;
  }