@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: currentColor;
}

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

input,
textarea {
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  width: 24px;
  height: 24px;
  display: block;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/subset-Outfit-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/subset-Outfit-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/subset-Outfit-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/subset-SpaceGrotesk-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/subset-SpaceGrotesk-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/subset-SpaceGrotesk-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0e14;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.lock {
  overflow: hidden;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  font-size: 14px;
}
.btn--primary {
  background: #3d5afe;
  color: white;
}
.btn--primary:hover {
  background: #2944e1;
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  border: 1px solid #3d5afe;
  color: #3d5afe;
}
.btn--outline:hover {
  background: rgba(61, 90, 254, 0.1);
}
.btn__icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 14, 20, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.header__logo-img {
  height: 60px;
  display: block;
}
.header__nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background: #161c24;
  padding: 100px 40px;
  transition: 0.4s ease;
  z-index: 99;
}
.header__nav.active {
  right: 0;
}
@media (min-width: 1024px) {
  .header__nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
  }
}
.header__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .header__nav-list {
    flex-direction: row;
    gap: 40px;
  }
}
.header__nav-link {
  color: #ffffff;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.header__nav-link:hover {
  color: #00e5ff;
}
@media (min-width: 1024px) {
  .header__nav-link {
    font-size: 15px;
  }
}
.header__auth {
  display: none;
}
@media (min-width: 768px) {
  .header__auth {
    display: flex;
    gap: 12px;
  }
}
.header__toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
}
@media (min-width: 1024px) {
  .header__toggle {
    display: none;
  }
}
.header__toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #ffffff;
  transition: 0.3s;
}
.header__toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__toggle.active span:nth-child(2) {
  opacity: 0;
}
.header__toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  padding: 150px 0 80px;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0a0e14 0, transparent);
}
.hero__content {
  position: relative;
  max-width: 650px;
  animation: fadeIn 1s ease-out;
}
.hero__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 8vw, 56px);
  line-height: 1.1;
  margin-bottom: 24px;
  color: #00e5ff;
}
.hero__text {
  font-size: 18px;
  color: #919eab;
  margin-bottom: 32px;
}
.hero__age-restriction {
  display: inline-block;
  margin-top: 24px;
  padding: 4px 12px;
  background: #ff4842;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
}
.hero__notice {
  margin-top: 20px;
  font-size: 13px;
  color: #919eab;
  border-left: 2px solid #3d5afe;
  padding-left: 15px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.8);
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal__content {
  background: #161c24;
  width: 100%;
  max-width: 400px;
  padding: 40px;
  border-radius: 16px;
  position: relative;
  transform: scale(0.9);
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.modal.active .modal__content {
  transform: scale(1);
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}
.modal__title {
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 25px;
  font-size: 24px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form__input {
  width: 100%;
  padding: 12px;
  background: #252c35;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: white;
  font-family: inherit;
}
.form__input:focus {
  outline: none;
  border-color: #3d5afe;
}

.popup {
  position: fixed;
  bottom: 20px;
  right: -400px;
  width: 300px;
  background: #00e5ff;
  color: #0a0e14;
  padding: 20px;
  border-radius: 12px;
  z-index: 3000;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.popup.active {
  right: 20px;
}
.popup__title {
  font-weight: 700;
  margin-bottom: 5px;
  font-family: "Space Grotesk", sans-serif;
}
.popup__text {
  font-size: 14px;
}

.mission {
  padding: 60px 0;
  background: rgb(13.4, 18.76, 26.8);
}
@media (min-width: 768px) {
  .mission {
    padding: 100px 0;
  }
}
.mission__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.mission__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  margin-bottom: 30px;
  color: #00e5ff;
}
.mission__description {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}
@media (min-width: 768px) {
  .mission__description {
    text-align: center;
  }
}
.mission__text {
  font-size: 16px;
  color: #919eab;
  line-height: 1.8;
}
.mission__text--accent {
  padding: 20px;
  background: rgba(61, 90, 254, 0.05);
  border-radius: 12px;
  border: 1px dashed rgba(0, 229, 255, 0.3);
  color: #ffffff;
  font-weight: 500;
}

.offers {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .offers {
    padding: 100px 0;
  }
}
.offers__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  text-align: center;
  margin-bottom: 50px;
}
.offers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .offers__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}
@media (min-width: 1024px) {
  .offers__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.offers__card {
  background: #161c24;
  padding: 25px 15px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.offers__card:hover {
  transform: translateY(-5px);
  border-color: #00e5ff;
}
.offers__card:hover .offers__card-icon {
  fill: #00e5ff;
}
.offers__card-icon {
  width: 40px;
  height: 40px;
  fill: #3d5afe;
  transition: fill 0.3s ease;
}
.offers__card-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.offers__security {
  background: rgba(22, 28, 36, 0.5);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}
@media (min-width: 768px) {
  .offers__security {
    flex-direction: row;
    padding: 50px;
  }
}
.offers__security-icon {
  width: 80px;
  height: 80px;
  fill: #00e5ff;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.3));
}
.offers__security-lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .offers__security-lists {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
.offers__security-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.offers__security-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #919eab;
}
.offers__security-item-icon {
  width: 18px;
  height: 18px;
  fill: #00e5ff;
}
.offers__action {
  margin-top: 50px;
  text-align: center;
}
.offers__action .btn {
  padding: 18px 40px;
  font-size: 16px;
}

.faq {
  padding: 60px 0;
  background: #0a0e14;
}
@media (min-width: 768px) {
  .faq {
    padding: 100px 0;
  }
}
.faq__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  text-align: center;
  margin-bottom: 40px;
  color: #00e5ff;
}
.faq__accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq__accordion-item {
  background: #161c24;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq__accordion-item.active {
  border-color: #3d5afe;
}
.faq__accordion-item.active .faq__accordion-item-header-icon {
  transform: rotate(45deg);
  fill: #00e5ff;
}
.faq__accordion-item.active .faq__accordion-item-content {
  grid-template-rows: 1fr;
  padding: 0 25px 25px;
}
.faq__accordion-item-header {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.faq__accordion-item-header-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
}
.faq__accordion-item-header-icon {
  width: 20px;
  height: 20px;
  fill: #919eab;
  transition: 0.3s ease;
}
.faq__accordion-item-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-out, padding 0.3s ease;
  padding: 0 25px;
}
.faq__accordion-item-content-text {
  overflow: hidden;
  font-size: 15px;
  color: #919eab;
  line-height: 1.6;
}

.newsletter {
  padding: 80px 0;
}
.newsletter__content {
  background: linear-gradient(135deg, #3d5afe 0%, #1a237e 100%);
  border-radius: 24px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .newsletter__content {
    padding: 60px;
  }
}
.newsletter__content::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 15px;
  position: relative;
}
.newsletter__text {
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 500px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}
.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .newsletter__form {
    flex-direction: row;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
  }
}
.newsletter__form-input {
  flex: 1;
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  color: white;
  font-family: inherit;
}
@media (min-width: 768px) {
  .newsletter__form-input {
    background: transparent;
    border: none;
  }
}
.newsletter__form-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter__form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter__form-input:focus {
  outline: none;
}
.newsletter__form-btn {
  white-space: nowrap;
  justify-content: center;
  background: #00e5ff !important;
  color: #0a0e14 !important;
}
.newsletter__form-btn:hover {
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.footer {
  background: #0a0e14;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer .legal-entity {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 40px;
}
.footer .legal-entity__content-text {
  font-size: 13px;
  color: #919eab;
  line-height: 1.6;
  text-align: center;
}
.footer .legal-entity__content-text strong {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
}
.footer .player-protection {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 50px;
  text-align: center;
}
.footer .player-protection__age {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.footer .player-protection__age span {
  background: #ff4842;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: "Space Grotesk", sans-serif;
}
.footer .player-protection__advice {
  font-size: 14px;
  color: #919eab;
}
.footer .player-protection__link {
  color: #00e5ff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}
.footer .player-protection__link:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__logo-img {
  height: 65px;
  width: auto;
}
.footer__text {
  font-size: 15px;
  color: #919eab;
  max-width: 280px;
}
.footer__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav-link {
  color: #919eab;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer__nav-link:hover {
  color: #00e5ff;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer__contact-icon {
  width: 20px;
  height: 20px;
  fill: #3d5afe;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__contact-link {
  color: #919eab;
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  line-height: 1.4;
  transition: color 0.3s;
}
.footer__contact-link:hover {
  color: #00e5ff;
}
.footer__bottom {
  background: rgb(4.9, 6.86, 9.8);
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom {
    text-align: left;
  }
  .footer__bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__copyright {
  font-size: 13px;
  color: #919eab;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .footer__copyright {
    margin-bottom: 0;
  }
}
.footer__additional {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  color: rgba(145, 158, 171, 0.6);
}
@media (min-width: 768px) {
  .footer__additional {
    text-align: right;
  }
}

.page-hero {
  position: relative;
  padding: 120px 0 60px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .page-hero {
    padding: 180px 0 100px;
  }
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 14, 20, 0.9), rgba(10, 14, 20, 0.7));
}
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeIn 1.2s ease-out;
}
.page-hero__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 7vw, 64px);
  color: #00e5ff;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.page-hero__breadcrumb {
  font-size: 14px;
  letter-spacing: 2px;
  color: #919eab;
  text-transform: uppercase;
}

