@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  outline: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
:root {
  height: 100%;
  overscroll-behavior: none;
}

body {
  width: 100vw;
  height: 100%;
  overflow-x: hidden;
  background: #222 url("../images/bg.jpg") no-repeat center center;
  background-size: cover !important;
  font-family: "Montserrat", serif;
  min-height: 1100px;
}
@media screen and (max-width: 1320px) {
  body {
    min-height: 940px;
  }
}
@media screen and (max-width: 1024px) {
  body {
    min-height: 780px;
  }
}
@media screen and (max-width: 768px) {
  body {
    min-height: 620px;
  }
}

img {
  max-width: 100%;
  vertical-align: middle;
  opacity: 1;
  transition: opacity 0.3s;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 30px 0 30px;
  margin: 20px 0 0 0;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .header {
    gap: 36px;
  }
}
.header-logo {
  width: 300px;
}
@media screen and (max-width: 1440px) {
  .header-logo {
    max-width: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .header-logo {
    max-width: 130px;
  }
}
.header-title {
  font-family: "Comfortaa";
  font-weight: 900;
  font-size: 72px;
  line-height: 72px;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0px 4.5px 4.5px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1440px) {
  .header-title {
    font-size: 48px;
    line-height: 48px;
  }
}
@media screen and (max-width: 1024px) {
  .header-title {
    font-size: 28px;
    line-height: 35px;
  }
}

.message-box {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  top: 20px;
  right: -400px;
  width: 350px;
  height: 102px;
  background: url("../images/message.png") no-repeat top left;
  background-size: 100%;
}
@media screen and (max-width: 1320px) {
  .message-box {
    right: -250px;
    top: -10px;
    width: 280px;
    height: 90px;
  }
}
@media screen and (max-width: 1024px) {
  .message-box {
    right: -130px;
    top: 26px;
    width: 220px;
    height: 70px;
  }
}
@media screen and (max-width: 768px) {
  .message-box {
    right: -20px;
    top: -40px;
    width: 170px;
    height: 60px;
  }
}
.message-box p {
  padding: 20px 20px 30px;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #000000;
}
@media screen and (max-width: 1320px) {
  .message-box p {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .message-box p {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .message-box p {
    font-size: 9px;
  }
}

.wheel {
  width: 650px;
  height: 650px;
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}
@media screen and (max-width: 1440px) {
  .wheel {
    width: 500px;
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .wheel {
    width: 300px;
    height: 300px;
  }
}
.wheel img {
  width: 100%;
  height: 100%;
}
.wheel-wrapper {
  position: relative;
  margin-right: 600px;
}
@media screen and (max-width: 1440px) {
  .wheel-wrapper {
    margin-right: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .wheel-wrapper {
    margin-right: 100px;
  }
}
@media screen and (max-width: 768px) {
  .wheel-wrapper {
    margin-right: 0;
  }
}
.wheel-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .wheel-section {
    justify-content: flex-start;
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .wheel-section {
    justify-content: center;
    margin-top: 0px;
  }
}

.arrow {
  position: absolute;
  left: -92px;
  top: 50%;
  transform: translateY(-50%) rotate(270deg);
  width: 220px;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  .arrow {
    left: -70px;
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .arrow {
    left: -40px;
    width: 100px;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px); /* Поднимаем элемент вверх */
  }
  60% {
    transform: translateY(-7px); /* Немного опускаем элемент */
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}
.spin-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  margin-top: -80px;
  width: 320px;
  height: 73px;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.25);
  border-radius: 43px;
  transition: transform 0.2s ease;
}
.spin-button:hover {
  animation: bounce 0.6s;
}
@media screen and (max-width: 1024px) {
  .spin-button {
    width: 220px;
    height: 60px;
    margin-top: 10px;
    padding-bottom: 10px;
  }
}
.spin-button img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.spin-button span {
  position: relative;
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .spin-button span {
    font-size: 24px;
  }
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 101;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(13, 20, 41, 0.3529411765) 0%, rgba(3, 29, 41, 0.3529411765) 100%);
}
.popup-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 926px;
  border-radius: 24px;
  padding: 20px;
  overflow: hidden;
  overflow-y: auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .popup-content {
    max-width: 100%;
    flex-direction: column;
    gap: 0px;
  }
}
.popup-bg {
  width: 100%;
}
.popup-text {
  position: relative;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 30px 30px 40px;
  box-sizing: border-box;
  color: #fff;
  background: url("../images/bg_popup.jpg") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .popup-text {
    width: 100%;
    padding: 20px 20px 30px;
    min-height: 480px;
    background-position: top center;
  }
}
.popup-text h2 {
  font-weight: 700;
  font-size: 26px;
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
  font-style: italic;
  text-shadow: 0px 4.71698px 4.71698px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1024px) {
  .popup-text h2 {
    font-size: 18px;
  }
}
.popup-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(9px);
          backdrop-filter: blur(9px);
  padding: 40px;
  width: 50%;
  background: linear-gradient(180deg, rgba(13, 20, 41, 0.3529411765) 0%, rgba(31, 93, 119, 0.3529411765) 100%);
}
@media screen and (max-width: 1024px) {
  .popup-form {
    width: 100%;
    padding: 30px 20px;
  }
}
.popup-form .form-header {
  text-align: center;
  margin-bottom: 20px;
}
.popup-form .form-header h3 {
  font-family: "Comfortaa";
  font-weight: 700;
  font-size: 14px;
  color: #FFFFFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 12px;
}
.popup-form .form-header .form-divider {
  width: 150px;
  height: 2px;
  background: #FFFFFF;
  margin: 0 auto;
}
.popup-form .form-header p {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1024px) {
  .popup-form .form-header p {
    font-size: 12px;
    line-height: 16px;
  }
}
.popup-form .form-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 10px;
}
.popup-form .form-group {
  width: 100%;
  margin-bottom: 10px;
}
.popup-form .form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #9DA2AF;
  margin-bottom: 6px;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .popup-form .form-group label {
    font-size: 12px;
    line-height: 16px;
  }
}
.popup-form .form-group input[type=email],
.popup-form .form-group input[type=text],
.popup-form .form-group input[type=tel],
.popup-form .form-group input[type=password],
.popup-form .form-group input[type=date],
.popup-form .form-group select {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  font-size: 14px;
  color: #FFFFFF;
  transition: all 0.3s ease;
  background: #31343C;
  border: 2px solid #31343C;
  border-radius: 9px;
}
.popup-form .form-group input[type=email]::-moz-placeholder, .popup-form .form-group input[type=text]::-moz-placeholder, .popup-form .form-group input[type=tel]::-moz-placeholder, .popup-form .form-group input[type=password]::-moz-placeholder, .popup-form .form-group input[type=date]::-moz-placeholder, .popup-form .form-group select::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.popup-form .form-group input[type=email]::placeholder,
.popup-form .form-group input[type=text]::placeholder,
.popup-form .form-group input[type=tel]::placeholder,
.popup-form .form-group input[type=password]::placeholder,
.popup-form .form-group input[type=date]::placeholder,
.popup-form .form-group select::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.popup-form .form-group input[type=email]:focus,
.popup-form .form-group input[type=text]:focus,
.popup-form .form-group input[type=tel]:focus,
.popup-form .form-group input[type=password]:focus,
.popup-form .form-group input[type=date]:focus,
.popup-form .form-group select:focus {
  outline: none;
  border-color: #42c2f9;
  background: rgba(66, 194, 249, 0.1);
  box-shadow: 0px 0px 20px rgba(66, 194, 249, 0.3);
}
.popup-form .form-group input[type=email].valid,
.popup-form .form-group input[type=text].valid,
.popup-form .form-group input[type=tel].valid,
.popup-form .form-group input[type=password].valid,
.popup-form .form-group input[type=date].valid,
.popup-form .form-group select.valid {
  border-color: #4CAF50;
  background: rgba(76, 175, 80, 0.1);
}
.popup-form .form-group input[type=email].invalid,
.popup-form .form-group input[type=text].invalid,
.popup-form .form-group input[type=tel].invalid,
.popup-form .form-group input[type=password].invalid,
.popup-form .form-group input[type=date].invalid,
.popup-form .form-group select.invalid {
  border-color: #f44336;
  background: rgba(244, 67, 54, 0.1);
  animation: shake 0.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .popup-form .form-group input[type=email],
  .popup-form .form-group input[type=text],
  .popup-form .form-group input[type=tel],
  .popup-form .form-group input[type=password],
  .popup-form .form-group input[type=date],
  .popup-form .form-group select {
    height: 45px;
    font-size: 13px;
  }
}
.popup-form .form-group select {
  cursor: pointer;
}
.popup-form .form-group select option {
  background: #1a1a1a;
  color: #FFFFFF;
}
.popup-form .form-group .error-message {
  display: block;
  font-size: 10px;
  color: #f44336;
  margin-top: 4px;
  min-height: 14px;
}
.popup-form .form-submit-btn {
  width: 100%;
  max-width: 210px;
  height: 46px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  margin-top: 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.popup-form .form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}
