* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "sf-ui-display-light";
}

body {
  background: url(../img/bg.webp) top center/cover no-repeat;
  color: #fff;
}

@font-face {
  font-family: "sf-ui-display-bold";
  src: url("../fonts/sf-ui-display-bold-58646a511e3d9.otf");
}
@font-face {
  font-family: "sf-ui-display-light";
  src: url("../fonts/sf-ui-display-light-58646b33e0551.otf");
}
@font-face {
  font-family: "Unison-Pro-Bold";
  src: url("../fonts/Unison-Pro-Bold.otf");
}
h1 {
  font-family: "Unison-Pro-Bold";
}

.header {
  text-align: center;
  padding-top: 16px;
}
.header h6 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  margin-bottom: 21px;
}
.header h6 img {
  width: 16px;
}
.header .logo img {
  width: 125px;
}

.header-content {
  padding-top: 40px;
  padding-bottom: 100px;
}
.header-content .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-content .container .text {
  width: 45%;
}
.header-content .container .text h1 {
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 40px;
}
.header-content .container .text h2 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 40px;
}
.header-content .container .text .items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-content .container .text .items .item {
  width: 30%;
  text-align: center;
}
.header-content .container .text .items .item img {
  width: 32px;
  margin-bottom: 16px;
}
.header-content .container .text .items .item h3 {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 16px;
}
.header-content .container .text .items .line {
  width: auto;
  height: 55px;
}
.header-content .container .img {
  width: 54%;
}
.header-content .container .img img {
  width: 100%;
}

.items-main-container {
  padding-bottom: 100px;
}
.items-main-container .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px 140px;
}
.items-main-container .items .item {
  border-radius: 12px;
  border: 1px solid #F82489;
  padding: 24px 16px;
}
.items-main-container .items .item .top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 16px;
}
.items-main-container .items .item .top .logo img {
  width: 150px;
}
.items-main-container .items .item .top .txt {
  display: flex;
  align-items: center;
  gap: 8px;
}
.items-main-container .items .item .top .txt img {
  width: 24px;
}
.items-main-container .items .item .top .txt h4 {
  font-family: "sf-ui-display-bold";
  font-size: 16px;
  margin-bottom: 0;
}
.items-main-container .items .item .bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.items-main-container .items .item .bottom .stars {
  display: flex;
  align-items: center;
}
.items-main-container .items .item .bottom .stars h5 {
  font-family: "sf-ui-display-bold";
  font-size: 24px;
  margin-bottom: 0;
}
.items-main-container .items .item .bottom .stars img {
  width: 88px;
}
.items-main-container .items .item .bottom .a-bonus {
  background-color: #F82489;
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 16px;
  font-family: "sf-ui-display-bold";
  text-decoration: none;
  border-radius: 99px;
  color: #fff;
}

.privacy-block {
  margin: 60px 0;
}
.privacy-block h3 {
  font-size: 40px;
  margin-bottom: 16px;
  font-family: "sf-ui-display-bold";
}
.privacy-block p {
  margin-bottom: 30px;
}

.footer {
  text-align: center;
  padding: 35px 0;
  background-color: #262525;
}
.footer .footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 33px 49px;
}
.footer .footer-logos img {
  width: auto;
  height: 85px;
}
.footer p {
  margin-bottom: 40px;
}
.footer .footer-a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 33px;
}
.footer .footer-a a {
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  font-family: "sf-ui-display-bold";
}

