/* --------------- reset.css --------------- */
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  border: 1px solid;
  vertical-align: middle;
  text-align: center;
  padding: 5px;
}

body,
html {
  width: 100%;
  height: 100%;
}

svg {
  display: block;
}

input,
textarea {
  font-size: 16px;
  /* Минимальный размер шрифта для предотвращения масштабирования */
}

/* --------------- reset.css --------------- */

.menu-btn {
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.menu-btn span {
  height: 3px;
  width: 100%;
  background-color: #ffffffa6;
  border-radius: 2px;
  transition: 0.3s;
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.gradient-text {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-glow {
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.btn-glow:hover {
  box-shadow: 0 0 15px #00c6ff;
  transform: translateY(-3px);
}

.section-title {
  font-weight: 700;
}

.feature-card {
  background: #161b22;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0, 198, 255, 0.3);
}

.swiper {
  padding-bottom: 3rem;
}

.cookie-note {
  display: none;
  justify-content: space-between;
  width: 95%;
  max-width: 700px;
  bottom: 10px !important;
}