﻿@charset "UTF-8";
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a,
button {
  cursor: revert;
}

ol,
ul,
menu {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

:where(pre) {
  all: revert;
}

::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

html,
body {
  margin: 0;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

p {
  line-height: 150%;
}

h1 {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin: 25px 0;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0;
  text-align: center;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0;
}

ol {
  list-style: decimal;
  padding: 15px 25px;
}

ul {
  list-style: disc;
  padding: 15px 25px;
}

li {
  line-height: 150%;
}

ol li::marker,
ul li::marker {
  color: #ffd703;
  font-weight: 600;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  overflow: auto;
  background-color: #2a3f50
}
table tr td,
table tr th {
  border: 1px solid #fff;
  padding: 15px;
}
table tr th {
  background-color: #df2dbd;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
table tr td:hover {
  background-color: rgba(76, 57, 57, 0.6352941176);
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: #2a3f50;
  padding: 20px 0;
  box-shadow: 0 0 5px #ffd703;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .container .logo {
  max-width: 150px;
  font-size: 40px;
  font-weight: 600;
}
.header .container .auth {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header .container .auth .btn-1 {
  background: #df2dbd;
}
.header .container .auth .btn-1:hover {
  background: #e946cb;
}
.header .container .auth .btn-2 {
  background: linear-gradient(253.67deg, #ffd703 2.27%, #ffd703 94.48%);
  color: #000;
  font-weight: 600;
}
.header .container .auth .btn-2:hover {
  background: linear-gradient(253.67deg, #cdff63 2.27%, #e5ff55 94.48%);
}

.btn {
  border-radius: 6px;
  padding: 12px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
}

.main {
  height: 100%;
  flex: 1 1 auto;
  
}
.main nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.main nav ul li:hover {
  text-decoration: underline;
}
.main__col {
  text-align: center;
  padding: 50px 16px;
}
.main__col .wrapper {
  max-width: 50vw;
  margin: 0 auto;
}
.main__col p {
  margin: 20px 0;
  font-size: 24px;
}
.main__btn {
  background: #ffd703;
  width: 250px;
  margin: 40px auto;
  animation: glowing1 1500ms infinite;
  color: black;
  font-weight: 600
}
.main__btn:hover {
  background: #ffd703;
}
.main .content {
  padding: 50px 0 0 0;
}
.main .content p {
  margin: 15px 0;
}
.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
}

.container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
}

.footer {
  padding: 20px 0 30px;
  background-color: #2a3f50;
  ;
  box-shadow: 0 0 5px #ffd703;
}
.footer nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer nav ul li:hover {
  text-decoration: underline;
}
.footer .copyright {
  font-size: 12px;
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 768px) {
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .container {
    max-width: 100%;
  }
  .header .container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .main {
    padding: 0;
  }
  .main nav ul {
    gap: 15px;
    font-size: 14px;
  }
  .main__col {
    padding: 30px 16px;
  }
  .main__col p {
    font-size: 20px;
  }
  .main__col .wrapper {
    max-width: 100%;
  }
  .main .content {
    padding: 0;
  }
  .main .content img {
    max-width: 100%;
  }
  .footer .container nav ul {
    font-size: 14px;
  }
}
@keyframes glowing1 {
  0% {
    box-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    box-shadow: 0 0 20px #df2dbd;
  }
  100% {
    box-shadow: 0 0 5px #4d4d4d;
  }
}
.anchors-block {
  border-radius: 6px;
  padding: 15px;
  background: #1d1d1d;
}
.anchors-block span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
.anchors-block ul {
  margin: 0;
  padding: 0 0 0 25px;
  list-style: none;
}
.anchors-block ul li {
  margin-bottom: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.anchors-block ul li * {
  line-height: 1;
}
.anchors-block ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
}
.anchors-block ul li a:hover {
  color: #1d1d1d;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Черный цвет с 50% прозрачностью */
  z-index: 1;
}

.text-container {
  position: relative;
  z-index: 2;
  color: white; /* Белый цвет текста */
  padding: 20px;
}

.text-container h1,
.text-container p {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Добавление тени к тексту */
}

footer {
  position: relative;
  z-index: 2;
  background: #2a3f50; /* Цвет фона для футера */
}

.top-section {
  position: relative;
  background-image: url("background.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 20px;
}

.bottom-section {
  background-color: #181925; /* Цвет фона нижней части */
  color: white;
  padding: 20px;
  text-align: center;
}


/* Дополнительно для top-section */
.top-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
nav {
  background-color: #232630;
  padding: 10px 0;
}