.contact-form {
  margin-top: 30px;
}
.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .contact-form .form-row {
    flex-direction: column;
    gap: 15px;
  }
}
.contact-form .form-group {
  flex: 1;
}
.contact-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-family: "sf-ui-display-bold";
  font-size: 16px;
  color: #fff;
}
.contact-form .form-group input, .contact-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #F82489;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}
.contact-form .form-group input::-moz-placeholder, .contact-form .form-group textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.contact-form .form-group input::placeholder, .contact-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.contact-form .form-group input:focus, .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(248, 36, 137, 0.3);
}
.contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .submit-btn {
  background: linear-gradient(135deg, #F82489, #FF6B9D);
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-family: "sf-ui-display-bold";
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(248, 36, 137, 0.4);
}
.contact-form .submit-btn:active {
  transform: translateY(0);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.modal .modal-content {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  margin: 5% auto;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid #F82489;
  animation: modalSlideIn 0.3s ease-out;
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.modal .modal-header {
  background: linear-gradient(135deg, #F82489, #FF6B9D);
  padding: 20px 25px;
  border-radius: 13px 13px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal .modal-header h3 {
  color: #fff;
  margin: 0;
  font-family: "sf-ui-display-bold";
  font-size: 20px;
}
.modal .modal-header .close {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal .modal-header .close:hover {
  transform: scale(1.2);
  opacity: 0.8;
}
.modal .modal-body {
  padding: 25px;
}
.modal .modal-body p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}
.modal .modal-footer {
  padding: 20px 25px 25px;
  text-align: center;
}
.modal .modal-footer .modal-btn {
  background: linear-gradient(135deg, #F82489, #FF6B9D);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: "sf-ui-display-bold";
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.modal .modal-footer .modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(248, 36, 137, 0.4);
}

@media (max-width: 991px) {
  body {
    background: url(../img/bgm.webp) top center/cover no-repeat;
  }
  .header-content .container {
    flex-direction: column-reverse;
  }
  .header-content .container .text {
    width: 100%;
    text-align: center;
  }
  .header-content .container .text h1 {
    font-size: 24px;
  }
  .header-content .container .text h2 {
    font-size: 16px;
  }
  .header-content .container .img {
    width: 100%;
    margin-bottom: 20px;
  }
  .header-content .container .text .items .line {
    display: none;
  }
  .items-main-container .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .items-main-container {
    padding-bottom: 40px;
  }
  .footer .footer-logos img {
    height: 50px;
  }
  .footer .footer-logos img {
    gap: 30px;
  }
  .contact-form .form-row {
    flex-direction: column;
    gap: 15px;
  }
  .contact-form .submit-btn {
    width: 100%;
    padding: 15px 20px;
  }
  .modal .modal-content {
    margin: 10% auto;
    width: 95%;
  }
}
.cookie-modal {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  max-width: 400px;
  width: calc(100vw - 40px);
}
.cookie-modal .cookie-content {
  background: #000;
  border: 2px solid #0066FF;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: cookieSlideIn 0.5s ease-out;
}
@keyframes cookieSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.cookie-modal .cookie-header {
  padding: 20px 25px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cookie-modal .cookie-header h3 {
  color: #fff;
  margin: 0;
  font-family: "sf-ui-display-bold";
  font-size: 18px;
  text-align: center;
  line-height: 1.4;
}
.cookie-modal .cookie-body {
  padding: 15px 25px;
}
.cookie-modal .cookie-body p {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
  text-align: left;
}
.cookie-modal .cookie-body p:last-child {
  margin-bottom: 0;
}
.cookie-modal .cookie-body p a {
  color: #F82489;
  text-decoration: none;
  font-weight: bold;
}
.cookie-modal .cookie-body p a:hover {
  text-decoration: underline;
}
.cookie-modal .cookie-footer {
  padding: 15px 25px 20px;
  display: flex;
  gap: 15px;
  justify-content: space-between;
}
.cookie-modal .cookie-footer .cookie-btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: "sf-ui-display-bold";
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}
.cookie-modal .cookie-footer .cookie-btn.refuse-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #F82489;
}
.cookie-modal .cookie-footer .cookie-btn.refuse-btn:hover {
  background: rgba(248, 36, 137, 0.1);
  transform: translateY(-1px);
}
.cookie-modal .cookie-footer .cookie-btn.accept-btn {
  background: #F82489;
  color: #fff;
}
.cookie-modal .cookie-footer .cookie-btn.accept-btn:hover {
  background: #FF6B9D;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(248, 36, 137, 0.4);
}

@media (max-width: 768px) {
  .cookie-modal {
    bottom: 15px;
    left: 15px;
    right: 15px;
    width: auto;
    max-width: none;
  }
  .cookie-modal .cookie-content {
    border-radius: 10px;
  }
  .cookie-modal .cookie-footer {
    flex-direction: column;
    gap: 10px;
  }
  .cookie-modal .cookie-footer .cookie-btn {
    width: 100%;
  }
}
.age-modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.age-modal .age-content {
  background: #000;
  border: 2px solid #F82489;
  border-radius: 12px;
  margin: 10% auto;
  padding: 0;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: ageSlideIn 0.4s ease-out;
}
@keyframes ageSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.age-modal .age-body {
  padding: 30px 25px 20px;
}
.age-modal .age-body p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}
.age-modal .age-footer {
  padding: 20px 25px 25px;
  display: flex;
  gap: 15px;
  justify-content: space-between;
}
.age-modal .age-footer .age-btn {
  flex: 1;
  padding: 15px 25px;
  border-radius: 8px;
  font-family: "sf-ui-display-bold";
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}
.age-modal .age-footer .age-btn.quit-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #F82489;
}
.age-modal .age-footer .age-btn.quit-btn:hover {
  background: rgba(248, 36, 137, 0.1);
  transform: translateY(-1px);
}
.age-modal .age-footer .age-btn.confirm-btn {
  background: #F82489;
  color: #fff;
}
.age-modal .age-footer .age-btn.confirm-btn:hover {
  background: #FF6B9D;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(248, 36, 137, 0.4);
}

.age-restriction-modal {
  display: none;
  position: fixed;
  z-index: 1002;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.age-restriction-modal .age-restriction-content {
  background: #000;
  border: 2px solid #F82489;
  border-radius: 12px;
  margin: 15% auto;
  padding: 0;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: restrictionSlideIn 0.4s ease-out;
}
@keyframes restrictionSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.age-restriction-modal .age-restriction-body {
  padding: 30px 25px 20px;
}
.age-restriction-modal .age-restriction-body p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}
.age-restriction-modal .age-restriction-footer {
  padding: 20px 25px 25px;
  text-align: center;
}
.age-restriction-modal .age-restriction-footer .age-restriction-btn {
  background: #F82489;
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-family: "sf-ui-display-bold";
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.age-restriction-modal .age-restriction-footer .age-restriction-btn:hover {
  background: #FF6B9D;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(248, 36, 137, 0.4);
}

@media (max-width: 768px) {
  .age-modal .age-content,
  .age-restriction-modal .age-restriction-content {
    margin: 20% auto;
    width: 95%;
  }
  .age-modal .age-footer {
    flex-direction: column;
    gap: 10px;
  }
  .age-modal .age-footer .age-btn {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */