* {
  box-sizing: border-box;
}

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;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  background-color: #141414;
  margin: 0;
  padding: 0;
}

a {
  color: #ffb400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.btn {
  display: inline-block;
  background-color: #ffb400;
  color: #000;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: #ffc333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  background-color: #141414;
  padding: 20px 0;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: block;
  max-width: 180px;
}
.header__logo svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__menu-item {
  position: relative;
}
.header__menu-link {
  font-weight: 600;
  color: #ffffff;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.header__menu-link:hover {
  border-color: #ffb400;
}

@media (max-width: 992px) {
  .header__menu {
    gap: 20px;
  }
  .header__logo {
    max-width: 150px;
  }
}
@media (max-width: 768px) {
  .header__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .header__menu {
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
  }
}
.hero {
  background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
  padding: 60px 0;
  color: #ffffff;
}
.hero__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 992px) {
  .hero__wrapper {
    flex-direction: column;
    text-align: center;
  }
}
.hero__content {
  flex: 1;
}
.hero__title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }
}
.hero__text {
  font-size: 1.125rem;
  color: #b3b3b3;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .hero__text {
    font-size: 1rem;
  }
}
.hero__img-wrapper {
  flex: 1;
  text-align: right;
}
@media (max-width: 992px) {
  .hero__img-wrapper {
    text-align: center;
    margin-top: 30px;
  }
}
.hero__img {
  max-width: 100%;
  height: auto;
}

.features {
  background-color: #1a1a1a;
  padding: 60px 0;
  color: #ffffff;
}
.features__list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .features__list {
    flex-direction: column;
    align-items: center;
  }
}
.features__item {
  background-color: #262626;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  max-width: 360px;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.features__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.features__item-icon-wrapper {
  background-color: rgba(255, 180, 0, 0.1);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features__item-icon {
  font-size: 28px;
  color: #ffb400;
}
.features__item-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.features__item-text {
  font-size: 1rem;
  color: #b3b3b3;
  line-height: 1.5;
}

.platforms {
  background-color: #121212;
  padding: 80px 0;
}
.platforms__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.platforms__item {
  background-color: #1f1f1f;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  box-shadow: 0 0 0 transparent;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.platforms__item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px);
}
@media (max-width: 992px) {
  .platforms__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.platforms__item-img-wrapper {
  flex-shrink: 0;
  width: 150px;
  text-align: center;
}
@media (max-width: 992px) {
  .platforms__item-img-wrapper {
    width: 100%;
    margin-bottom: 20px;
  }
}
.platforms__item-img {
  max-height: 60px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.platforms__item-content {
  flex: 1;
}
.platforms__item-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffb400;
}
.platforms__item-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #b3b3b3;
  margin-bottom: 8px;
}
.platforms__item-text strong {
  color: #ffffff;
  font-weight: 600;
}
.platforms__item-btn {
  align-self: flex-start;
  display: inline-block;
  background-color: #ffb400;
  color: #000;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}
.platforms__item-btn:hover {
  background-color: #ffc333;
}
@media (max-width: 992px) {
  .platforms__item-btn {
    align-self: center;
    width: 100%;
    text-align: center;
  }
}

.services {
  background-color: #181818;
  padding: 80px 0;
  color: #ffffff;
}
.services__title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  color: #ffb400;
}
@media (max-width: 768px) {
  .services__title {
    font-size: 1.5rem;
    padding: 0 15px;
  }
}
.services__text-wrapper {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .services__text-wrapper {
    padding: 0 10px;
  }
}
.services__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #b3b3b3;
}
@media (max-width: 768px) {
  .services__text {
    font-size: 1rem;
  }
}
.services .btn {
  margin-top: 40px;
}

.about {
  background-color: #141414;
  padding: 80px 0;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}
