*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f1f1f;
  background-color: #ffffff;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

.header {
  background: linear-gradient(90deg, #1e293b, #0f172a);
  padding: 14px 0;
}

.header__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.header__logo {
  font-size: 22px;
  font-weight: 700;
  font-family: 'Merriweather Sans', sans-serif;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffc107, #ff8f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header__responsibility {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #cbd5e1;
  font-weight: 500;
}

@media (max-width: 400px) {
  .header__responsibility {
    gap: 4px;
    font-size: 12px;
  }
  .header__responsibility .material-icons {
    font-size: 18px;
  }
}

.header__icon {
  font-size: 18px;
  color: #facc15;
}

.intro {
  background: linear-gradient(135deg, #1e1e2f, #2c2c47, #1e1e2f);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.intro__container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro__content {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 860px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.intro__title {
  font-size: 34px;
  font-family: 'Merriweather Sans', sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .intro__title {
    font-size: 28px;
  }
}

.intro__description {
  font-size: 18px;
  font-weight: 400;
  color: #e2e8f0;
  line-height: 1.7;
}

.catalog {
  padding: 60px 0;
  background-color: #f8fafc;
}

.catalog__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.platform-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.platform-card__row {
  display: grid;
  grid-template-columns: 130px 160px 1fr 160px;
  align-items: center;
  padding: 24px;
  gap: 20px;
}

.platform-card__logo img {
  max-width: 100%;
  height: auto;
  display: block;
}

.platform-card__rating .material-icons {
  font-size: 20px;
  color: #fbbf24;
}

.platform-card__bonus {
  font-size: 16px;
  color: #0f172a;
  font-weight: 600;
  background: #fef3c7;
  padding: 12px 16px;
  border-radius: 10px;
  text-align: center;
}

.platform-card__action {
  text-align: right;
}

.platform-card__button {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(90deg, #2563eb, #1e40af);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.3s;
}

.platform-card__button:hover {
  background: linear-gradient(90deg, #1d4ed8, #1e3a8a);
}

.platform-card__disclaimer {
  font-size: 12px;
  color: #64748b;
  background-color: #f1f5f9;
  padding: 14px 24px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

@media (max-width: 1024px) {
  .platform-card__row {
    grid-template-columns: 120px 120px 1fr 120px;
    gap: 16px;
    padding: 20px;
  }

  .platform-card__bonus {
    font-size: 15px;
    padding: 10px 14px;
  }

  .platform-card__button {
    padding: 10px 16px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .platform-card__row {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    text-align: center;
    gap: 16px;
    padding: 20px 16px;
  }

  .platform-card__rating {
    justify-content: center;
  }

  .platform-card__action {
    text-align: center;
  }

  .platform-card__bonus {
    margin: 0 auto;
    max-width: 300px;
  }

  .platform-card__logo img {
    margin: 0 auto;
    max-height: 70px;
  }

  .platform-card__button {
    width: 100%;
    max-width: 200px;
  }

  .platform-card__disclaimer {
    font-size: 11px;
    padding: 12px 16px;
  }
}

.info {
  padding: 80px 0;
  background: #f1f5f9;
}

.info__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.info__content {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

.info__title {
  font-size: 30px;
  font-weight: 700;
  font-family: 'Merriweather Sans', sans-serif;
  color: #1e293b;
  text-align: center;
  margin-bottom: 40px;
}

.info__section + .info__section {
  margin-top: 32px;
}

.info__subtitle {
  font-size: 20px;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 12px;
  border-left: 4px solid #2563eb;
  padding-left: 12px;
}

.info__section p {
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 16px;
}

.info__list {
  padding-left: 20px;
  list-style-type: disc;
}

.info__list li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #334155;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .info__content {
    padding: 30px 20px;
  }

  .info__title {
    font-size: 26px;
  }

  .info__subtitle {
    font-size: 18px;
  }

  .info__section p,
  .info__list li {
    font-size: 15px;
  }
}

.footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding: 60px 0 40px;
  font-size: 14px;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}

.footer__disclaimer p {
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  font-size: 14px;
}

.footer__disclaimer a {
  color: #3b82f6;
  word-break: break-all;
}

.footer__support-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
}

.footer__support-link img {
  max-width: 160px;
  max-height: 40px;
  display: block;
  transition: transform 0.3s ease;
}

.footer__support-link:hover img {
  transform: scale(1.05);
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer__links a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: #ffffff;
}

.footer__copyright {
  color: #94a3b8;
  font-size: 13px;
}

@media (max-width: 600px) {
  .footer__support-logos {
    flex-direction: column;
    gap: 16px;
  }

  .footer__links {
    flex-direction: column;
    gap: 10px;
  }

  .footer__disclaimer p {
    font-size: 13px;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #0f172a;
  color: #e2e8f0;
  padding: 20px 16px;
  z-index: 9999;
  display: none;
  animation: slideUp 0.4s ease forwards;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.cookie-banner__text {
  font-size: 14px;
  line-height: 1.6;
}

.cookie-banner__text a {
  color: #3b82f6;
  text-decoration: underline;
}

.cookie-banner__button {
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-banner__button:hover {
  background: #1d4ed8;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
  }
}

@media (min-width: 768px) {
  .cookie-banner__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-gate__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(5px);
}

.age-gate__modal {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  text-align: center;
}

.age-gate__title {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 22px;
  color: #111827;
  margin-bottom: 16px;
}

.age-gate__text {
  font-size: 15px;
  color: #374151;
  margin-bottom: 24px;
}

.age-gate__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-gate__button {
  padding: 12px 20px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.age-gate__button--accept {
  background: #22c55e;
  color: white;
}

.age-gate__button--accept:hover {
  background: #16a34a;
}

.age-gate__button--decline {
  background: #e11d48;
  color: white;
}

.age-gate__button--decline:hover {
  background: #be123c;
}
