/* ================================
   СБРОС И БАЗОВЫЕ СТИЛИ
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  background: url("assets/background.png") no-repeat center center fixed;
  background-size: cover;
  color: #ffffff;
  overflow-x: hidden;
}

/* ================================
   LOADER (экран загрузки)
================================ */
.loader-wrapper {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  width: 15px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l5 1s infinite linear alternate;
}

@keyframes l5 {
  0%  {box-shadow: 20px 0 #fff, -20px 0 #ffffff22; background: #fff;}
  33% {box-shadow: 20px 0 #fff, -20px 0 #ffffff22; background: #ffffff22;}
  66% {box-shadow: 20px 0 #ffffff22, -20px 0 #fff; background: #ffffff22;}
  100%{box-shadow: 20px 0 #ffffff22, -20px 0 #fff; background: #fff;}
}

/* Скрывается, когда страница загрузилась */
.loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* ================================
   HEADER
================================ */
header {
  background-color: #000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(8px);
}

/* --- Логотип --- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon img {
  width: 150px;
  height: 40px;
  object-fit: contain;
}

/* ================================
   MAIN
================================ */
.main-container {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

/* ================================
   CONTENT BOX
================================ */
.content-box {
  flex-direction: column;
  justify-content: space-between;
  width: 80vw;
  height: 100vh;
  background-color: #2a2a2a;
  border-radius: 20px;
  padding: 80px 60px;
  margin: 10vh auto 1em auto;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* ================================
   ACCOUNT BLOCK
================================ */
.account-block {
  margin-bottom: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: flex-start;
}

/* ================================
   DOTS
================================ */
.dots {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  align-self: flex-start;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4ade80;
}

.dot:nth-child(3) {
  background-color: transparent;
  border: 2px solid #4ade80;
}

/* ================================
   TEXT
================================ */
h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

p {
  font-size: 20px;
  color: #b0b0b0;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 40px;
}

/* ================================
   BUTTON
================================ */
.activate-button {
  align-self: flex-end;
  margin-right: 120px;
  background-color: #c92c34;
  color: #000000;
  font-size: 12px;
  font-weight: 4000;
  padding: 18px 45px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 8, 68, 0.3);
}
.activate-button:active {
  transform: translateY(0);
}
/* ================================
   FOOTER
================================ */
.footer {
  text-align: center;
  font-size: 14px;
  color: #b0b0b0;
  margin-top: 40px;
}

.footer-link {
  color: #ff2b2b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ff5555;
}
/* ================================
   АДАПТИВ
================================ */
/* ================================
   АДАПТИВ
================================ */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  .content-box {
    padding: 40px 20px;
    width: 100vw;
    height: auto;
    margin: 0;
    border-radius: 20px;
    box-shadow: none;
  }

  h1 {
    font-size: 26px;
    text-align: -webkit-auto;
  }

  p {
    font-size: 16px;
    text-align: -webkit-auto;
    max-width: 100%;
  }

  .logo-icon img {
    width: 120px;
    height: auto;
  }
  .activate-button {
    align-items: flex-start;
    margin: 0px 80px 0 0;
    width: 80%;
    font-size: 14px;
    padding: 16px 0;
    border-radius: 10px;
    background-color: #ff3b3b;
    box-shadow: 0 4px 20px rgba(255, 8, 68, 0.4);
  }

  .activate-button:active {
    transform: scale(0.98);
  }

  .account-block {
    align-items: center;
    text-align: center;
    margin-bottom: 100px;
  }

  .dots {
    justify-content: center;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 15px 20px;
  }

  .content-box {
    padding: 40px 20px;
    width: 100vw;
    height: auto;
    margin: 0;
    border-radius: 20px;
    box-shadow: none;
  }

  h1 {
    font-size: 26px;
    text-align: -webkit-auto;
  }

  p {
    font-size: 16px;
    text-align: -webkit-auto;
    max-width: 100%;
  }

  .logo-icon img {
    width: 120px;
    height: auto;
  }
  .activate-button {
    align-items: flex-start;
    margin: 0px 60px 0 0;
    width: 80%;
    font-size: 14px;
    padding: 16px 0;
    border-radius: 10px;
    background-color: #ff3b3b;
    box-shadow: 0 4px 20px rgba(255, 8, 68, 0.4);
  }

  .activate-button:active {
    transform: scale(0.98);
  }

  .account-block {
    align-items: center;
    text-align: center;
    margin-bottom: 100px;
  }

  .dots {
    justify-content: center;
    margin-bottom: 20px;
  }
}