.about__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 992px) {
  .about__wrapper {
    flex-direction: column;
    text-align: center;
  }
}
.about__img-wrapper {
  flex: 1;
  text-align: center;
}
@media (max-width: 992px) {
  .about__img-wrapper {
    width: 100%;
  }
}
.about__img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.about__content {
  flex: 1;
}
.about__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffb400;
}
@media (max-width: 768px) {
  .about__title {
    font-size: 1.5rem;
  }
}
.about__description {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__text {
  font-size: 16px;
  line-height: 1.6;
  color: #b3b3b3;
  font-weight: 400;
}
.about__text strong {
  color: #ffffff;
  font-weight: 600;
}
@media (max-width: 768px) {
  .about__text {
    font-size: 0.95rem;
  }
}

.cta {
  background-color: #ffb400;
  padding: 60px 0;
  color: #141414;
  font-family: "Poppins", sans-serif;
  text-align: center;
}
.cta__wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .cta__wrapper {
    padding: 0 10px;
  }
}
.cta__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #141414;
}
@media (max-width: 768px) {
  .cta__title {
    font-size: 1.5rem;
  }
}
.cta__text {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(20, 20, 20, 0.85);
}
@media (max-width: 768px) {
  .cta__text {
    font-size: 1rem;
  }
}

.testimonials {
  background-color: #141414;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  padding: 80px 0;
}
.testimonials .container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .testimonials .container {
    flex-direction: column;
  }
}
.testimonials__wrapper {
  flex: 1;
}
.testimonials__content {
  max-width: 700px;
}
.testimonials__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffb400;
}
@media (max-width: 768px) {
  .testimonials__title {
    font-size: 1.5rem;
  }
}
.testimonials__text {
  font-size: 16px;
  line-height: 1.6;
  color: #b3b3b3;
  margin-bottom: 30px;
}
.testimonials__text:not(.testimonials__author-city) {
  margin-bottom: 20px;
}
.testimonials__slider {
  list-style: none;
  padding: 0;
  margin: 0;
}
.testimonials__item {
  background-color: #070707;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: opacity 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}
.testimonials__item:nth-child(1) {
  animation-delay: 0.2s;
}
.testimonials__item:nth-child(2) {
  animation-delay: 0.4s;
}
.testimonials__item:nth-child(3) {
  animation-delay: 0.6s;
}
@media (max-width: 768px) {
  .testimonials__item {
    padding: 20px;
  }
}
.testimonials__rating {
  margin-bottom: 15px;
}
.testimonials__rating-icon {
  color: #ffb400;
  margin-right: 5px;
  font-size: 1.2rem;
}
.testimonials__author {
  margin-top: 20px;
}
.testimonials__author-name {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.testimonials__author-city {
  font-size: 0.9rem;
  color: #b3b3b3;
  font-style: italic;
}
.testimonials__img-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .testimonials__img-wrapper {
    margin-top: 40px;
  }
}
.testimonials__img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer {
  background-color: #141414;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  padding: 40px 0 20px;
}
.footer__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .footer__wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.footer__content {
  flex: 1 1 300px;
  min-width: 280px;
}
.footer__content .footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}
.footer__content .footer__logo svg,
.footer__content .footer__logo img {
  width: 150px;
  height: auto;
}
.footer__content .footer__text {
  color: #b3b3b3;
  line-height: 1.6;
}
.footer__menu {
  flex: 1 1 200px;
  min-width: 180px;
}
.footer__menu-title {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #ffb400;
}
.footer__menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__menu-item {
  margin-bottom: 10px;
}
.footer__menu-link {
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__menu-link:hover, .footer__menu-link:focus {
  color: #ffb400;
  outline: none;
}
.footer__disclaimer {
  flex: 1 1 350px;
  min-width: 300px;
}
.footer__disclaimer-title {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #ffb400;
}
.footer__disclaimer-description {
  margin-bottom: 20px;
}
.footer__disclaimer-description .footer__disclaimer-text {
  color: #b3b3b3;
  line-height: 1.5;
  margin-bottom: 10px;
}
.footer__disclaimer-description .footer__disclaimer-text--red {
  color: #ff4c4c;
  font-weight: 600;
}
.footer__disclaimer-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
.footer__disclaimer-item {
  flex: 0 0 auto;
}
.footer__disclaimer-link {
  display: inline-block;
}
.footer__disclaimer-img {
  width: 50px;
  height: auto;
  display: block;
}
.footer__copy {
  margin-top: 20px;
  text-align: center;
  padding: 15px 0 0;
  font-size: 0.875rem;
  color: #b3b3b3;
  border-top: 1px solid rgba(255, 180, 0, 0.3);
}
.footer__copy-link {
  color: #ffb400;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__copy-link:hover, .footer__copy-link:focus {
  color: #ffc333;
  outline: none;
}

.contact {
  background-color: #141414;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  padding: 60px 0;
  font-size: 16px;
}
.contact__title {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffb400;
  text-align: center;
}
.contact__text {
  color: #b3b3b3;
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.6;
}
.contact__form {
  max-width: 700px;
  margin: 0 auto;
}
.contact__form-wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .contact__form-wrapper {
    flex-direction: column;
  }
}
.contact__form-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #b3b3b3;
  border-radius: 6px;
  background-color: transparent;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}