.about-section {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .about-section {
    padding: 100px 0;
  }
}
.about-section--alt {
  background: rgba(22, 28, 36, 0.5);
}
.about-section__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .about-section__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.about-section__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  margin-bottom: 25px;
  color: #ffffff;
  position: relative;
}
.about-section__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #3d5afe;
}
.about-section__title--center {
  text-align: center;
}
.about-section__title--center::after {
  left: 50%;
  transform: translateX(-50%);
}
.about-section__text {
  font-size: 16px;
  color: #919eab;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-section__text strong {
  color: white;
}
.about-section__image-box {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.about-section__image-box img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.about-section__image-box img:hover {
  transform: scale(1.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stats-grid__item {
  background: #161c24;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.stats-grid__item-num {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #00e5ff;
  margin-bottom: 10px;
}
.stats-grid__item-label {
  font-size: 13px;
  text-transform: uppercase;
  color: #919eab;
  letter-spacing: 1px;
}

.features-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.features-grid__item {
  background: #161c24;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.features-grid__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #3d5afe;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.features-grid__item:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.features-grid__item:hover::before {
  transform: scaleX(1);
}
.features-grid__item:hover .features-grid__icon {
  transform: scale(1.1);
  fill: #00e5ff;
}
.features-grid__icon {
  width: 50px;
  height: 50px;
  fill: #3d5afe;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
.features-grid__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  margin-bottom: 15px;
  color: #ffffff;
}
.features-grid__text {
  font-size: 15px;
  color: #919eab;
  line-height: 1.6;
}

.comparison {
  overflow-x: auto;
  padding-bottom: 20px;
}
.comparison__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background: #161c24;
  border-radius: 16px;
  overflow: hidden;
}
.comparison__th, .comparison__td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.comparison__th {
  background: rgba(61, 90, 254, 0.1);
  font-family: "Space Grotesk", sans-serif;
  color: #00e5ff;
  font-size: 14px;
  text-transform: uppercase;
}
.comparison__td {
  color: #919eab;
  font-size: 15px;
}
.comparison__td--check {
  color: #00e5ff;
  font-weight: bold;
}

.tech-spec__list {
  list-style: none;
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .tech-spec__list {
    grid-template-columns: 1fr 1fr;
  }
}
.tech-spec__item {
  display: flex;
  gap: 15px;
  background: rgba(255, 255, 255, 0.02);
  padding: 20px;
  border-radius: 12px;
}
.tech-spec__item-title {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  color: white;
  margin-bottom: 5px;
}

.contact {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .contact {
    padding: 100px 0;
  }
}
.contact__grid {
  display: grid;
  gap: 50px;
}
@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
  }
}
.contact__info {
  display: grid;
  gap: 20px;
}
.contact__info-card {
  background: #161c24;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  gap: 20px;
  transition: border-color 0.3s ease;
}
.contact__info-card:hover {
  border-color: #3d5afe;
}
.contact__info-icon {
  width: 32px;
  height: 32px;
  fill: #00e5ff;
  flex-shrink: 0;
}
.contact__info-title {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  margin-bottom: 5px;
  color: white;
}
.contact__info-text {
  font-size: 15px;
  color: #919eab;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s;
}
.contact__info-text:hover {
  color: #00e5ff;
}
.contact__form {
  background: #161c24;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
@media (min-width: 768px) {
  .contact__form {
    padding: 50px;
  }
}
.contact__form-group {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__form-label {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin-left: 5px;
}
.contact__form-input, .contact__form-textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 20px;
  color: white;
  font-family: inherit;
  transition: all 0.3s ease;
}
.contact__form-input:focus, .contact__form-textarea:focus {
  outline: none;
  border-color: #00e5ff;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}
.contact__form-input::-moz-placeholder, .contact__form-textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.contact__form-input::placeholder, .contact__form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.contact__form-textarea {
  min-height: 150px;
  resize: vertical;
}
.contact__form-row {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .contact__form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 14, 20, 0.9);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal__content {
  background: #161c24;
  width: 90%;
  max-width: 450px;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(0, 229, 255, 0.2);
  transform: translateY(30px);
  transition: transform 0.4s ease;
}
.is-open .modal__content {
  transform: translateY(0);
}
.modal__icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 229, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.modal__icon svg {
  width: 30px;
  height: 30px;
  fill: #00e5ff;
}
.modal__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
  color: white;
}
.modal__text {
  color: #919eab;
  line-height: 1.6;
  margin-bottom: 25px;
}

.privacy {
  padding: 60px 0;
  background: #0a0e14;
}
@media (min-width: 768px) {
  .privacy {
    padding: 100px 0;
  }
}
.privacy__content {
  max-width: 900px;
  margin: 0 auto;
  background: #161c24;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
@media (min-width: 768px) {
  .privacy__content {
    padding: 60px;
  }
}
.privacy__section {
  margin-bottom: 40px;
}
.privacy__section:last-child {
  margin-bottom: 0;
}
.privacy__h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  color: #00e5ff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.privacy__h2::before {
  content: "";
  width: 4px;
  height: 24px;
  background: #3d5afe;
  border-radius: 2px;
}
.privacy__h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  color: white;
  margin: 25px 0 15px;
}
.privacy__text {
  font-size: 15px;
  color: #919eab;
  line-height: 1.8;
  margin-bottom: 15px;
}
.privacy__text strong {
  color: white;
}
.privacy__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}
.privacy__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #919eab;
}
.privacy__list-item::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #00e5ff;
}
.privacy .contact-box {
  background: rgba(61, 90, 254, 0.05);
  border: 1px solid rgba(61, 90, 254, 0.2);
  padding: 25px;
  border-radius: 12px;
  margin-top: 20px;
}