.popup-form .form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.popup-form .form-submit-btn img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.popup-form .form-submit-btn span {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #FFFFFF;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1024px) {
  .popup-form .form-submit-btn span {
    font-size: 14px;
  }
}
.popup-form .form-footer {
  text-align: center;
}
.popup-form .form-footer p {
  font-size: 13px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 1024px) {
  .popup-form .form-footer p {
    font-size: 11px;
    line-height: 16px;
  }
}
.popup-form .form-footer .login-link {
  color: #42c2f9;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.popup-form .form-footer .login-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
.popup-logo {
  width: 300px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .popup-logo {
    width: 150px;
    margin-bottom: 20px;
  }
}

.bonus {
  display: flex;
  flex-direction: column;
}
.bonus-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}
@media screen and (max-width: 1024px) {
  .bonus-info {
    margin: 9px 0;
  }
}

.gradient-text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gradient-text-shadow {
  position: absolute;
  font-size: 40px;
  font-weight: bold;
  color: #000;
  text-shadow: -4px 4px 4px rgba(0, 0, 0, 0.77);
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .gradient-text-shadow {
    font-size: 26px;
  }
}
.gradient-text-item {
  font-size: 40px;
  font-weight: bold;
  background: linear-gradient(90deg, #FADDB0 0%, #BC8835 50%, #FADDB0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .gradient-text-item {
    font-size: 26px;
  }
}
.gradient-text-label {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0px 2px 3.3px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1024px) {
  .gradient-text-label {
    font-size: 14px;
    line-height: 18px;
  }
}
.gradient-text-label.hide {
  color: transparent;
  text-shadow: none;
}

.promo-text {
  max-width: 430px;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  text-align: center;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1024px) {
  .promo-text {
    max-width: 100%;
    font-size: 13px;
    line-height: 17px;
  }
}

.cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  width: 210px;
  height: 46px;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  transition: transform 0.2s ease;
}
.cta-button:hover {
  animation: bounce 0.6s;
}
.cta-button img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.cta-button span {
  pointer-events: none;
  position: relative;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .cta-button span {
    font-size: 12px;
  }
}

.notification {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 300px;
  min-height: 30px;
  display: none;
  z-index: 102;
}
.notification-content {
  width: 100%;
  height: 100%;
  background: #fb4e4e;
  border: 1px solid #ff0000;
  color: #fff;
  border-radius: 10px;
  padding: 10px;
}
.notification-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.notification-content-header p {
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
}
.notification-content-close {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  color: #ff0000;
  font-size: 14px;
  line-height: 14px;
  padding-bottom: 3px;
}
.notification-content-text {
  font-size: 14px;
  line-height: 18px;
}
@media screen and (max-width: 1024px) {
  .notification {
    width: 200px;
  }
}/*# sourceMappingURL=styles.css.map */