/* ============================================================
   FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;700&display=swap');

@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('public/fonts/mulish-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('public/fonts/mulish-700.woff2') format('woff2');
}

/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --bg-color: #12141A;
  --menu-link: #FFFFFF;
  --secondary-outline: #FFFFFF;
  --primary-bg: #7C3AED;
  --white-white-alpha-64: rgba(255, 255, 255, 0.64);
  --surface: #171821;
  --spacing-md: 12px;
  --spacing-lg: 16px;
  --spacing-3xl: 48px;
  --primary-radius: 8px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --heading-h1: 48px;
  --heading-h2: 36px;
  --heading-h3: 24px;
  --heading-h1-line-height: 56px;
  --heading-h2-line-height: 44px;
  --text-sm-line-height: 20px;
}

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

html, body {
  font-family: 'Mulish', sans-serif;
  background: var(--bg-color);
  color: var(--menu-link);
}

body.menu-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}

html.menu-open {
  overflow: hidden !important;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0;
}
h2 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
}
h3 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
}
p {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-sm);
  line-height: var(--text-sm-line-height);
  color: var(--white-white-alpha-64);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: var(--font-size-md);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--primary-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.btn-login {
  height: 48px;
  background: transparent;
  color: var(--menu-link);
  border-color: var(--secondary-outline);
}
.btn-login:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn-signup {
  height: 48px;
  background: var(--primary-bg);
  color: var(--menu-link);
  border: 1px solid #9F67FF;
  box-shadow: 0 4px 16.6px 0 rgba(124, 58, 237, 0.32);
}
.btn-signup:hover {
  background: #6D28D9;
  box-shadow: 0 6px 20px 0 rgba(124, 58, 237, 0.45);
}
.btn-signup:active {
  transform: translateY(1px);
}

/* ============================================================
   APP WRAPPER
   ============================================================ */
.app-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.main-content > * {
  min-width: 0;
}

/* ============================================================
   BANNER (shared for bonuses, casino, slug pages)
   ============================================================ */
.banner-container {
  width: 100%;
  min-height: 400px;
  border-radius: 16px;
  padding: var(--spacing-3xl);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.banner-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.banner-picture-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.banner-content {
  max-width: 520px;
  width: 100%;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
}
.banner-title {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: var(--heading-h1);
  line-height: var(--heading-h1-line-height);
  color: var(--menu-link);
  margin-bottom: 24px;
}
.banner-description {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-md);
  line-height: 24px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}
.banner-button {
  width: 240px;
  height: 48px;
  padding: var(--spacing-md) var(--spacing-lg);
  gap: 8px;
  border-radius: var(--primary-radius);
}

/* ============================================================
   INDEX PAGE
   ============================================================ */
.home-page {
  background: var(--bg-color);
}
.home-section {
  padding-top: 48px;
  padding-left: 80px;
  padding-right: 80px;
}

/* Hero */
.hero-container {
  width: 100%;
  min-height: 400px;
  border-radius: 16px;
  padding: var(--spacing-3xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-picture-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-content {
  max-width: 520px;
  z-index: 2;
  position: relative;
}
.hero-title {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: var(--heading-h1);
  line-height: var(--heading-h1-line-height);
  color: var(--menu-link);
  margin-bottom: 24px;
}
.hero-description {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-md);
  line-height: 24px;
  color: var(--white-white-alpha-64);
  margin-bottom: 32px;
}
.hero-button {
  width: 240px;
  height: 48px;
}

/* Login Section */
.login-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-top: 48px;
  justify-content: center;
}
.login-image {
  flex: 1;
  max-width: 616px;
  aspect-ratio: 1 / 1;
}
.login-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.login-content {
  flex: 1;
  max-width: 616px;
  display: flex;
  flex-direction: column;
}
.login-content h2 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: var(--heading-h2);
  line-height: var(--heading-h2-line-height);
  color: #FFFFFF;
  margin-bottom: 16px;
}
.login-content h3 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: var(--font-size-md);
  line-height: 24px;
  color: #FFFFFF;
  margin: 0 0 4px 0;
}
.login-content p {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-sm);
  line-height: var(--text-sm-line-height);
  color: var(--white-white-alpha-64);
  margin: 0 0 4px 0;
}
.login-content ol {
  list-style-position: outside;
  padding-left: 20px;
  margin: 0 0 32px 0;
}
.login-content ol li {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-sm);
  line-height: var(--text-sm-line-height);
  color: var(--white-white-alpha-64);
}
.login-content .ref_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 48px;
  border-radius: var(--primary-radius);
  background: var(--primary-bg, #7C3AED);
  border: 1px solid transparent;
  box-shadow: 0 4px 16.6px 0 rgba(124, 58, 237, 0.32);
  text-decoration: none;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: var(--font-size-md);
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.login-content .ref_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(124, 58, 237, 0.4);
}

