* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #252C7A rgb(232.25, 232.25, 232.25);
}

body {
  font-family: "Inter", sans-serif;
  background-color: #F5F5F5;
  color: #000000;
  line-height: 1.5;
  font-size: 16px;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgb(232.25, 232.25, 232.25);
}

::-webkit-scrollbar-thumb {
  background: #252C7A;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(48.8679245283, 58.1132075472, 161.1320754717);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--primary {
  background-color: #E30033;
  color: #FFFFFF;
}
.btn--primary:hover {
  background-color: rgb(176, 0, 39.5418502203);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(227, 0, 51, 0.3);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--outline {
  background: transparent;
  border: 2px solid #E30033;
  color: #E30033;
}
.btn--outline:hover {
  background-color: #E30033;
  color: #FFFFFF;
}

.section-title {
  font-family: "Impact", Arial Black, sans-serif;
  font-size: 42px;
  text-transform: uppercase;
  margin-left: 10%;
  margin-bottom: 40px;
  letter-spacing: -1px;
}
@media (max-width: 992px) {
  .section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
    margin-left: 5%;
    margin-bottom: 24px;
  }
}

.header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header__content {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.header__logo-img {
  width: 140px;
  height: auto;
}
@media (max-width: 768px) {
  .header__logo-img {
    width: 100px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media (max-width: 992px) {
  .header__nav {
    display: none;
  }
}
.header__link {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000000;
  transition: color 0.3s ease;
  position: relative;
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #E30033;
  transition: width 0.3s ease;
}
.header__link:hover {
  color: #E30033;
}
.header__link:hover::after {
  width: 100%;
}
@media (max-width: 992px) {
  .header__btn {
    display: none;
  }
}
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (max-width: 992px) {
  .header__burger {
    display: flex;
  }
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000000;
  transition: all 0.3s ease;
}
.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.header__mobile-nav {
  display: none;
  flex-direction: column;
  padding: 20px 5%;
  background-color: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.header__mobile-nav.active {
  display: flex;
}
.header__mobile-link {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: color 0.3s ease;
}
.header__mobile-link:hover {
  color: #E30033;
}
.header__mobile-btn {
  margin-top: 20px;
  width: 100%;
}

.hero {
  background-color: #F5F5F5;
  overflow: hidden;
}
.hero__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 500px;
}
@media (max-width: 992px) {
  .hero__content {
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }
}
.hero__text {
  flex: 1;
  padding: 60px 40px 60px 10%;
}
@media (max-width: 992px) {
  .hero__text {
    padding: 40px 5%;
    order: 2;
  }
}
.hero__title {
  font-family: "Impact", Arial Black, sans-serif;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .hero__title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 28px;
  }
}
.hero__amount {
  font-family: "Impact", Arial Black, sans-serif;
  font-size: 72px;
  color: #E30033;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .hero__amount {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  .hero__amount {
    font-size: 36px;
  }
}
.hero__desc {
  font-size: 17px;
  color: #000000;
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 480px;
}
@media (max-width: 992px) {
  .hero__desc {
    max-width: 100%;
    font-size: 15px;
  }
}
.hero__btn {
  padding: 16px 48px;
  font-size: 15px;
}
@media (max-width: 768px) {
  .hero__btn {
    width: 100%;
    padding: 16px 32px;
  }
}
.hero__image {
  flex: 1;
  max-width: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 992px) {
  .hero__image {
    max-width: 100%;
    order: 1;
  }
}
.hero__image img {
  width: 100%;
  max-width: 550px;
  height: auto;
}

.divider {
  background-color: #252C7A;
  height: 70px;
}
@media (max-width: 768px) {
  .divider {
    height: 50px;
  }
}

.info {
  padding: 70px 0;
}
@media (max-width: 768px) {
  .info {
    padding: 50px 0;
  }
}
.info__container {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .info__container {
    width: 90%;
  }
}
.info__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .info__block {
    flex-direction: column;
    gap: 30px;
  }
}
.info__block:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .info__block--reverse {
    flex-direction: row;
  }
}
@media (max-width: 992px) {
  .info__block--reverse {
    flex-direction: column;
  }
}
.info__text {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .info__text {
    font-size: 15px;
  }
}
.info__img {
  flex: 0 0 45%;
  max-width: 45%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .info__img {
    max-width: 100%;
    flex: none;
    width: 100%;
  }
}

