body {
      margin: 0;
      font-family: monospace;
      background-color: #fdfcf9;
      background: #fdfcf9;
      color: #222;
      line-height: 1.6;
    }

    .progress-bar-container {
      background-color: #ccc;
      height: 4px;
      width: 100%;
    }

    .section #countdown-text {
        font-size: 24px;
    }

    @media (max-width: 768px) {
      .section #countdown-text {
        font-size: 16px;
      }
    }


    .progress-bar {
      background-color: #222;
      height: 100%;
      width: 0%;
      transition: width 1s linear;
    }

    header {
      padding: 3rem 1rem;
      text-align: center;
    }

    header p {
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    h1 {
      font-size: 2rem;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    header .logo {
      width: 100px;
      height: 100px;
      object-fit: contain;
    }

    .btn {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      border: 2px solid #222;
      text-decoration: none;
      color: #222;
      font-weight: bold;
      margin-top: 1rem;
    }

    .section {
      padding: 2rem 1rem;
      max-width: 800px;
      margin: 0 auto;
    }

    .section h2 {
      font-size: 1.25rem;
      margin-bottom: 1rem;
      text-transform: uppercase;
    }

    .how-it-works {
      display: flex;
      align-items: start;
      justify-content: space-between;
    }

    .how-it-works .left {
      text-align: left;
    }

    .how-it-works .right {
      text-align: right;
    }

    @media (max-width: 768px) {
      .how-it-works {
        display: block;
      }
      .how-it-works .right {
        text-align: left;
        margin-top: 42px;
      }
    }

    .faq p, .how-it-works p {
      margin: 0.5rem 0;
    }

    footer {
      text-align: center;
      padding: 2rem 1rem;
      font-size: 0.9rem;
      color: #777;
    }

    .socials {
      margin-top: 2rem;
    }

    .socials a {
      margin: 0 0.5rem;
      text-decoration: none;
      color: #222;
      font-weight: bold;
    }

    .btn.disabled {
      pointer-events: none;
      opacity: 0.5;
      cursor: default;
      display: inline-block;
      user-select: none;
    }

    .btn.link {
      border: none;
    }

    .tooltip {
      position: relative;
      display: inline-block;
    }

    .tooltip::after {
      content: attr(data-tooltip);
      position: absolute;
      top: -22px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #333;
      color: #fff;
      padding: 6px 10px;
      font-size: 0.75rem;
      white-space: nowrap;
      border-radius: 4px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 10;
    }

    .tooltip:hover::after {
      opacity: 1;
    }

    @media (min-width: 768px) {
      h1 {
        font-size: 3rem;
      }
    }