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

  body {
    background: #0a0a0f;
    color: #e8e6e1;
    font-family: 'Roboto Mono', monospace;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .container { text-align: center; }

  .countdown {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
  }

  .cycle-info {
    font-size: 0.75rem;
    color: #6b6a66;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
  }

  .dots-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    min-height: 30px;
    max-width: 400px;
    margin: 0 auto;
  }

  .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 12px #fff, 0 0 30px #ffffff33;
    animation: dotAppear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  @keyframes dotAppear {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.4); }
    100% { transform: scale(1); opacity: 1; }
  }


  /* bottom footer */

  .footernormal {
    position: inherit;
  }

  .footerscroll {
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .bottomfooter {
    height: 30px;
    background: #000;
    width: 100%;
    letter-spacing: 0.05em;
    display: block;
    bottom: 0;
    width: 100%;
    overflow: hidden;
  }

  .bottomfooter ul {
    margin: 0 10px 0 10px;
    padding: 0;
  }

  .bottomfooter ul li {
    list-style-type: none;
    display: inline-block;
    padding-right: 5px;
    text-decoration: none;
    font-size: 11px;
    color: #6b6a66;
    outline-style: none;
    font-weight: 400;
  }

  .bottomfooter ul li a {
    text-decoration: none;
    font-size: 11px;
    color: #6b6a66;
    outline-style: none;
  }

  .bottomfooter ul li a:hover {
    opacity: 0.8;
  }