.rules {
  padding: 70px 0;
}
@media (max-width: 768px) {
  .rules {
    padding: 50px 0;
  }
}
.rules__container {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 1200px) {
  .rules__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .rules__container {
    grid-template-columns: 1fr;
    width: 90%;
    gap: 24px;
  }
}
.rules__item {
  padding: 10px 0;
}
.rules__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.rules__number {
  font-family: "Impact", Arial Black, sans-serif;
  font-size: 48px;
  color: #252C7A;
  opacity: 0.25;
  line-height: 1;
}
@media (max-width: 768px) {
  .rules__number {
    font-size: 40px;
  }
}
.rules__title {
  font-size: 18px;
  font-weight: 800;
  font-style: italic;
}
@media (max-width: 768px) {
  .rules__title {
    font-size: 16px;
  }
}
.rules__text {
  font-size: 15px;
  color: #000000;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .rules__text {
    font-size: 14px;
  }
}

.calculator {
  background: linear-gradient(145deg, #252C7A 0%, rgb(22.758490566, 27.0641509434, 75.041509434) 50%, rgb(15.6377358491, 18.5962264151, 51.5622641509) 100%);
  padding: 80px 0;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .calculator {
    padding: 50px 0;
    margin: 40px 0;
  }
}
.calculator__bg-element {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.calculator__bg-element--1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(247, 147, 26, 0.1) 0%, transparent 70%);
}
.calculator__bg-element--2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -50px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}
.calculator__bg-element--3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(227, 0, 51, 0.08) 0%, transparent 70%);
}
.calculator__wrapper {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.calculator__title {
  font-family: "Impact", Arial Black, sans-serif;
  font-size: 48px;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 992px) {
  .calculator__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .calculator__title {
    font-size: 28px;
  }
}
.calculator__subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .calculator__subtitle {
    font-size: 14px;
    margin-bottom: 32px;
  }
}
.calculator__content {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 992px) {
  .calculator__content {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
.calculator__card {
  flex: 1;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 10px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s ease;
}
.calculator__card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.calculator__card--result {
  background: linear-gradient(135deg, rgba(247, 147, 26, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(247, 147, 26, 0.3);
}
.calculator__card--result:hover {
  background: linear-gradient(135deg, rgba(247, 147, 26, 0.2) 0%, rgba(255, 255, 255, 0.12) 100%);
}
@media (max-width: 992px) {
  .calculator__card {
    width: 100%;
    max-width: 100%;
  }
}
.calculator__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.calculator__card-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.calculator__btc-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
}
.calculator__btc-badge--gold {
  background: linear-gradient(135deg, rgba(247, 147, 26, 0.3) 0%, rgba(247, 147, 26, 0.15) 100%);
  border: 1px solid rgba(247, 147, 26, 0.3);
}
.calculator__btc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #f7931a 0%, rgb(214.5063291139, 120.835443038, 7.4936708861) 100%);
  border-radius: 50%;
  font-weight: bold;
  font-size: 12px;
  color: #FFFFFF;
}
.calculator__input-wrapper {
  position: relative;
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
}
.calculator__input {
  width: 100%;
  padding: 20px 70px 20px 20px;
  border: none;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  transition: all 0.3s ease;
}
.calculator__input::placeholder {
  color: #8B8B8B;
  font-weight: 400;
}
.calculator__input:focus {
  outline: none;
}
.calculator__input--result {
  color: #252C7A;
  background: linear-gradient(90deg, rgba(247, 147, 26, 0.08) 0%, transparent 100%);
}
@media (max-width: 768px) {
  .calculator__input {
    font-size: 20px;
    padding: 16px 60px 16px 16px;
  }
}
.calculator__input-suffix {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 700;
  color: #8B8B8B;
}
@media (max-width: 768px) {
  .calculator__input-suffix {
    right: 16px;
  }
}
.calculator__arrow-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 992px) {
  .calculator__arrow-wrapper {
    flex-direction: row;
    gap: 16px;
  }
}
.calculator__arrow {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #E30033 0%, rgb(150.5, 0, 33.8127753304) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 8px 30px rgba(227, 0, 51, 0.4);
  transition: all 0.3s ease;
}
.calculator__arrow:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(227, 0, 51, 0.5);
}
@media (max-width: 992px) {
  .calculator__arrow {
    transform: rotate(90deg);
    width: 48px;
    height: 48px;
  }
  .calculator__arrow:hover {
    transform: rotate(90deg) scale(1.05);
  }
}
.calculator__arrow svg {
  width: 24px;
  height: 24px;
}
.calculator__multiplier {
  font-family: "Impact", Arial Black, sans-serif;
  font-size: 20px;
  color: #f7931a;
  text-shadow: 0 2px 10px rgba(247, 147, 26, 0.5);
}
@media (max-width: 992px) {
  .calculator__multiplier {
    font-size: 18px;
  }
}
.calculator__btn {
  display: block;
  margin: 40px auto 0;
  padding: 18px 60px;
  font-size: 16px;
  box-shadow: 0 8px 30px rgba(227, 0, 51, 0.4);
}
.calculator__btn:hover {
  box-shadow: 0 12px 40px rgba(227, 0, 51, 0.5);
}
@media (max-width: 768px) {
  .calculator__btn {
    width: 100%;
    padding: 16px 40px;
    margin-top: 32px;
  }
}