.contact__form-input::-moz-placeholder {
  color: #b3b3b3;
}
.contact__form-input::placeholder {
  color: #b3b3b3;
}
.contact__form-input:focus {
  border-color: #ffb400;
  outline: none;
  background-color: rgba(255, 180, 0, 0.1);
}
.contact__form-textarea {
  width: 100%;
  min-height: 140px;
  resize: vertical;
  margin-bottom: 25px;
  padding: 15px;
  border: 1px solid #b3b3b3;
  border-radius: 6px;
  background-color: transparent;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}
.contact__form-textarea::-moz-placeholder {
  color: #b3b3b3;
}
.contact__form-textarea::placeholder {
  color: #b3b3b3;
}
.contact__form-textarea:focus {
  border-color: #ffb400;
  outline: none;
  background-color: rgba(255, 180, 0, 0.1);
}
.contact__form-button {
  display: block;
  max-width: 200px;
  margin: 0 auto;
}
.contact__form-status {
  margin-top: 15px;
  text-align: center;
  font-size: 0.9rem;
  color: #ffb400;
  min-height: 1.2em;
}

.faq {
  background-color: #141414;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  padding: 60px 0;
}
.faq__title {
  text-align: center;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ffb400;
}
.faq__accordion {
  max-width: 800px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid #3a3a3a;
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}
.faq__question:hover, .faq__question:focus {
  background-color: rgba(255, 180, 0, 0.1);
  outline: none;
}
.faq__icon {
  font-size: 1.5rem;
  color: #ffb400;
  transition: transform 0.3s ease;
}
.faq__question[aria-expanded=true] .faq__icon {
  transform: rotate(45deg);
}
.faq__answer {
  padding: 0 20px 20px 20px;
  font-weight: 400;
  font-size: 1rem;
  color: #b3b3b3;
  line-height: 1.5;
}

.legal {
  padding: 60px 20px;
  background-color: #141414;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
.legal .container {
  max-width: 1200px;
  margin: 0 auto;
}
.legal__title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffb400;
}
.legal__updated {
  font-size: 0.95rem;
  color: #b3b3b3;
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #ffb400;
}
.legal h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
}
.legal h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
}
.legal p {
  margin-bottom: 20px;
  color: #ffffff;
}
.legal ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 20px;
}
.legal ul li {
  margin-bottom: 10px;
}
.legal a {
  color: #ffb400;
  text-decoration: underline;
}
.legal a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .legal__title {
    font-size: 2rem;
  }
  .legal h2 {
    font-size: 1.5rem;
  }
  .legal h3 {
    font-size: 1.2rem;
  }
  .legal h4 {
    font-size: 1rem;
  }
}

.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.age-modal.show {
  display: flex;
}

.age-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.age-modal__content {
  position: relative;
  background: #ffffff;
  color: #141414;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  z-index: 2;
  text-align: center;
  outline: none;
  font-weight: 400;
}

.age-modal__buttons {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.age-btn {
  font-size: 18px;
  padding: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
  font-weight: 600;
}

.age-btn--yes {
  background-color: #ffb400;
  color: #ffffff;
}

.age-btn--no {
  background-color: #141414;
  color: #ffffff;
}

.age-btn:focus {
  outline: 2px solid #ffb400;
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .age-modal__buttons {
    flex-direction: row;
    justify-content: center;
  }
  .age-btn {
    width: 200px;
  }
}