@import url('https://fonts.googleapis.com/css2?family=Montserrat: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: 'Montserrat', sans-serif;
  background: #0D122C;
  color: #FFFFFF;
  min-height: 100vh;
}

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

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

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

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

.footer-wrap {
  width: 100%;
  background: #070C18;
}

.page-content-wrap {
  width: 100%;
  background: #111622;
  flex: 1;
}

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

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

.header__logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  object-fit: contain;
}

.header__logo-text {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #FFFFFF;
}

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

.header__nav a {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #FFFFFF;
  transition: color 0.2s;
}

.header__nav a:hover {
  color: #F0E346;
}

.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;
  transition: 0.3s;
}

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

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

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

.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;
}

/* ===================== HERO SECTION ===================== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 72px 42px;
  gap: 24px;
}

.hero__title-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

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

.hero__subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #FFFFFF;
}

/* ===================== PLATFORM CARD ===================== */
.platform-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  gap: 24px;
  width: 100%;
  background: #1F2535;
  border-radius: 12px;
}

.platform-card__logo-wrap {
  width: 255px;
  height: 170px;
  background: #111622;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

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

.platform-card__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.platform-card__score {
  font-weight: 700;
  font-size: 48px;
  line-height: 140%;
  text-align: center;
  color: #FFFFFF;
}

.platform-card__label {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: #FFFFFF;
}

.platform-card__stars {
  display: flex;
  gap: 0;
}

.platform-card__star {
  width: 20px;
  height: 20px;
  color: #F0E346;
}

.platform-card__offer {
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  max-width: 324px;
  flex-shrink: 0;
}

.platform-card__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.platform-card__payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 12px;
  max-width: 278px;
}

.platform-card__payment {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: #111622;
  border-radius: 6px;
  height: 44px;
}

.platform-card__payment img {
  height: 20px;
  object-fit: contain;
}

.platform-card__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  width: 278px;
  height: 48px;
  background: #F0E346;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  color: #070701;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.platform-card__btn:hover {
  opacity: 0.9;
}

/* ===================== DISCLAIMER BAR ===================== */
.disclaimer-bar {
  display: flex;
  align-items: center;
  padding: 24px;
  width: 100%;
  background: #1F2535;
  border-radius: 12px;
}

.disclaimer-bar p {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #FFFFFF;
}

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

/* ===================== EVALUATION SECTION ===================== */
.evaluation {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  gap: 24px;
  width: 100%;
  background: #1F2535;
  border-radius: 12px;
}

.evaluation__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 100%;
  color: #FFFFFF;
  width: 100%;
}

.evaluation__block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.evaluation__heading {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
  color: #F0E346;
}

.evaluation__text {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #FFFFFF;
}

.evaluation__list {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #FFFFFF;
  list-style: disc;
  padding-left: 24px;
}

.evaluation__list li {
  margin-bottom: 4px;
}

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

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

.footer__nav a {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #FFFFFF;
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: #F0E346;
}

.footer__line {
  width: 100%;
  height: 1px;
  background: #1F2535;
}

.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: 16px;
  line-height: 120%;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

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

.page-block {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  width: 100%;
  background: #1F2535;
  border-radius: 12px;
}

.page-block__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 100%;
  color: #FFFFFF;
}

.page-block__heading {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
  color: #F0E346;
}

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

.page-block__text {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #FFFFFF;
}

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

.page-block__list {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #FFFFFF;
  list-style: disc;
  padding-left: 24px;
}

.page-block__list li {
  margin-bottom: 4px;
}

/* Page title outside blocks */
.page-title {
  font-weight: 800;
  font-size: 64px;
  line-height: 100%;
  color: #FFFFFF;
}

/* About page specific */
.about-intro {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  width: 100%;
  background: #1F2535;
  border-radius: 12px;
}

.about-intro__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 100%;
  color: #FFFFFF;
}

.about-intro__text {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #FFFFFF;
}

/* ===================== CONTACT FORM ===================== */
.contact-block {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 24px;
  width: 100%;
  background: #1F2535;
  border-radius: 12px;
}

.contact-block__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 100%;
  color: #FFFFFF;
}

.contact-block__text {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #FFFFFF;
}

.contact-block__heading {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
  color: #F0E346;
}

.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: #111622;
  border: 1px solid #2A3045;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

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

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

.contact-form__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  width: 100%;
  background: #F0E346;
  border-radius: 12px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #070701;
  cursor: pointer;
  transition: opacity 0.2s;
}

.contact-form__submit:hover {
  opacity: 0.9;
}

/* ===================== COOKIE POPUP ===================== */
.cookie-popup {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 480px;
  background: #111622;
  border-radius: 16px;
  padding: 32px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

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

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

.cookie-popup__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.cookie-popup__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  background: #F0E346;
  border-radius: 12px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #070701;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-popup__btn:hover {
  opacity: 0.9;
}

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

  .platform-card {
    flex-wrap: wrap;
    justify-content: center;
  }

  .platform-card__offer {
    max-width: 100%;
  }
}

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

  .header__burger {
    display: flex;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .platform-card {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .platform-card__logo-wrap {
    width: 200px;
    height: 130px;
  }

  .platform-card__offer {
    max-width: 100%;
  }

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

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

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

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

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

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

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