.crypto {
  padding: 70px 0;
}
@media (max-width: 768px) {
  .crypto {
    padding: 50px 0;
  }
}
.crypto__grid {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1200px) {
  .crypto__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .crypto__grid {
    grid-template-columns: 1fr;
    width: 90%;
  }
}
.crypto__card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.crypto__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.crypto__logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.crypto__text {
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
  color: #000000;
}
.crypto__btn {
  width: 100%;
  margin-top: auto;
}

.qr-section {
  padding: 50px 0;
}
@media (max-width: 768px) {
  .qr-section {
    padding: 40px 0;
  }
}
.qr-section .qr__grid {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .qr-section .qr__grid {
    grid-template-columns: 1fr;
    width: 90%;
  }
}
.qr-section .qr__card {
  display: flex;
  gap: 24px;
  padding: 28px;
  background-color: #FFFFFF;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.qr-section .qr__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .qr-section .qr__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.qr-section .qr__image {
  flex-shrink: 0;
}
.qr-section .qr__image img {
  width: 130px;
  height: 130px;
  border-radius: 6px;
}
@media (max-width: 576px) {
  .qr-section .qr__image img {
    width: 150px;
    height: 150px;
  }
}
.qr-section .qr__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.qr-section .qr__title {
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .qr-section .qr__title {
    font-size: 16px;
  }
}
.qr-section .qr__text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #000000;
}
.qr-section .qr__btn {
  align-self: flex-start;
}
@media (max-width: 576px) {
  .qr-section .qr__btn {
    align-self: center;
    width: 100%;
  }
}

.footer {
  padding: 70px 0 40px;
  background-color: #F5F5F5;
}
@media (max-width: 768px) {
  .footer {
    padding: 50px 0 30px;
  }
}
.footer__container {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer__container {
    width: 90%;
  }
}
.footer__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 14px 0;
}
@media (max-width: 992px) {
  .footer__row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .footer__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.footer__row--header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 18px;
  margin-bottom: 10px;
}
.footer__row--header span {
  color: #8B8B8B;
  font-size: 14px;
  font-weight: 600;
}
.footer__row a {
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer__row a:hover {
  color: #E30033;
}
.footer__bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}
.footer__bottom p {
  font-size: 14px;
  color: #8B8B8B;
}

/*# sourceMappingURL=style.css.map */