.terms {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .terms {
    padding: 100px 0;
  }
}
.terms__content {
  max-width: 950px;
  margin: 0 auto;
  background: #161c24;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
@media (min-width: 768px) {
  .terms__content {
    padding: 70px;
  }
}
.terms__section {
  margin-bottom: 50px;
}
.terms__section:last-child {
  margin-bottom: 0;
}
.terms__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  color: white;
  margin-bottom: 25px;
  border-left: 4px solid #00e5ff;
  padding-left: 20px;
}
.terms__text {
  font-size: 16px;
  color: #919eab;
  line-height: 1.8;
  margin-bottom: 20px;
}
.terms__text strong {
  color: #00e5ff;
}
.terms__warning-box {
  background: rgba(255, 72, 66, 0.1);
  border: 1px solid rgba(255, 72, 66, 0.3);
  padding: 30px;
  border-radius: 16px;
  margin: 30px 0;
}
.terms__warning-box-title {
  display: block;
  color: #ff4842;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
}
.terms__warning-box p {
  font-size: 14px;
  color: white;
  margin: 0;
}

.responsible {
  padding: 60px 0;
}
.responsible__content {
  max-width: 900px;
  margin: 0 auto;
}
.responsible__age-banner {
  background: linear-gradient(135deg, #ff4842 0%, #8b0000 100%);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  box-shadow: 0 15px 35px rgba(255, 72, 66, 0.2);
}
.responsible__age-banner-icon {
  font-size: 64px;
  font-weight: 900;
  font-family: "Space Grotesk", sans-serif;
  background: white;
  color: #ff4842;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.responsible__age-banner-text h2 {
  color: white;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
}
.responsible__age-banner-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin: 0;
}
.responsible__grid {
  display: grid;
  gap: 30px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .responsible__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.responsible__card {
  background: #161c24;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.responsible__card-title {
  font-family: "Space Grotesk", sans-serif;
  color: #00e5ff;
  font-size: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.responsible__help-box {
  background: rgba(61, 90, 254, 0.1);
  border: 2px solid #3d5afe;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
}
.responsible__help-box-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: white;
}
.responsible__help-box-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2000;
  background: rgba(22, 28, 36, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(150%);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.cookie-banner.is-visible {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .cookie-banner {
    left: 30px;
    right: auto;
    bottom: 30px;
    max-width: 400px;
  }
}
.cookie-banner__content {
  margin-bottom: 20px;
}
.cookie-banner__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  color: #00e5ff;
  margin-bottom: 10px;
  display: block;
}
.cookie-banner__text {
  font-size: 14px;
  color: #919eab;
  line-height: 1.5;
  margin: 0;
}
.cookie-banner__text a {
  color: white;
  text-decoration: underline;
}
.cookie-banner__text a:hover {
  color: #3d5afe;
}
.cookie-banner__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cookie-banner .btn--cookie {
  padding: 10px 15px;
  font-size: 13px;
  justify-content: center;
}
.cookie-banner .btn--cookie.accept {
  background: #3d5afe;
  color: white;
}
.cookie-banner .btn--cookie.decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #919eab;
}
.cookie-banner .btn--cookie.decline:hover {
  border-color: white;
  color: white;
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: radial-gradient(circle at center, rgba(61, 90, 254, 0.05) 0%, #0a0e14 70%);
}
.error-page__content {
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out;
}
.error-page__code {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(100px, 20vw, 180px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px #00e5ff;
  text-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
  margin-bottom: 20px;
  display: block;
}
.error-page__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  color: white;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.error-page__text {
  font-size: 16px;
  color: #919eab;
  line-height: 1.6;
  margin-bottom: 40px;
}
.error-page__actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .error-page__actions {
    flex-direction: row;
    justify-content: center;
  }
}
.error-page .btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: white;
}
.error-page .btn--outline:hover {
  border-color: #00e5ff;
  color: #00e5ff;
}