@import url("https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Orbitron:wght@500&display=swap");
* {
  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;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Luckiest Guy", cursive;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.btn--primary {
  background-color: #ffcc00;
  color: #2b2e4a;
  box-shadow: 0 0 10px #ffcc00;
}
.btn--primary:hover {
  background-color: #cca300;
  box-shadow: 0 0 15px #ffcc00;
}
.btn--secondary {
  background-color: #ff0055;
  color: #ffffff;
  box-shadow: 0 0 10px #ff0055;
}
.btn--secondary:hover {
  background-color: #ff1a66;
  box-shadow: 0 0 15px #ff0055;
}

.header {
  background: linear-gradient(90deg, #2b2e4a 0%, #1f2235 100%);
  padding: 1rem 0;
  font-family: "Orbitron", sans-serif;
}
.header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo svg {
  width: 160px;
  height: auto;
}
.header__buttons {
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .header__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .header__buttons {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
  }
  .header__buttons .btn {
    width: 100%;
    text-align: center;
  }
  .header__logo svg {
    width: 140px;
  }
}
@media (max-width: 480px) {
  .header {
    padding: 0.75rem 0;
  }
  .header .header__logo svg {
    width: 120px;
  }
  .header .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}
.hero {
  background: linear-gradient(180deg, #1f2235 0%, #2b2e4a 100%);
  color: #fff;
  padding: 3rem 0;
  font-family: "Orbitron", sans-serif;
}
.hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.hero img {
  width: 100%;
  max-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
}
.hero__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}
.hero__content {
  flex: 1 1 50%;
  max-width: 600px;
}
.hero__content .hero__title {
  font-size: 2.5rem;
  font-family: "Luckiest Guy", cursive;
  color: #ffcc00;
  text-shadow: 0 0 10px #ffcc00;
  margin-bottom: 1rem;
}
.hero__content .hero__text {
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.6;
}
.hero__timer {
  flex: 1 1 40%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px dashed #ffcc00;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
}
.hero__timer-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
.hero__timer-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hero__timer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
}
.hero__timer-item .hero__timer-number {
  font-size: 2rem;
  font-weight: bold;
  color: #ffcc00;
  text-shadow: 0 0 8px #ffcc00;
}
.hero__timer-item .hero__timer-text {
  font-size: 0.9rem;
  color: #ccc;
}
.hero__timer .btn--primary {
  background-color: #ff0055;
  color: #fff;
  font-family: "Luckiest Guy", cursive;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  transition: 0.3s ease-in-out;
  display: inline-block;
  box-shadow: 0 0 10px #ff0055;
}
.hero__timer .btn--primary:hover {
  background-color: #ff1a66;
  box-shadow: 0 0 15px #ff0055;
}

