@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;600;700;800&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Unbounded', sans-serif;
  background: #0E0A03;
  color: #FFFFFF;
  min-height: 100vh;
}

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

/* ===================== CONTAINER ===================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================== FULL-WIDTH WRAPPERS ===================== */
.header-wrap {
  width: 100%;
  background: #000000;
}

.hero-wrap {
  width: 100%;
  background: #0E0A03;
}

.footer-wrap {
  width: 100%;
  background: radial-gradient(100% 100% at 50% 0%, #3D1F00 0%, #000000 100%);
}

.page-content-wrap {
  width: 100%;
  background: #0E0A03;
  background-image: url('../img/bg-computer.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  flex: 1;
}

/* ===================== HEADER ===================== */
.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 64px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.header__logo-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.header__logo-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  background: linear-gradient(180deg, #FD7824 0%, #EA5B0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #FFFFFF;
  text-transform: uppercase;
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.header__burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #FFFFFF;
  border-radius: 2px;
}

/* ===================== MOBILE MENU ===================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 64px;
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 32px;
  color: #FFFFFF;
  line-height: 1;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex: 1;
}

.mobile-menu__nav a {
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  color: #FFFFFF;
  text-transform: uppercase;
}

/* ===================== HERO SECTION ===================== */
.hero-wrap {
  background-image: url('../img/bg-computer.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 96px 20px;
  gap: 32px;
}

.hero__title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: center;
}

.hero__title {
  font-weight: 800;
  font-size: 48px;
  line-height: 110%;
  color: #FFFFFF;
}

.hero__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #8F8A90;
  max-width: 700px;
}

/* ===================== PLATFORM CARDS GRID ===================== */
.platform-cards {
  display: flex;
  gap: 24px;
  width: 100%;
}

/* ===================== OUR FEATURED PICKS ===================== */
.hero__picks-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  background: linear-gradient(180deg, #FEB061 0%, #EA5B0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================== PLATFORM CARD ===================== */
.platform-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  gap: 16px;
  flex: 1;
  background: rgba(14, 10, 3, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.platform-card__top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.platform-card__logo-wrap {
  width: 180px;
  min-width: 180px;
  height: 140px;
  background: #221A0A;
  border: 1px solid #44380D;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.platform-card__logo-wrap img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

.platform-card__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.platform-card__rating-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.platform-card__score {
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: #FFFFFF;
}

.platform-card__rating-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 4px;
}

.platform-card__label {
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  color: #8F8A90;
}

.platform-card__stars {
  display: flex;
  gap: 2px;
}

.platform-card__star {
  width: 16px;
  height: 16px;
  color: #FFD454;
}

.platform-card__offer {
  font-weight: 700;
  font-size: 13px;
  line-height: 150%;
  text-transform: uppercase;
  color: #FFFFFF;
}

.platform-card__payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.platform-card__payments img {
  height: 36px;
  object-fit: contain;
}

/* Payment text pills */
.payment-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: #221A0A;
  border: 1px solid #44380D;
  border-radius: 32px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: #8F8A90;
}

.platform-card__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  width: 100%;
  height: 48px;
  background: linear-gradient(180deg, #FEB061 0%, #EA5B0B 100%);
  box-shadow: 0px 0px 20px rgba(234, 91, 11, 0.4);
  border-radius: 30px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

/* ===================== DISCLAIMER BAR ===================== */
.disclaimer-bar {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  width: 100%;
  background: rgba(14, 10, 3, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.disclaimer-bar p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #8F8A90;
}

.disclaimer-bar a {
  color: #EA5B0B;
  text-decoration: underline;
}

/* ===================== EVALUATION SECTION ===================== */
.evaluation-section-wrap {
  width: 100%;
  background: #1A150A;
  border-radius: 32px;
  padding: 32px;
}

.evaluation {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  gap: 24px;
  width: 100%;
  background: rgba(14, 10, 3, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.evaluation__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 120%;
  text-align: left;
  width: 100%;
  background: linear-gradient(180deg, #FEB061 0%, #EA5B0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.evaluation__heading {
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FEB061 0%, #EA5B0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.evaluation__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #8F8A90;
}

.evaluation__list {
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #8F8A90;
  list-style: none;
  padding-left: 0;
}

.evaluation__list li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.evaluation__list li::before {
  content: '';
  display: inline-block;
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FEB061 0%, #EA5B0B 100%);
}

/* ===================== FOOTER ===================== */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 20px;
  gap: 24px;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer__nav a {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #FFFFFF;
  text-transform: uppercase;
}

.footer__line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.footer__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.footer__logos a {
  display: flex;
  align-items: center;
}

.footer__logos img {
  height: 48px;
  object-fit: contain;
}

.footer__logos img.gambleaware {
  height: 24px;
}

.footer__logos img.gamcare {
  height: 40px;
}

.footer__logos img.gamstop {
  height: 29px;
}

.footer__copyright {
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
  text-align: center;
  color: #8F8A90;
}

.footer__notice {
  width: 100%;
  padding: 24px 32px;
  background: rgba(14, 10, 3, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.footer__notice-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.footer__notice-text {
  font-weight: 400;
  font-size: 13px;
  line-height: 170%;
  color: #8F8A90;
}

.footer__responsible {
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
}

/* ===================== PAGE CONTENT (About, Contact, Privacy, Terms) ===================== */
.page-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 72px 20px;
  gap: 24px;
}

.page-block {
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 16px;
  width: 100%;
  background: rgba(14, 10, 3, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.page-block__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: #FFFFFF;
}

.page-block__heading {
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FEB061 0%, #EA5B0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-block__subheading {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: #FFFFFF;
}

.page-block__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #8F8A90;
}

.page-block__text a {
  color: #EA5B0B;
  text-decoration: underline;
}

.page-block__list {
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #8F8A90;
  list-style: none;
  padding-left: 0;
}

.page-block__list li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.page-block__list li::before {
  content: '';
  display: inline-block;
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FEB061 0%, #EA5B0B 100%);
}

.page-title {
  font-weight: 800;
  font-size: 48px;
  line-height: 110%;
  color: #FFFFFF;
}

/* About page */
.about-intro {
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 16px;
  width: 100%;
  background: rgba(14, 10, 3, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.about-intro__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: #FFFFFF;
}

.about-intro__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #8F8A90;
}

/* ===================== CONTACT FORM ===================== */
.contact-block {
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 24px;
  width: 100%;
  background: rgba(14, 10, 3, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.contact-block__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: #FFFFFF;
}

.contact-block__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #8F8A90;
}

.contact-block__heading {
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FEB061 0%, #EA5B0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.contact-form__row {
  display: flex;
  gap: 16px;
  width: 100%;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #44380D;
  border-radius: 16px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  outline: none;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #8F8A90;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: #EA5B0B;
}

.contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  width: 100%;
  background: linear-gradient(180deg, #FEB061 0%, #EA5B0B 100%);
  box-shadow: 0px 0px 20px rgba(234, 91, 11, 0.4);
  border-radius: 30px;
  border: none;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
}

/* ===================== COOKIE POPUP ===================== */
.cookie-popup {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 480px;
  background: rgba(14, 10, 3, 0.95);
  border: 1px solid #44380D;
  border-radius: 32px;
  padding: 32px;
  z-index: 999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cookie-popup.active {
  display: block;
}

.cookie-popup__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cookie-popup__text {
  font-weight: 400;
  font-size: 13px;
  line-height: 170%;
  color: #8F8A90;
  margin-bottom: 24px;
}

.cookie-popup__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  background: linear-gradient(180deg, #FEB061 0%, #EA5B0B 100%);
  box-shadow: 0px 0px 20px rgba(234, 91, 11, 0.4);
  border-radius: 30px;
  border: none;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 36px;
  }

  .platform-cards {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .hero {
    padding: 48px 20px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__subtitle {
    font-size: 14px;
  }

  .platform-cards {
    flex-direction: column;
  }

  .platform-card__top {
    flex-direction: column;
    align-items: center;
  }

  .platform-card__logo-wrap {
    width: 100%;
    min-width: unset;
  }

  .platform-card__info {
    align-items: center;
    text-align: center;
  }

  .platform-card__rating-row {
    justify-content: center;
  }

  .platform-card__offer {
    text-align: center;
  }

  .platform-card__payments {
    justify-content: center;
  }

  .footer__logos {
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .page-title {
    font-size: 28px;
  }

  .page-content {
    padding: 40px 16px;
  }

  .contact-form__row {
    flex-direction: column;
  }

  .evaluation__title,
  .about-intro__title,
  .contact-block__title,
  .page-block__title {
    font-size: 22px;
  }

  .cookie-popup {
    left: 12px;
    right: 12px;
    max-width: none;
  }

  .page-block,
  .about-intro,
  .contact-block,
  .evaluation {
    padding: 20px;
  }

  .evaluation-section-wrap {
    padding: 20px;
  }
}