/* Features Section */
.features-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
}
.features-title {
  text-align: center;
  margin-bottom: 16px;
  font-size: var(--heading-h1);
  line-height: var(--heading-h1-line-height);
}
.features-description {
  margin-bottom: 48px;
  text-align: center;
}
.features-description h2 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: var(--heading-h2);
  line-height: var(--heading-h2-line-height);
  color: #FFFFFF;
  margin-bottom: 8px;
}
.features-description p,
.features-description span {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-sm);
  line-height: var(--text-sm-line-height);
  color: var(--white-white-alpha-64);
  margin: 0 auto;
}
.features-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.feature-card {
  width: calc(25% - 16px);
  max-width: 308px;
  background: #171821;
  border-radius: 16px;
  padding: 24px 24px 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature-card-title {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: var(--heading-h3);
  line-height: var(--heading-h2-line-height);
  color: #FFFFFF;
  margin: 0 0 8px 0;
}
.feature-card-text {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-sm);
  line-height: var(--text-sm-line-height);
  color: var(--white-white-alpha-64);
  margin: 0;
}

/* Bonuses Section (index) */
.bonuses-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
}
.bonuses-title {
  text-align: center;
  margin-bottom: 24px;
  font-size: var(--heading-h1);
  line-height: var(--heading-h1-line-height);
}
.bonuses-description {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
  color: var(--white-white-alpha-64);
}
.bonuses-note {
  text-align: center;
  max-width: 820px;
  margin: 32px auto 0;
  color: var(--white-white-alpha-64);
}
.bonuses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.bonus-card {
  width: calc(50% - 8px);
  max-width: 632px;
  height: 300px;
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  background-color: #171821;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.bonus-content {
  position: relative;
  z-index: 2;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bonus-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.bonus-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 240px;
}
.bonus-label {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #FFC107;
  margin: 0;
}
.bonus-title {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
  margin: 0;
}
.bonus-text {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-sm);
  line-height: var(--text-sm-line-height);
  color: var(--white-white-alpha-64);
  margin: 0;
}

/* FAQ Section */
.faq-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 64px;
  padding-bottom: 48px;
}
.faq-title {
  text-align: center;
  margin-bottom: 32px;
  font-size: var(--heading-h1);
  line-height: var(--heading-h1-line-height);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
}
.faq-item {
  background: #171821;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  text-align: left;
  transition: all 0.3s ease;
}
.faq-question:hover {
  opacity: 0.8;
}
.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #FFFFFF;
}
.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 32px 24px 32px;
  display: none;
}
.faq-item.is-open .faq-answer {
  display: block;
}
.faq-answer p,
.faq-answer div {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-sm);
  line-height: var(--text-sm-line-height);
  color: var(--white-white-alpha-64);
  margin: 0;
}
.faq-answer b,
.faq-answer strong {
  font-weight: 700;
  color: #FFFFFF;
}

/* ============================================================
   BONUSES / CASINO PAGE
   ============================================================ */
.bonuses-page,
.casino-page {
  background: var(--bg-color);
}
.bonuses-page-section,
.casino-page-section {
  padding-top: 40px;
  padding-left: 80px;
  padding-right: 80px;
}
.content-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 48px;
}
.content-section {
  max-width: 1280px;
  margin: 0 auto;
}

/* Info Cards (index content) */
/* Text Sections (index / bonuses) */
.text-section {
  width: 100%;
  max-width: 1200px;
  margin: 64px auto 0;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
}
.text-section__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 14px;
  color: var(--primary-bg);
}
.text-section__body {
  flex: 1;
  min-width: 0;
}
.text-section__title {
  font-size: var(--heading-h2);
  line-height: var(--heading-h2-line-height);
  text-align: left;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.text-section p {
  align-self: stretch;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 12px;
}
.text-section p:last-child {
  margin-bottom: 0;
}

/* Bonus table (bonuses page) */
.bonus-table-wrap {
  align-self: stretch;
  overflow-x: auto;
  margin: 8px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 20px;
}
.bonus-table th,
.bonus-table td {
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.bonus-table th {
  background: rgba(124, 58, 237, 0.12);
  color: #FFFFFF;
  font-weight: 700;
}
.bonus-table td {
  color: var(--white-white-alpha-64);
}
.bonus-table tbody tr:nth-child(odd) td {
  background: rgba(255, 255, 255, 0.02);
}
.bonus-table__total td {
  color: #FFFFFF;
  font-weight: 700;
  background: rgba(124, 58, 237, 0.08) !important;
  border-bottom: none;
}
.bonus-table tbody tr:last-child td {
  border-bottom: none;
}

/* Steps list (bonuses page) */
.steps-list {
  align-self: stretch;
  list-style: none;
  counter-reset: step;
  margin: 8px 0 16px;
  padding: 0;
}
.steps-list li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  font-size: 15px;
  line-height: 24px;
  color: var(--white-white-alpha-64);
}
.steps-list li::before {
  content: counter(step);
  flex: 0 0 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 50%;
  color: var(--primary-bg);
  font-weight: 700;
  font-size: 14px;
}

.info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.info-card {
  flex: 1 1 calc(50% - 8px);
  min-width: 320px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.info-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
}
.info-card--wide {
  flex-basis: 100%;
}
.info-card--accent {
  border-color: rgba(124, 58, 237, 0.35);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, var(--surface) 45%);
}
.info-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 14px;
  color: var(--primary-bg);
  margin-bottom: 20px;
}
.info-card h2 {
  font-size: var(--heading-h3);
  line-height: 32px;
  margin-bottom: 14px;
  color: #FFFFFF;
}
.info-card p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 12px;
}
.info-card__list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}
.info-card__list li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 15px;
  line-height: 24px;
  color: var(--white-white-alpha-64);
}
.info-card__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-bg);
}
.info-card p:last-child {
  margin-bottom: 0;
}
.content-html h2 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: var(--heading-h2);
  line-height: var(--heading-h2-line-height);
  color: #FFFFFF;
  margin: 0 0 16px 0;
}
.content-html h3 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: var(--heading-h3);
  line-height: var(--heading-h2-line-height);
  color: #FFFFFF;
  margin: 24px 0 8px 0;
}
.content-html h4 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  margin: 16px 0 8px 0;
}
.content-html p {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-sm);
  line-height: var(--text-sm-line-height);
  color: var(--white-white-alpha-64);
  margin: 0 0 16px 0;
}
.content-html ol,
.content-html ul {
  list-style-position: outside;
  padding-left: 20px;
  margin: 0 0 16px 0;
}
.content-html ol li,
.content-html ul li {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-sm);
  line-height: var(--text-sm-line-height);
  color: var(--white-white-alpha-64);
  margin-bottom: 4px;
}
.content-html b,
.content-html strong {
  font-weight: 700;
  color: #FFFFFF;
}
.content-html a {
  color: #FFCF68;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.content-html a:hover {
  opacity: 0.8;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ============================================================
   DYNAMIC (SLUG) PAGE
   ============================================================ */
.dynamic-page {
  background: var(--bg-color);
}
.dynamic-section {
  padding-top: 48px;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  min-height: 100%;
}
.dynamic-container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
}
.dynamic-title {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: #FFFFFF;
  margin: 0 0 24px 0;
}
.dynamic-shore {
  margin-bottom: 48px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.dynamic-shore h2 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: var(--heading-h2);
  line-height: var(--heading-h2-line-height);
  color: var(--menu-link);
  margin: 0 0 16px 0;
}
.dynamic-shore p {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-md);
  line-height: 24px;
  color: var(--white-white-alpha-64);
  margin: 0;
}
.dynamic-content p {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-sm);
  line-height: var(--text-sm-line-height);
  color: var(--white-white-alpha-64);
  margin: 0 0 16px 0;
}
.dynamic-content h2 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
  margin: 24px 0 8px 0;
}
.dynamic-content h3 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  margin: 20px 0 8px 0;
}
.dynamic-content h4 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  margin: 16px 0 8px 0;
}
.dynamic-content ol,
.dynamic-content ul {
  list-style-position: outside;
  padding-left: 20px;
  margin: 0 0 16px 0;
}
.dynamic-content ol li,
.dynamic-content ul li {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-sm);
  line-height: var(--text-sm-line-height);
  color: var(--white-white-alpha-64);
  margin-bottom: 4px;
}
.dynamic-content b,
.dynamic-content strong {
  font-weight: 700;
  color: #FFFFFF;
}
.dynamic-content i,
.dynamic-content em {
  font-style: italic;
}
.dynamic-content a {
  color: #FFCF68;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.dynamic-content a:hover {
  opacity: 0.8;
}

/* ============================================================
   GAMES GRID
   ============================================================ */
.games-section { padding: 48px 20px; max-width: 1160px; margin: 0 auto; }
.games-section__title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.games-section__subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin: 0 0 24px;
}
.games-section__text {
  margin: 0 0 28px;
}
.games-section__text p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 12px;
}
.games-section__text p:last-child {
  margin-bottom: 0;
}
.games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.game-card {
  width: calc(25% - 9px);
  border-radius: 12px;
  overflow: hidden;
  background: #171821;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  border-color: rgba(255,193,7,0.35);
}
.game-card__thumb {
  width: 100%;
  
  object-fit: cover;
  display: block;
}
.game-card__name {
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.games-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.games-tab {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.games-tab:hover,
.games-tab.active {
  background: #FFC107;
  border-color: #FFC107;
  color: #12141A;
}
@media (max-width: 768px) {
  .game-card { width: calc(50% - 6px); }
}
@media (max-width: 480px) {
  .game-card { width: calc(50% - 6px); }
}

/* ============================================================
   SEC BONUS WIDGET
   ============================================================ */
.sec-bonus-section { padding: 48px 0; }
.sec-bonus-section .sec-wrap { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.sec-bonus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}
.sec-bonus-card {
  background: #171821;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(50% - 12px);
  min-width: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sec-bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.sec-bonus-card__image { width: 100%; overflow: hidden; background: #0f1015; }
.sec-bonus-card__image img { width: 100%; height: 100%; object-fit: cover; }
.sec-bonus-card__content { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.sec-bonus-card__stage {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFC107;
  margin-bottom: 6px;
}
.sec-bonus-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 10px;
}
.sec-bonus-card__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.64);
  line-height: 1.6;
  margin-bottom: 16px;
}
.sec-bonus-stats {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  overflow: hidden;
}
.sec-bonus-stats li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sec-bonus-stats li:last-child { border-bottom: none; }
.sec-bonus-stats li:nth-child(odd) { background: rgba(255,255,255,0.02); }
.sec-bonus-stats li span:first-child { color: rgba(255,255,255,0.5); font-weight: 500; }
.sec-bonus-stats li span:last-child { font-weight: 700; color: #fff; text-align: right; }
.sec-bonus-card__terms {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  line-height: 1.5;
}
.sec-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.sec-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.sec-btn--primary { background: #7C3AED; color: #fff; }
.sec-btn--full { width: 100%; margin-top: auto; }

@media (max-width: 900px) {
  .sec-bonus-card { flex-basis: 100%; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1400px) {
  .home-section { padding-left: 40px; padding-right: 40px; }
  .dynamic-section { padding-left: 40px; padding-right: 40px; }
  .login-container { gap: 60px; }
}

@media (max-width: 1200px) {
  .features-grid { flex-wrap: wrap; }
}

@media (max-width: 968px) {
  .home-section { padding-left: 20px; padding-right: 20px; }
  .bonuses-page-section,
  .casino-page-section { padding-left: 20px; padding-right: 20px; }
  .dynamic-section { padding-left: 20px; padding-right: 20px; }
  .banner-container { min-height: 300px; padding: 32px 24px; }
  .banner-content { width: 100%; height: auto; }
  .login-container { flex-direction: column; gap: 40px; }
  .login-image { width: 100%; max-width: 400px; margin: 0 auto; }
  .bonus-card { flex-direction: column-reverse; }
  .bonus-content { max-width: 100%; }
  .bonus-image {
    position: relative;
    width: 100%;
    height: auto;
    transform: none;
    top: auto;
  }
  .bonus-image img { max-height: 200px; }
}

@media (max-width: 768px) {
  .info-card {
    flex: 1 1 100%;
    min-width: 0;
    padding: 24px 20px;
  }
  .info-cards {
    gap: 12px;
  }
  .text-section {
    margin-top: 48px;
    flex-direction: column;
    gap: 16px;
    padding: 0;
  }
  .text-section__icon {
    margin-top: 0;
  }
  .text-section__body {
    width: 100%;
    min-width: 0;
  }
  .text-section__title {
    font-size: 26px;
    line-height: 34px;
  }
  .bonus-table-wrap {
    width: 100%;
    max-width: calc(100vw - 40px);
  }
  .bonus-table {
    font-size: 12px;
  }
  .bonus-table th,
  .bonus-table td {
    padding: 8px 10px;
  }
  .btn-login,
  .btn-signup {
    height: 36px;
    font-size: 13px;
    padding: 0 12px;
  }
  /* Hero */
  .hero-container {
    min-height: 280px;
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }
  .hero-content { max-width: 100%; }
  .hero-title {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 12px;
  }
  .hero-description {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .hero-button { width: 100%; }

  /* Login section */
  .login-container { margin-top: 32px; gap: 24px; }
  .login-content h2 {
    font-size: 22px;
    line-height: 30px;
  }

  /* Features */
  .features-container { margin-top: 40px; }
  .features-title {
    font-size: 26px;
    line-height: 34px;
  }
  .features-grid { gap: 12px; }
  .feature-card {
    width: calc(50% - 6px);
    max-width: 100%;
    padding: 20px 16px 24px;
  }

  /* Bonuses */
  .bonuses-container { margin-top: 40px; }
  .bonuses-title {
    font-size: 26px;
    line-height: 34px;
  }
  .bonuses-description { margin-bottom: 28px; }

  /* Games grid */
  .games-section { padding-left: 0; padding-right: 0; }
  .game-card { flex: 0 0 calc(50% - 6px); }
  .game-card img { height: 110px; }

  .home-section { padding-left: 20px; padding-right: 20px; }
  .hero-container { min-height: 400px; padding: 32px 24px; }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: 32px; line-height: 40px; }
  .hero-description { font-size: 14px; line-height: 20px; }
  .features-container { margin-top: 60px; }
  .feature-card { width: calc(50% - 16px); }
  .bonus-card { width: 100%; height: auto; min-height: 240px; }
  .bonuses-container { margin-top: 60px; }
  .faq-container { margin-top: 48px; }
  .faq-question { padding: 20px 24px; font-size: 14px; line-height: 20px; }
  .faq-answer { padding: 0 24px 20px 24px; }
  .banner-container { min-height: 250px; padding: 24px 20px; }
  .banner-title { margin-bottom: 12px; font-size: 32px; line-height: 40px; }
  .banner-description { font-size: 14px; line-height: 20px; margin-bottom: 32px; }
  .banner-button { width: 100%; max-width: 240px; }
  .content-container { margin-top: 40px; }
  .contact-container { flex-direction: column; }
  .contact-image img { width: 328px; height: auto; }
  .contact-content { text-align: center; }
  .contact-title { font-size: 24px; line-height: 32px; margin-bottom: 12px; }
  .dynamic-section { padding-left: 20px; padding-right: 20px; }
  .dynamic-title { font-size: 24px; line-height: 32px; }
  .dynamic-shore { padding: 16px; margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .feature-card { width: 100%; }
  .bonus-card { width: 100%; }
}

@media (max-width: 360px) {
  .dynamic-section { padding-left: 16px; padding-right: 16px; }
}

/* Games grid */
.games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}
.game-card {
  flex: 0 0 calc(25% - 9px);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.game-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124,58,237,0.4);
}
.game-card img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.game-card__name {
  display: block;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white-white-alpha-64);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Providers slider */
.sde-provslider {
  overflow: hidden;
  max-width: 100%;
  contain: inline-size;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.sde-provslider__track {
  display: flex;
  width: max-content;
  animation: sde-provslide 32s linear infinite;
}
.sde-provslider:hover .sde-provslider__track {
  animation-play-state: paused;
}
.sde-provslider__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 40px;
  padding: 8px 20px;
}
.sde-provslider__group img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.65;
  filter: grayscale(30%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.sde-provslider__group img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
@keyframes sde-provslide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .sde-provslider__track {
    animation: none;
  }
  .sde-provslider {
    overflow-x: auto;
  }
}

@media (max-width: 768px) {
  .game-card {
    flex: 0 0 calc(50% - 6px);
  }
  .game-card img {
    height: 130px;
  }
  .sde-provslider__group {
    gap: 28px;
    padding: 6px 14px;
  }
  .sde-provslider__group img {
    height: 22px;
  }
}

/* ============================================================
   SDE — SpinEmpire DE new page structure (home / bonuses / app)
   ============================================================ */
.sde-wrap { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

/* -- Head -- */
.sde-head {
  background: #171821;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.sde-head__bar {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.sde-head__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.sde-head__logo img { height: 40px; width: auto; display: block; }
.sde-head__logo-text,
.header-logo-text,
.sde-foot__brand-name,
.footer-logo-text {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  background: linear-gradient(180deg, #FFF3C4 0%, #FFD54F 40%, #FFC107 65%, #E89B00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 12px rgba(255, 193, 7, 0.25);
}
.header-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.sde-foot__brand-name,
.footer-logo-text { font-size: 15px; }
.sde-nav { display: flex; align-items: center; justify-content: center; gap: 20px; flex: 1; }
.sde-nav__link {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  padding: 6px 2px;
  transition: color 0.2s ease;
}
.sde-nav__link:hover, .sde-nav__link.is-active { color: #fff; }
.sde-nav__divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.08);
  margin: 0 2px;
}
.sde-nav__link--muted { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.4); }
.sde-nav__link--muted:hover { color: rgba(255,255,255,0.7); }
.sde-nav__mobile-cta { display: none; }
.sde-head__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.sde-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.sde-burger span { width: 18px; height: 2px; background: #fff; transition: transform 0.25s ease, opacity 0.25s ease; }
.sde-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sde-burger.is-active span:nth-child(2) { opacity: 0; }
.sde-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.sde-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 998;
}
.sde-overlay.is-visible { opacity: 1; pointer-events: auto; }

@media (max-width: 900px) {
  .sde-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 84vw);
    background: #171821;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    padding: 90px 24px 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }
  .sde-nav.is-open { transform: translateX(0); }
  .sde-nav__link { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .sde-nav__divider { display: none; }
  .sde-nav__mobile-cta { display: flex; flex-direction: column; gap: 10px; width: 100%; margin-top: 16px; }
  .sde-nav__mobile-cta .btn { width: 100%; }
  .sde-head__actions .btn-login,
  .sde-head__actions .btn-signup { display: none; }
  .sde-burger { display: flex; }
}

/* -- Hero -- */
.sde-hero { position: relative; }
.sde-hero__media { position: absolute; inset: 0; margin: 0 auto; max-width: 1200px; z-index: 0; }
.sde-hero__media img { width: 100%; height: 100%; object-fit: contain; display: block; }
.sde-hero__overlay {
  position: relative;
  z-index: 1;
  min-height: clamp(360px, 52vw, 560px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 40px 0;
  background: linear-gradient(90deg, rgba(18,20,26,0.92) 0%, rgba(18,20,26,0.55) 55%, rgba(18,20,26,0.15) 100%);
}
.sde-hero__overlay .sde-wrap { width: 100%; display: flex; flex-direction: column; align-items: flex-start; }
.sde-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,193,7,0.12);
  border: 1px solid rgba(255,193,7,0.35);
  color: #FFC107;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.sde-hero__title { color: #fff; font-size: var(--heading-h1); line-height: var(--heading-h1-line-height); font-weight: 700; margin: 0 0 14px; max-width: 640px; }
.sde-hero__subtitle { color: rgba(255,255,255,0.72); font-size: var(--font-size-md); line-height: 1.6; margin: 0 0 24px; max-width: 560px; }
.sde-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 768px) {
  .sde-hero__title { font-size: 32px; line-height: 40px; }
}

/* -- Facts strip -- */
.sde-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 32px 20px;
}
.sde-fact { flex: 1 1 220px; display: flex; align-items: flex-start; gap: 14px; }
.sde-fact__icon { flex-shrink: 0; width: 44px; height: 44px; }
.sde-fact__icon img { width: 100%; height: 100%; object-fit: contain; }
.sde-fact__title { color: #fff; font-size: 15px; font-weight: 700; margin: 0 0 4px; }
.sde-fact__text { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.6; margin: 0; }

/* -- Article + sticky TOC -- */
.sde-article {
  max-width: 1160px;
  margin: 0 auto;
  padding: 8px 20px 48px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.sde-toc {
  flex: 0 0 220px;
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 0;
}
.sde-toc__title { color: rgba(255,255,255,0.4); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 8px; }
.sde-toc__link {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  padding: 7px 12px;
  border-left: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.sde-toc__link:hover { color: #fff; }
.sde-toc__link.is-active { color: #FFC107; border-left-color: #FFC107; }
.sde-content { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 40px; }
.sde-block { scroll-margin-top: 96px; }
.sde-block h2 { font-size: var(--heading-h2); line-height: var(--heading-h2-line-height); color: #fff; margin: 0 0 14px; }
.sde-block h3 { font-size: var(--heading-h3); color: #fff; margin: 20px 0 10px; }
.sde-block p { color: rgba(255,255,255,0.7); font-size: var(--font-size-md); line-height: 1.7; margin: 0 0 14px; }
.sde-block p:last-child { margin-bottom: 0; }
.sde-block em { color: rgba(255,255,255,0.88); font-style: italic; }
.sde-block p a { color: #FFCF68; text-decoration: underline; transition: opacity 0.2s ease; }
.sde-block p a:hover { opacity: 0.8; }
.sde-block > a.btn { display: flex; width: fit-content; margin: 8px auto 0; }

@media (max-width: 968px) {
  .sde-article { flex-direction: column; gap: 24px; }
  .sde-toc {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 8px;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 16px;
  }
  .sde-toc__title { display: none; }
  .sde-toc__link { border-left: none; border: 1px solid rgba(255,255,255,0.1); border-radius: 999px; padding: 6px 12px; }
  .sde-toc__link.is-active { border-color: #FFC107; background: rgba(255,193,7,0.1); }
}

/* -- Bonus hero strip (welcome_bonus headline inside article) -- */
.sde-bonus-hero {
  background: linear-gradient(135deg, rgba(124,58,237,0.14), rgba(255,193,7,0.08));
  border: 1px solid rgba(255,193,7,0.25);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.sde-bonus-hero__label { color: #FFC107; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 6px; }
.sde-bonus-hero__amount { color: #fff; font-size: 24px; font-weight: 700; margin: 0; }

/* -- Lead paragraph (bonuses page intro) -- */
.sde-lead {
  max-width: 1160px;
  margin: 0 auto;
  padding: 8px 20px 24px;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.7;
}

/* -- Providers section -- */
.sde-providers { padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.sde-providers h2 { max-width: 1160px; margin: 0 auto 24px; padding: 0 20px; color: #fff; font-size: var(--heading-h2); line-height: var(--heading-h2-line-height); }
.sde-providers .sde-provslider { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

/* -- CTA band -- */
.sde-ctaband {
  background: #171821;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
  text-align: center;
}
.sde-ctaband__inner { max-width: 640px; margin: 0 auto; padding: 0 20px; display: flex; flex-direction: column; align-items: center; }
.sde-ctaband h2 { color: #fff; font-size: var(--heading-h2); line-height: var(--heading-h2-line-height); margin: 0 0 12px; }
.sde-ctaband p { color: rgba(255,255,255,0.64); font-size: var(--font-size-md); line-height: 1.6; margin: 0 0 24px; }

/* -- FAQ (native details/summary) -- */
.sde-faq { max-width: 1160px; margin: 0 auto; padding: 48px 20px; }
.sde-faq h2 { color: #fff; font-size: var(--heading-h2); line-height: var(--heading-h2-line-height); margin: 0 0 24px; }
.sde-faq__list { display: flex; flex-direction: column; gap: 10px; }
.sde-faq__item {
  background: #171821;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 4px 20px;
}
.sde-faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.sde-faq__item summary::-webkit-details-marker { display: none; }
.sde-faq__item summary::after {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.sde-faq__item[open] summary::after { transform: rotate(-135deg); }
.sde-faq__item p { color: rgba(255,255,255,0.64); font-size: 14px; line-height: 1.7; margin: 0 0 18px; }

/* -- Foot -- */
.sde-foot { background: #171821; border-top: 1px solid rgba(255,255,255,0.06); padding: 40px 0 24px; }
.sde-foot__aggr { max-width: 1160px; margin: 0 auto 32px; padding: 0 20px 28px; display: flex; flex-wrap: wrap; gap: 20px; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sde-foot__aggr a { display: flex; align-items: center; opacity: 0.7; transition: opacity 0.2s ease; }
.sde-foot__aggr a:hover { opacity: 1; }
.sde-foot__aggr img { height: 24px; width: auto; }
.sde-foot__main { max-width: 1160px; margin: 0 auto; padding: 0 20px; display: flex; flex-wrap: wrap; gap: 32px; margin-bottom: 32px; }
.sde-foot__col { flex: 1 1 200px; display: flex; flex-direction: column; gap: 10px; }
.sde-foot__col-title { color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 4px; }
.sde-foot__col--brand img { height: 32px; width: 32px; }
.sde-foot__brand { display: flex; align-items: center; gap: 10px; }
.sde-foot__blurb { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.6; margin: 0 0 12px; }
.sde-foot__socials { display: flex; gap: 10px; }
.sde-foot__socials img { width: 20px; height: 20px; }
.sde-foot__link { color: rgba(255,255,255,0.6); font-size: 13px; text-decoration: none; }
.sde-foot__link:hover { color: #fff; }
.sde-foot__payments { display: flex; flex-wrap: wrap; gap: 10px; }
.sde-foot__payments img { height: 22px; width: auto; }
.sde-foot__bottom { max-width: 1160px; margin: 0 auto; padding: 20px 20px 0; border-top: 1px solid rgba(255,255,255,0.06); display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-start; }
.sde-foot__age img { height: 40px; width: auto; }
.sde-foot__disclaimer { flex: 1 1 400px; color: rgba(255,255,255,0.4); font-size: 12px; line-height: 1.6; margin: 0; }
.sde-foot__copy { max-width: 1160px; margin: 16px auto 0; padding: 0 20px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; color: rgba(255,255,255,0.4); font-size: 12px; }
.sde-foot__copy nav { display: flex; gap: 16px; }
.sde-foot__copy a { color: rgba(255,255,255,0.4); text-decoration: none; }
.sde-foot__copy a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 600px) {
  .sde-foot__copy { flex-direction: column; }
}

/* ============================================================
   SDE RESPONSIVE (home page)
   ============================================================ */
@media (max-width: 968px) {
  .sde-hero__media { max-width: none; }
  .sde-hero__media img { object-fit: cover; }
}

@media (max-width: 768px) {
  /* Hero */
  .sde-hero__overlay {
    min-height: 440px;
    padding: 32px 0;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(18,20,26,0.35) 0%, rgba(18,20,26,0.75) 45%, rgba(18,20,26,0.96) 100%);
  }
  .sde-hero__badge { font-size: 11px; padding: 5px 12px; margin-bottom: 12px; }
  .sde-hero__title { font-size: 28px; line-height: 36px; margin-bottom: 10px; }
  .sde-hero__subtitle { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
  .sde-hero__ctas { width: 100%; flex-direction: column; gap: 10px; }
  .sde-hero__ctas .btn { width: 100%; height: 46px; font-size: 15px; }

  /* Facts strip */
  .sde-facts { padding: 24px 20px; gap: 16px; }
  .sde-fact { flex: 1 1 100%; }

  /* Article */
  .sde-content { gap: 32px; }
  .sde-block h2 { font-size: 24px; line-height: 32px; }
  .sde-block h3 { font-size: 18px; margin: 16px 0 8px; }
  .sde-block p { font-size: 14px; line-height: 1.7; }
  .sde-block > a.btn { width: 100%; max-width: 360px; height: 46px; font-size: 15px; }

  /* Bonus hero strip */
  .sde-bonus-hero { flex-direction: column; align-items: stretch; padding: 20px; }
  .sde-bonus-hero__amount { font-size: 20px; }
  .sde-bonus-hero .btn { width: 100%; height: 46px; font-size: 15px; }

  /* Section headings */
  .sde-providers h2,
  .sde-ctaband h2,
  .sde-faq h2 { font-size: 24px; line-height: 32px; }
  .sde-ctaband { padding: 36px 0; }
  .sde-ctaband .btn { width: 100%; max-width: 360px; height: 46px; font-size: 15px; }
  .sde-faq { padding: 36px 20px; }

  /* Bonus cards */
  .sec-bonus-grid { gap: 16px; margin-top: 24px; }
  .sec-btn--full { height: 46px; }
}

@media (max-width: 480px) {
  .sde-hero__overlay { min-height: 400px; }
  .sde-hero__title { font-size: 24px; line-height: 32px; }
  .sde-block h2 { font-size: 22px; line-height: 30px; }
  .sde-toc__link { font-size: 12px; padding: 5px 10px; }
  .sde-foot__main { gap: 24px; }
  .sde-foot__col { flex: 1 1 100%; }
  .sde-foot__aggr { gap: 14px; }
  .sde-foot__aggr img { height: 20px; }
}