@media (max-width: 992px) {
  .hero__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .hero__content,
  .hero__timer {
    max-width: 100%;
  }
  .hero__content .hero__title {
    font-size: 2rem;
    text-align: center;
  }
  .hero__content .hero__text {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 2rem 0;
  }
  .hero__timer-wrapper {
    gap: 1rem;
  }
  .hero__timer-item {
    width: 60px;
  }
  .hero__timer-item .hero__timer-number {
    font-size: 1.5rem;
  }
  .hero__timer-item .hero__timer-text {
    font-size: 0.75rem;
  }
  .hero__timer-title {
    font-size: 1.2rem;
  }
  .btn--primary {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}
.features {
  background: linear-gradient(180deg, #2b2e4a 0%, #1f2235 100%);
  color: #fff;
  padding: 4rem 0;
  font-family: "Orbitron", sans-serif;
}
.features .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.features__wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.features__img {
  flex: 1 1 45%;
  max-width: 500px;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
}
.features__content {
  flex: 1 1 50%;
}
.features__content .title {
  font-size: 2rem;
  font-family: "Luckiest Guy", cursive;
  color: #ffcc00;
  margin-bottom: 2rem;
  text-shadow: 0 0 10px #ffcc00;
}
.features__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.features__item {
  background: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #ffcc00;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  position: relative;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.1);
}
.features__item-number {
  position: absolute;
  top: -0.8rem;
  left: -0.8rem;
  background-color: #ff0055;
  color: #fff;
  font-family: "Luckiest Guy", cursive;
  font-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff0055;
}
.features__item-title {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.features__item-text {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .features__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .features__img {
    max-width: 100%;
  }
  .features__content {
    width: 100%;
    text-align: center;
  }
  .features__content .title {
    font-size: 1.8rem;
  }
  .features__item {
    padding: 1rem;
  }
  .features__item-title {
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  .features {
    padding: 2.5rem 0;
  }
  .features__content .title {
    font-size: 1.6rem;
  }
  .features__item {
    padding: 0.8rem;
  }
  .features__item-number {
    font-size: 1.2rem;
    width: 2rem;
    height: 2rem;
  }
  .features__item-title {
    font-size: 1.1rem;
  }
  .features__item-text {
    font-size: 0.9rem;
  }
}
.reviews {
  background: linear-gradient(180deg, #1f2235 0%, #2b2e4a 100%);
  color: #fff;
  padding: 4rem 0;
  font-family: "Orbitron", sans-serif;
}
.reviews .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.reviews .title {
  font-size: 2rem;
  font-family: "Luckiest Guy", cursive;
  color: #ffcc00;
  margin-bottom: 2.5rem;
  text-shadow: 0 0 10px #ffcc00;
}
.reviews__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.reviews__item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #ffcc00;
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.1);
  transition: transform 0.3s ease;
}
.reviews__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
}
.reviews__item .reviews__content {
  padding-bottom: 2rem;
}
.reviews__item .reviews__name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffcc00;
  margin-bottom: 0.5rem;
  font-family: "Luckiest Guy", cursive;
}
.reviews__item .reviews__text {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
}
.reviews__item .reviews__quote {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 30px;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .reviews .title {
    font-size: 1.8rem;
  }
  .reviews__name {
    font-size: 1.1rem;
  }
  .reviews__text {
    font-size: 0.95rem;
  }
  .reviews__quote {
    width: 24px;
  }
}
@media (max-width: 480px) {
  .reviews {
    padding: 3rem 0;
  }
  .reviews .title {
    font-size: 1.6rem;
  }
  .reviews__item {
    padding: 1rem;
  }
  .reviews__text {
    font-size: 0.9rem;
  }
  .reviews__quote {
    width: 20px;
  }
}
.hot-cold {
  background: linear-gradient(180deg, #0f1020 0%, #1a1c33 100%);
  color: #fff;
  padding: 4rem 0;
  font-family: "Orbitron", sans-serif;
}
.hot-cold .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.hot-cold .title {
  font-size: 2rem;
  font-family: "Luckiest Guy", cursive;
  color: #ffcc00;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px #ffcc00;
}
.hot-cold__text {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.hot-cold__wrapper {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.hot-cold__hot, .hot-cold__cold {
  flex: 1 1 320px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2rem;
  border: 2px solid transparent;
  position: relative;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.1);
}
.hot-cold__hot {
  border-color: #ff5722;
}
.hot-cold__hot-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.hot-cold__hot-title .hot-cold__hot-icon {
  width: 24px;
}
.hot-cold__hot-title .hot-cold__hot-text {
  font-size: 1.2rem;
  color: #ff5722;
  font-weight: bold;
  text-transform: uppercase;
}
.hot-cold__hot-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.hot-cold__hot-item {
  background-color: #ff5722;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px #ff5722;
}
.hot-cold__cold {
  border-color: #03a9f4;
}
.hot-cold__cold-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.hot-cold__cold-title .hot-cold__cold-icon {
  width: 24px;
}
.hot-cold__cold-title .hot-cold__cold-text {
  font-size: 1.2rem;
  color: #03a9f4;
  font-weight: bold;
  text-transform: uppercase;
}
.hot-cold__cold-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.hot-cold__cold-item {
  background-color: #03a9f4;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px #03a9f4;
}

@media (max-width: 768px) {
  .hot-cold .title {
    font-size: 1.8rem;
  }
  .hot-cold__text {
    font-size: 0.95rem;
  }
  .hot-cold__hot-item, .hot-cold__cold-item {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .hot-cold {
    padding: 3rem 0;
  }
  .hot-cold .title {
    font-size: 1.6rem;
  }
  .hot-cold__text {
    font-size: 0.9rem;
  }
  .hot-cold__hot-item, .hot-cold__cold-item {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
.legal {
  background-color: #0d0d0d;
  color: #ccc;
  padding: 2rem 0;
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
}
.legal .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}
.legal__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}
.legal__img {
  width: 40px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(255, 0, 0, 0.6666666667));
}
.legal__text {
  color: #ddd;
  max-width: 700px;
  line-height: 1.5;
}
.legal__text a.legal__link {
  color: #ffcc00;
  text-decoration: underline;
  font-weight: bold;
}
.legal__text a.legal__link:hover {
  text-decoration: none;
  color: #fff000;
}

@media (max-width: 768px) {
  .legal {
    font-size: 0.9rem;
  }
  .legal__img {
    width: 32px;
  }
  .legal__text {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .legal {
    padding: 1.5rem 0;
    font-size: 0.85rem;
  }
  .legal__wrapper {
    flex-direction: column;
    gap: 0.75rem;
  }
  .legal__img {
    width: 30px;
  }
}
.how-to {
  background: linear-gradient(180deg, #1a1c33 0%, #0f1020 100%);
  color: #fff;
  padding: 4rem 0;
  font-family: "Orbitron", sans-serif;
}
.how-to .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.how-to .title {
  font-family: "Luckiest Guy", cursive;
  font-size: 2.2rem;
  color: #ffcc00;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px #ffcc00;
}
.how-to__text {
  font-size: 1rem;
  color: #ddd;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.how-to__list {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.how-to__item {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.how-to__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.6666666667);
}
.how-to__img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 4px rgba(255, 204, 0, 0.6666666667));
}
.how-to__content {
  text-align: center;
}
.how-to__content .how-to__title {
  font-size: 1.3rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 5px rgba(255, 204, 0, 0.3333333333);
}
.how-to__content .how-to__content-text {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .how-to__list {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .how-to {
    padding: 3rem 0;
  }
  .how-to .title {
    font-size: 1.8rem;
  }
  .how-to__text {
    font-size: 0.95rem;
  }
  .how-to__img {
    width: 50px;
    height: 50px;
  }
  .how-to__content-text {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .how-to__item {
    padding: 1.5rem;
  }
  .how-to .title {
    font-size: 1.6rem;
  }
}
.ticket {
  background: linear-gradient(90deg, #ffcc00 0%, #ff8800 100%);
  padding: 3rem 0;
  text-align: center;
  font-family: "Orbitron", sans-serif;
}
.ticket .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}
.ticket__wrapper {
  display: flex;
  justify-content: center;
}
.ticket .btn--primary {
  background-color: #1a1c33;
  color: #fff;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.ticket .btn--primary:hover {
  background-color: #0f1020;
  color: #ffcc00;
  box-shadow: 0 0 16px #1a1c33;
}

@media (max-width: 768px) {
  .ticket {
    padding: 2.5rem 0;
  }
  .ticket .btn--primary {
    font-size: 1rem;
    padding: 0.9rem 2rem;
  }
}
@media (max-width: 480px) {
  .ticket {
    padding: 2rem 0;
  }
  .ticket .btn--primary {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
  }
}
.partners {
  background-color: #0f1020;
  padding: 3rem 0;
  font-family: "Orbitron", sans-serif;
}
.partners .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
.partners__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.partners__item {
  flex: 0 1 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}
.partners__item:hover {
  transform: scale(1.1);
}
.partners__link {
  display: inline-block;
  max-width: 160px;
  width: 100%;
  filter: brightness(0.85);
  transition: filter 0.3s ease;
}
.partners__link:hover {
  filter: brightness(1);
}
.partners__img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .partners {
    padding: 2rem 0;
  }
  .partners__list {
    gap: 1.5rem;
  }
  .partners__item {
    flex: 0 1 120px;
  }
}
@media (max-width: 480px) {
  .partners {
    padding: 1.5rem 0;
  }
  .partners__list {
    gap: 1rem;
    justify-content: center;
  }
  .partners__item {
    flex: 0 1 90px;
  }
}
.responsible {
  background-color: #121521;
  color: #e0e0e0;
  font-family: "Poppins", sans-serif;
  padding: 4rem 0;
}
.responsible .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.responsible__wrapper {
  margin-bottom: 2rem;
}
.responsible__wrapper > img {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 0 4px #f5a623);
  margin: 0 auto;
}
.responsible .title {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #f5a623;
  margin-bottom: 2rem;
}
.responsible__content {
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #d3d3d3;
}
.responsible__text {
  margin-bottom: 1.2rem;
}
.responsible__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem 0;
}
.responsible__list > .responsible__item {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}
.responsible__list > .responsible__item a.responsible__link {
  color: #f5a623;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.responsible__list > .responsible__item a.responsible__link:hover, .responsible__list > .responsible__item a.responsible__link:focus {
  color: #ffc947;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .responsible {
    padding: 3rem 1rem;
  }
  .responsible .title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .responsible__content {
    font-size: 1rem;
  }
  .responsible__wrapper > img {
    width: 60px;
  }
}
@media (max-width: 480px) {
  .responsible {
    padding: 2rem 1rem;
  }
  .responsible .title {
    font-size: 1.75rem;
  }
  .responsible__content {
    font-size: 0.95rem;
  }
  .responsible__wrapper > img {
    width: 50px;
  }
}
.footer {
  background-color: #0d0f1a;
  color: #ccc;
  font-family: "Poppins", sans-serif;
  padding: 3rem 0 2rem;
}
.footer .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
  .footer__wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.footer__menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 600px) {
  .footer__menu {
    gap: 1.2rem;
  }
}
.footer__menu-link {
  color: #f5a623;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__menu-link:hover, .footer__menu-link:focus {
  color: #ffc947;
  text-decoration: underline;
}
.footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__payments-item {
  width: 48px;
  height: 32px;
  flex-shrink: 0;
}
.footer__payments-item img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__copyright {
  font-size: 0.875rem;
  color: #777;
  text-align: center;
  margin-top: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1f2235;
  color: #eee;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.5);
  padding: 1rem 1.5rem;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner__container {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.cookie-banner__text {
  flex: 1 1 60%;
  font-size: 0.95rem;
  line-height: 1.4;
}
.cookie-banner__text a.cookie-banner__link {
  color: #f5a623;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.cookie-banner__text a.cookie-banner__link:hover, .cookie-banner__text a.cookie-banner__link:focus {
  color: #ffc947;
  text-decoration: underline;
}
.cookie-banner__actions {
  flex: 1 1 35%;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}
@media (max-width: 480px) {
  .cookie-banner__actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .footer__menu {
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  .footer__payments {
    justify-content: center;
  }
  .cookie-banner__container {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner__text, .cookie-banner__actions {
    flex: 1 1 100%;
  }
  .cookie-banner__actions {
    justify-content: center;
    margin-top: 0.5rem;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 2rem 1rem;
  }
  .footer__payments {
    gap: 0.75rem;
  }
  .footer__payments-item {
    width: 36px;
    height: 24px;
  }
  .footer__menu-link {
    font-size: 0.9rem;
  }
  .cookie-banner {
    padding: 0.75rem 1rem;
  }
  .cookie-banner__text {
    font-size: 0.9rem;
  }
  .cookie-banner__actions button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
.age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1500;
}
.age-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 15, 26, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.age-popup__content {
  position: relative;
  background-color: #1f2235;
  color: #eee;
  border-radius: 12px;
  padding: 2.5rem 3rem;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  text-align: center;
  z-index: 10;
  font-family: "Poppins", sans-serif;
}
.age-popup__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f5a623;
}
.age-popup__text {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #ccc;
  line-height: 1.5;
}
.age-popup__actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.age-popup__actions button {
  min-width: 140px;
  padding: 0.65rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.age-popup__actions button.btn--primary {
  background-color: #f5a623;
  color: #1f2235;
}
.age-popup__actions button.btn--primary:hover, .age-popup__actions button.btn--primary:focus {
  background-color: #ffc947;
  color: #0d0f1a;
  outline: none;
}
.age-popup__actions button.btn--secondary {
  background-color: transparent;
  color: #ccc;
  border: 2px solid #555;
}
.age-popup__actions button.btn--secondary:hover, .age-popup__actions button.btn--secondary:focus {
  background-color: #33364d;
  border-color: #f5a623;
  color: #f5a623;
  outline: none;
}

@media (max-width: 480px) {
  .age-popup__content {
    padding: 2rem 1.5rem;
    max-width: 90%;
  }
  .age-popup__title {
    font-size: 1.5rem;
  }
  .age-popup__text {
    font-size: 0.95rem;
  }
  .age-popup__actions {
    flex-direction: column;
    gap: 1rem;
  }
  .age-popup__actions button {
    width: 100%;
    min-width: unset;
  }
}
.auth {
  padding: 3rem 0;
}
.auth .container {
  max-width: 480px;
  margin: 0 auto;
}
.auth__wrapper {
  text-align: center;
  margin-bottom: 2.5rem;
}
.auth__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1f2235;
  margin-bottom: 0.75rem;
  font-family: "Poppins", sans-serif;
}
.auth__text {
  font-size: 1rem;
  color: #555b7a;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
}
.auth__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.auth__form-wrapper {
  display: flex;
  gap: 1rem;
}
.auth__form-wrapper input[type=checkbox] {
  width: auto;
  margin-right: 0.5rem;
  cursor: pointer;
}
.auth__form-input {
  flex: 1 1 48%;
  padding: 0.65rem 1rem;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  color: #1f2235;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.auth__form-input:focus {
  outline: none;
  border-color: #f5a623;
  box-shadow: 0 0 6px rgba(245, 166, 35, 0.6);
}
.auth__form-input[type=checkbox] {
  flex: 0 0 auto;
  width: auto;
  margin: 0;
}
.auth__form-label {
  flex: 1 1 100%;
  font-size: 0.9rem;
  color: #555b7a;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
}
.auth__form-label a.auth__form-link {
  color: #f5a623;
  text-decoration: underline;
  margin-left: 0.3rem;
}
.auth__form-label a.auth__form-link:hover, .auth__form-label a.auth__form-link:focus {
  color: #ffc947;
  outline: none;
}
.auth__form-link {
  color: #f5a623;
  text-decoration: underline;
}
.auth__form-link:hover, .auth__form-link:focus {
  color: #ffc947;
  outline: none;
}
.auth__form-text {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #555b7a;
  font-family: "Inter", sans-serif;
}
.auth .btn--primary {
  background-color: #f5a623;
  color: #1f2235;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.auth .btn--primary:hover, .auth .btn--primary:focus {
  background-color: #ffc947;
  outline: none;
}
@media (max-width: 480px) {
  .auth__form-wrapper {
    flex-direction: column;
  }
  .auth__form-wrapper input[type=checkbox] {
    margin-bottom: 0.5rem;
  }
  .auth__form-input {
    flex: 1 1 100%;
  }
}

.success-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  max-width: 400px;
  width: 90%;
  padding: 1.5rem 2rem;
  background-color: #e6f4ea;
  border: 1.5px solid #4caf50;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
  text-align: center;
  font-family: "Inter", sans-serif;
}
.success-message__text {
  color: #2e7d32;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.success-message__btn {
  background-color: #4caf50;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.success-message__btn:hover, .success-message__btn:focus {
  background-color: #388e3c;
  outline: none;
}

.legal-policy {
  background-color: #f9f9f9;
  color: #222;
  padding: 4rem 1rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
}
.legal-policy .container {
  max-width: 900px;
  margin: 0 auto;
}
.legal-policy .title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004080;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: "Roboto Slab", serif;
}
.legal-policy__text {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #333;
}
.legal-policy__text strong {
  font-weight: 600;
  color: #004080;
}
.legal-policy__text a {
  color: #0066cc;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.legal-policy__text a:hover, .legal-policy__text a:focus {
  color: #004080;
  outline: none;
}
.legal-policy__subtitle {
  font-weight: 600;
  color: #004080;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.legal-policy__subtitle.h3 {
  font-size: 1.6rem;
}
.legal-policy__subtitle.h4 {
  font-size: 1.3rem;
}
.legal-policy__subtitle.h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}
.legal-policy ul {
  margin-left: 1.2rem;
  margin-bottom: 1.5rem;
  color: #444;
}
.legal-policy ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
}
.legal-policy ul li strong {
  font-weight: 600;
  color: #004080;
}
.legal-policy h3.legal-policy__subtitle {
  font-size: 1.6rem;
}
.legal-policy h4.legal-policy__subtitle {
  font-size: 1.3rem;
}
.legal-policy h5.legal-policy__subtitle {
  font-size: 1.1rem;
  font-weight: 600;
}
.legal-policy ul > li > a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.legal-policy ul > li > a:hover, .legal-policy ul > li > a:focus {
  color: #004080;
  text-decoration: underline;
  outline: none;
}
@media (max-width: 768px) {
  .legal-policy {
    padding: 3rem 1rem;
  }
  .legal-policy .title {
    font-size: 2rem;
  }
  .legal-policy__text {
    font-size: 0.95rem;
  }
  .legal-policy__subtitle.h3 {
    font-size: 1.4rem;
  }
  .legal-policy__subtitle.h4 {
    font-size: 1.1rem;
  }
  .legal-policy__subtitle.h5 {
    font-size: 1rem;
  }
  .legal-policy ul li {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .legal-policy {
    padding: 2rem 1rem;
  }
  .legal-policy .title {
    font-size: 1.7rem;
  }
}