* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Gabarito", sans-serif;
}

body {
  background: #1D1D1D;
  color: #fff;
}

.bg-1 {
  background: url(../img/image-bg-1.webp) center center/cover no-repeat;
}

.bg-2 {
  background: url(../img/image-bg-2.webp) center center/cover no-repeat;
}

.bg-3 {
  background: url(../img/image-bg-3.webp) center center/cover no-repeat;
}

.bg-4 {
  background: url(../img/image-bg-4.webp) center center/cover no-repeat;
}

.header {
  padding-bottom: 55px;
  margin-bottom: 55px;
}
.header .header-top {
  text-align: center;
}
.header .header-top .logo img {
  width: 100px;
}
.header .header-text {
  margin-top: 55px;
}
.header .header-text .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 55px;
}
.header .header-text .content .text {
  width: 55%;
}
.header .header-text .content .text h1 {
  font-weight: 900;
  font-size: 90px;
}
.header .header-text .content .text h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 0;
}
.header .header-text .content .text p {
  font-size: 20px;
  font-weight: 600;
}
.header .header-text .content .img {
  width: 45%;
}
.header .header-text .content .img img {
  width: 100%;
}
.header .header-text .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 150px;
}
.header .header-text .items .item {
  text-align: center;
}
.header .header-text .items .item img {
  width: 32px;
  margin-bottom: 16px;
}
.header .header-text .items .item p {
  margin-bottom: 0;
  font-weight: 600;
}

.logo-block {
  margin-bottom: 55px;
  /* glowing corners */
}
.logo-block .offer-box {
  position: relative;
  background: #1D1D1D;
  border: 0.5px solid #FFFFFF;
  border-radius: 12px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.logo-block .offer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}
.logo-block .logo-section img {
  width: 224px;
}
.logo-block .logo-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #3DDC84;
  border-radius: 50%;
  margin: 6px 2px 0 0;
}
.logo-block .bonus-section {
  display: flex;
  gap: 12px;
}
.logo-block .bonus-icon img {
  width: 48px;
}
.logo-block .bonus-text strong {
  font-size: 32px;
  display: block;
  margin-bottom: 5px;
}
.logo-block .bonus-text h3 {
  font-size: 24px;
}
.logo-block .bonus-text div {
  font-size: 16px;
}
.logo-block .rating-section {
  text-align: center;
}
.logo-block .rating-value {
  font-size: 28px;
  font-weight: bold;
}
.logo-block .rating-stars img {
  width: 150px;
}
.logo-block .rating-views {
  font-size: 14px;
  color: #fff;
}
.logo-block .btn-section .signup-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}
.logo-block .signup-btn:hover {
  background: #e0e0e0;
}
.logo-block .corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  z-index: -1;
}
.logo-block .tl {
  top: -3px;
  left: -3px;
  border-top: 2px solid #D7CCB7;
  border-left: 2px solid #D7CCB7;
}
.logo-block .tr {
  top: -3px;
  right: -3px;
  border-top: 2px solid #D7CCB7;
  border-right: 2px solid #D7CCB7;
}
.logo-block .bl {
  bottom: -3px;
  left: -3px;
  border-bottom: 2px solid #D7CCB7;
  border-left: 2px solid #D7CCB7;
}
.logo-block .br {
  bottom: -3px;
  right: -3px;
  border-bottom: 2px solid #D7CCB7;
  border-right: 2px solid #D7CCB7;
}

.privacy {
  margin-bottom: 55px;
}
.privacy .container {
  display: flex;
  flex-direction: column;
  gap: 55px;
}
.privacy .container .item h2 {
  margin-bottom: 16px;
  font-weight: 900;
  font-size: 48px;
}
.privacy .container .item h2 span {
  font-weight: 900;
  font-size: 48px;
  background: -webkit-linear-gradient(129deg, rgb(245, 215, 177) 0%, rgb(182, 191, 189) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer {
  background-color: #0C0C0C;
  padding: 30px 0;
}
.footer .top {
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .top .logo img {
  width: 100px;
}
.footer .top .logo-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
.footer .top .logo-footer img {
  width: auto;
  height: 65px;
}
.footer .top .logo-none {
  width: 100px;
}
.footer p {
  margin-bottom: 35px;
}
.footer .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 35px;
}
.footer .bottom h6 {
  font-size: 14px;
  margin-bottom: 0;
}
.footer .bottom .links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer .bottom .links a {
  font-size: 14px;
  text-decoration: none;
  color: #fff;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background-color: #1f1f1f;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  color: #fff;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.popup-title {
  font-size: 20px;
  margin-bottom: 25px;
}

.popup-message {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 35px;
}

.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.popup-btn {
  padding: 16px 40px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 40px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-confirm {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-confirm:hover {
  background-color: white;
  color: black;
}

.btn-decline {
  background-color: white;
  color: black;
}

.btn-decline:hover {
  background-color: #ccc;
}

.bg-n {
  margin-bottom: 0;
}

@media (max-width: 999px) {
  .header .header-text .content {
    flex-direction: column-reverse;
  }
  .header .header-text .content .text {
    width: 100%;
  }
  .header .header-text .content .text h1 {
    font-size: 45px;
  }
  .header .header-text .content .text h2 {
    font-size: 25px;
  }
  .header .header-text .content .text p {
    font-size: 16px;
  }
  .header .header-text .content .img {
    width: 100%;
  }
  .header .header-text .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .logo-block .offer-content {
    flex-direction: column;
  }
  .logo-block .bonus-text strong {
    font-size: 24px;
  }
  .logo-block .bonus-text h3 {
    font-size: 18px;
  }
  .privacy .container .item h2 {
    font-size: 32px;
  }
  .privacy .container .item h2 span {
    font-size: 32px;
  }
  .footer .top {
    flex-direction: column;
  }
  .footer .top .logo-none {
    display: none;
  }
  .footer .top .logo-footer {
    margin-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */