html {
  box-sizing: border-box;
  background-color: #131416;
}

*,
*::after,
*::before {
  box-sizing: inherit;
  color: #fff;
  font-family: "Exo", sans-serif;
  font-size: 0.96rem;
}

#stars-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

body {
  min-height: 100vh; 
  margin: 0;
  padding: 8px;
}

a {
  text-decoration: none;
  /* Убирает подчеркивание */
}


.exo-<uniquifier> {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

a:focus {
  outline: none;
  /* Убирает стандартную обводку */
  -webkit-tap-highlight-color: transparent;
  /* Убирает синий квадрат на мобильных устройствах */

}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.logo-img {
  width: 39px;
  height: 39px;
}

.header__inner {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  text-align: center;
  align-items: center;
}

.nav {
  margin-left: 10px;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.07);
  /* лёгкая прозрачность */
  backdrop-filter: blur(10px);
  /* размытие фона за кнопкой */
  -webkit-backdrop-filter: blur(10px);
  /* для Safari */

  color: white;
  /* цвет текста */
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.index {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
    url(../images/main.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  padding-bottom: 50px;
}

.main__btn{
  display: flex;
  height: 80vh;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  text-align: center;
}

.main-btn {
  z-index: 10;
  padding: 20px 30px;
  border-radius: 30px;
  /* Эффект прозрачного стекла */
  background-color: rgba(255, 255, 255, 0.03);
  /* лёгкая прозрачность */
  backdrop-filter: blur(10px);
  /* размытие фона за кнопкой */
  -webkit-backdrop-filter: blur(10px);
  /* для Safari */

  color: white;
  /* цвет текста */
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  border: rgba(255, 255, 255, 0.2) 1px solid;
}

.main-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.help__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.card {
  width: 400px;
  margin-top: 150px;
  padding: 20px 40px;
  background-color: rgba(255, 255, 255, 0.03);
  /* лёгкая прозрачность */
  backdrop-filter: blur(10px);
  /* размытие фона за кнопкой */
  -webkit-backdrop-filter: blur(10px);
  /* для Safari */

  color: white;
  /* цвет текста */
  border-radius: 50px;
  margin-bottom: 30px;
}

.help__text {
  display: flex;
}


.copy-btn {
  width: 15px;
  height: 15px;
}

.help__subtitle {
  font-size: 25px;
}

.copy-button {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  display: flex;
  text-align: center;
  align-items: center;
  margin-left: 10px;
  border-radius: 5px;
  cursor: pointer;
}


.boosty-btn {
  display: inline-block;
  text-align: center;
  align-items: center;
  padding: 20px 40px;
  background-color: rgba(255, 255, 255, 0.03);
  /* лёгкая прозрачность */
  backdrop-filter: blur(10px);
  /* размытие фона за кнопкой */
  -webkit-backdrop-filter: blur(10px);
  /* для Safari */

  color: white;
  /* цвет текста */
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.boosty-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

#copy-notice {
  position: fixed;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 30px;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border-radius: 20px;
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
}

#copy-notice.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.boosty-img {
  width: 100px;
}

.command__inner{
  margin-bottom: 50px;
}


.title{
  font-size: 1.4rem;
  margin-top: 50px;
}

@media(max-width:450px) {
  .card {
    width: 320px;
  }

}

@media(max-width:320px) {
  .card {
    width: 280px;
  }

}