/* Modal overlay */
    .modal-overlay5 {
      position: fixed;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    /* Modal content */
    .modal5 {
      background-color: #1b1b1b;
      color: white;
      padding: 30px 20px;
      border-radius: 10px;
      width: 90%;
      max-width: 400px;
      text-align: center;
      position: relative;
      box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }

    .modal5 h2 {
      margin-top: 0;
      font-size: 24px;
    }

    /* Close button */
    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 20px;
      color: #fff;
      background: none;
      border: none;
      cursor: pointer;
    }

    /* Steam Log In button */
    .steam-button {
      background-color: #171a21;
      color: white;
      border: none;
      padding: 20px 40px; /* Увеличение размера кнопки */
      font-size: 24px;    /* Увеличение шрифта */
      font-weight: bold;  /* Жирный шрифт */
      border-radius: 5px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 20px;
      margin-top: 20px;
      transition: background 0.3s;
    }

    .steam-button:hover {
      background-color: #2a2f38;
    }

    .steam-button img {
      width: 40px;  /* Увеличение размера логотипа */
      height: 40px; /* Увеличение размера логотипа */
    }

    /* Countdown timer */
    #countdown {
      font-size: 28px;
      color: #ff4500;
      margin-top: 15px;
    }