/* Custom Reset & Normalize */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #111;
  line-height: 1.5;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* ===== HEADER ===== */
.prime-header {
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
  padding: 12px 0;
  font-family: 'Inter', sans-serif;
}

.prime-header__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prime-header__logo-link {
  font-size: 24px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

.prime-header__logo-main {
  font-family: 'Playfair Display', serif;
  color: #111;
  letter-spacing: 0.5px;
}

.prime-header__logo-accent {
  margin-left: 4px;
  color: #d72638;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

/* NAVIGATION */
.nav-main__list {
  display: flex;
  gap: 24px;
}

.nav-main__item {}

.nav-main__link {
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

.nav-main__link:hover {
  color: #d72638;
}

/* BURGER BUTTON */
.prime-header__burger {
  background: none;
  font-size: 24px;
  display: none;
  color: #333;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-main__list {
    display: none;
    position: absolute;
    right: 20px;
    top: 64px;
    background: #fff;
    border: 1px solid #ddd;
    flex-direction: column;
    padding: 12px 16px;
    z-index: 10;
  }

  .nav-main__list.nav-main__list--active {
    display: flex;
  }

  .prime-header__burger {
    display: block;
  }
}

/* ===== HERO SECTION ===== */
.top-hero {
  position: relative;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.top-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.top-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 20px;
}

.top-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 18px;
}

.top-hero__subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 400;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.top-hero__btn {
  display: inline-block;
  background-color: #d72638;
  padding: 14px 32px;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  transition: background 0.3s;
}

.top-hero__btn:hover {
  background-color: #b81e2b;
}

.top-hero__notice {
  margin-top: 24px;
  font-size: 14px;
  color: #ffd700;
  font-weight: 600;
}

/* ===== CATALOG SECTION ===== */
.catalog-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.catalog-section__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.catalog-section__title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.catalog-section__subtitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CASINO CARD ===== */
.casino-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  gap: 20px;
  flex-wrap: wrap;
}

.casino-card__logo-block {
  flex: 1 1 180px;
  text-align: center;
}

.casino-card__logo {
  background: #d72638;
  padding: 10px;
  border-radius: 5px;
  max-width: 150px;
  margin: 0 auto 15px;
}

.casino-card__rating i {
  color: #f8b400;
  margin: 0 1px;
  font-size: 16px;
}

.casino-card__bonuses {
  flex: 2 1 300px;
}

.casino-card__bonus-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.casino-card__bonus-item {
  font-size: 16px;
  color: #222;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.casino-card__bonus-item i {
  color: #2ecc71;
  font-size: 16px;
}

/* RIGHT COLUMN */
.casino-card__offer {
  flex: 1 1 180px;
  text-align: center;
}

.casino-card__offer-label {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.casino-card__bonus-amount {
  font-size: 24px;
  font-weight: 700;
  color: #d72638;
  margin-bottom: 12px;
}

.casino-card__btn {
  display: inline-block;
  background-color: #d72638;
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  margin-bottom: 8px;
  transition: background 0.3s ease;
}

.casino-card__btn:hover {
  background-color: #b81e2b;
}

.casino-card__disclaimer {
  font-size: 12px;
  color: #777;
}

/* ===== ADAPTIVE ===== */
@media (max-width: 768px) {
  .casino-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 30px;
  }

  .casino-card__bonuses {
    flex: auto;
    order: 2;
  }

  .casino-card__offer {
    flex: auto;
    order: 3;
  }

  .casino-card__logo-block {
    flex: auto;
    order: 1;
  }
}

.about-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff 60%, #f3f3f3);
}

.about-section__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.about-section__title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  text-align: center;
  font-weight: 800;
  margin-bottom: 30px;
  position: relative;
}

.about-section__title-accent {
  color: #d72638;
}

.about-section__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-section__text {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  text-align: justify;
}

.about-section__highlight {
  font-weight: 600;
  color: #d72638;
}

.faq-section {
  padding: 80px 20px;
  background: #ffffff;
}

.faq-section__container {
  max-width: 880px;
  margin: 0 auto;
  background: #f8f9fb;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.faq-section__title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}

.faq-section__subtitle {
  font-size: 18px;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

.faq-accordion__item {
  border-bottom: 1px solid #ddd;
  padding: 16px 0;
}

.faq-accordion__question {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-accordion__question:hover {
  color: #d72638;
}

.faq-accordion__icon i {
  font-size: 20px;
  color: #d72638;
}

.faq-accordion__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  padding-left: 32px;
}

.faq-accordion__item.active .faq-accordion__answer {
  max-height: 300px;
  opacity: 1;
  margin-top: 12px;
}

.faq-accordion__answer p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

.responsible-section {
  background: #fdfdfd;
  padding: 80px 20px;
}

.responsible-section__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.responsible-section__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d72638;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  gap: 8px;
  margin-bottom: 20px;
}

.responsible-section__age {
  font-size: 20px;
  font-weight: 600;
}

.responsible-section__title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 16px;
}

.responsible-section__subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.responsible-section__content {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* RESOURCE CARDS */
.responsible-section__resources {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.responsible-org {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  width: 280px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: #333;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, border 0.3s ease;
}

.responsible-org:hover {
  border-color: #d72638;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.responsible-org__logo {
  max-width: 160px;
  height: auto;
  margin: 0 auto 14px;
}

.responsible-org__desc {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* LICENSE FOOTER */
.responsible-section__license {
  font-size: 14px;
  color: #777;
  margin-top: 20px;
}

.responsible-section__license a {
  color: #d72638;
  text-decoration: underline;
  font-weight: 500;
}

.site-footer {
  background: #111;
  color: #eee;
  padding: 60px 20px 30px;
  font-size: 15px;
}

.site-footer__container {
  max-width: 1240px;
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.site-footer__column {}

.site-footer__logo {
  font-size: 24px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.site-footer__logo-main {
  font-family: 'Playfair Display', serif;
  color: #fff;
}

.site-footer__logo-accent {
  color: #d72638;
  margin-left: 4px;
  font-family: 'Inter', sans-serif;
}

.site-footer__desc {
  margin-top: 12px;
  color: #ccc;
  line-height: 1.6;
}

.site-footer__heading {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.site-footer__list {
  list-style: none;
  padding: 0;
}

.site-footer__list li {
  margin-bottom: 8px;
}

.site-footer__list a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer__list a:hover {
  color: #d72638;
}

.site-footer__bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
}

.site-footer__copy {
  margin-bottom: 8px;
  color: #aaa;
}

.site-footer__disclaimer {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

/* === COOKIE NOTICE === */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222;
  color: #fff;
  padding: 16px 20px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.cookie-notice a {
  color: #d72638;
  text-decoration: underline;
}

.cookie-notice__btn {
  background: #d72638;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-notice__btn:hover {
  background: #b81e2b;
}

.cookie-notice--visible {
  opacity: 1;
  transform: translateY(0);
}

/* === AGE GATE === */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.age-gate__content {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.age-gate__title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}

.age-gate__text {
  font-size: 16px;
  color: #333;
  margin-bottom: 24px;
}

.age-gate__btn {
  background: #d72638;
  color: #fff;
  padding: 12px 24px;
  font-size: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.age-gate__btn:hover {
  background: #b81e2b;
}

@media (max-width: 520px) {
  .site-footer__column {
    text-align: center;
  }
}

@media (max-width: 460px) {
  .top-hero__title {
    font-size: 32px;
  }
  .top-hero__subtitle {
    font-size: 18px;
  }
  .catalog-section__title,
  .about-section__title,
  .faq-section__title {
    font-size: 28px;
  }
}