/* ==========================================================================
   BETTY WINS RESKIN (BASED ON SPINGRANNY STRUCTURE)
   Body: Montserrat (All weights)
   Theme: Dark Mode / Neon Pink / Acid Green / Glassmorphism
   ========================================================================== */

/* ==========================================================================
   1. IMPORTS & VARIABLES
   ========================================================================== */
/* Убираем Luckiest Guy, оставляем только Montserrat, как в Betty Wins */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  /* --- FONTS --- */
  /* В Betty Wins везде используется Montserrat */
  --font-base: 'Montserrat', sans-serif;
  --font-display: 'Montserrat', sans-serif;

  /* --- PALETTE (Betty Wins System) --- */
  --bg-body: #000000;
  --bg-card: #0F1013; /* Темный фон карточек */
  --bg-element: rgba(255, 255, 255, 0.05); /* Легкий фон элементов */

  /* --- ACCENTS --- */
  --accent-primary: #FF188E; /* Betty Pink - Основной акцент */
  --accent-hover: #FE3B5B;   /* Betty Red-Pink - Ховеры */
  --accent-gold: #DBAD64;    /* Betty Gold - VIP элементы */

  /* --- BUTTONS (Betty Wins Gradients) --- */
  /* Основная кнопка - Неоновый зеленый */
  --btn-gradient: linear-gradient(90deg, #05FF85 0%, #04FDA1 47%, #18FDC4 100%);
  --btn-gradient-hover: linear-gradient(90deg, #18FDC4 0%, #04FDA1 100%);
  
  /* Цвет текста на кнопке */
  --btn-text: #0E1821; 

  /* --- TEXT --- */
  --text-main: #FFFFFF;
  --text-muted: #848484; /* Цвет вторичного текста Betty */
  --border-color: #FE3B5B; /* Розовая обводка по умолчанию */

  --block-radius: 16px;
  --btn-radius: 50px; /* Кнопки-пилюли */
  --container-width: 1240px;
  --transition: 0.3s ease;

  --color-success: #05FF85;
  --color-error: #FF188E;

  /* --- LAYOUT HELPERS --- */
  --sg-header-h: 0px;      
  --sg-sticky-h: 86px;     
  --sg-footer-shift: 0px;  
}

/* ==========================================================================
   2. CORE SETUP & BACKGROUNDS
   ========================================================================== */
html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: var(--font-base);
  font-weight: 400; /* Regular по умолчанию */
  color: var(--text-main);
  line-height: 1.6;
  letter-spacing: normal;
}

body {
  background-color: var(--bg-body);
  /* Убираем старые фиолетовые фоны, ставим чистый черный + градиент Betty */
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, #000000 100%),
    /* Можно оставить фоновую картинку, но затемнить её сильнее */
    url('/assets/images/bg/bg-hero.webp'), 
    linear-gradient(to top, rgba(0, 0, 0, 0) 50%, #000000 100%);
  background-repeat: no-repeat;
  background-attachment: scroll;

  background-size:
    100% 1000px,
    100% auto,
    100% 800px;

  background-position:
    top center,
    top center,
    bottom center;
}

#container { padding-bottom: calc(350px + var(--sg-sticky-h, 86px)) !important; }

*, *::before, *::after { box-sizing: border-box; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }

/* ТИПОГРАФИКА (Все переводим на Montserrat, как в гайде) */
h1, h2, h3, h4, h5, h6,
.button, button, input[type="submit"], input[type="button"],
.main-nav__link,
.hero-offer__main-offer,
.bonus-card-v2__offer,
.expert-rating-card__score,
.reg-steps__number,
.nc-steps__number,
.provider-grid__title,
.quick-deposit__title,
.data-table-container__title,
.nc-block__title,
.app-download__title,
.responsible-gaming-block__title {
  font-family: var(--font-display);
  font-weight: 700; /* Bold для заголовков */
  letter-spacing: 0;
  text-transform: uppercase;
}

/* Формы */
input[type="text"], input[type="email"], input[type="password"], textarea, select {
  font-family: var(--font-base);
  font-weight: 500;
  background-color: #F4F4F4; /* Светлые инпуты как в Betty */
  color: #000;
  border-radius: 10px;
}

/* Общие контейнеры */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.main-offer, .hero-offer, .game-grid, .bonus-grid, .data-table-container,
.app-download, .footer-column, .reg-steps, .nc-steps, .testimonial,
.author-box, .expert-rating-card, .faq-accordion, .limits-accordion,
.pros-cons, .bonus-calculator, .callout, .quick-deposit,
.update-banner, .license-rich-card, .security-fairness,
.awards-recognition, .evidence-box, .onboarding-simulator,
.provider-grid, .nc-block {
  width: 94%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.author-box, .testimonial,
.expert-rating-card, .callout, .quick-deposit,
.evidence-box, .security-fairness { max-width: 900px; }

/* ==========================================================================
   3. BUTTONS (PILL SHAPE + NEON GREEN)
   ========================================================================== */
.button, .main-offer__cta-button, .app-download__button,
.sticky-cta__button, .bonus-card-v2__cta, .game-grid__more-button,
.hero-offer__cta, .bonus-calculator__button, .onboarding-simulator__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  border-radius: var(--btn-radius); /* 50px */
  font-size: 18px;
  cursor: pointer;
  border: none;
  text-align: center;
  background: var(--btn-gradient);
  color: var(--btn-text) !important; /* Темный текст на зеленом */
  text-shadow: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.25);
  transition: var(--transition);
  font-weight: 700;
}

.button:hover, .main-offer__cta-button:hover, .game-grid__more-button:hover {
  background: var(--btn-gradient-hover);
  transform: scale(1.05); /* Увеличение вместо сдвига */
  box-shadow: 0 0 15px rgba(5, 255, 133, 0.4);
  filter: brightness(1.1);
}

.button--secondary {
  background: transparent;
  border: 1px solid #FFFFFF; /* Белая обводка как у Login */
  color: #FFFFFF !important;
  box-shadow: none;
  text-shadow: none;
}
.button--secondary:hover { 
  border-color: var(--accent-hover); 
  color: var(--accent-hover) !important;
  background: transparent; 
}

/* ==========================================================================
   4. HEADER
   ========================================================================== */
.main-header {
  background-color: #000000; /* Глубокий черный */
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 10px 0;
}
.main-header .container {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 56px;
}

.main-header__logo {
  flex-shrink: 0;
  width: 195px !important;
  max-width: 195px !important;
}
.main-header__logo img { width: 100% !important; height: auto !important; }

.main-header__nav { flex: 1 1 auto; }
.main-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.main-nav__link {
  font-family: var(--font-base) !important;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  padding: 6px 0;
  transition: 0.3s;
  letter-spacing: 0.5px;
  color: #FFFFFF !important;
  text-shadow: none;
}
.main-nav__link:hover {
  color: var(--accent-hover) !important; /* Розовый ховер */
  text-shadow: 0 0 10px rgba(254, 59, 91, 0.5);
}

.main-header__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}

.main-nav__item { position: relative; }
.main-nav__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 10px;
  background: #181818;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: none;
  z-index: 1000;
}
.main-nav__submenu-link {
  font-family: var(--font-base);
  font-weight: 500;
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: #fff;
}
.main-nav__submenu-link:hover {
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  color: var(--accent-primary);
}
@media (min-width: 993px) {
  .main-nav__item--has-submenu:hover > .main-nav__submenu { display: block; }
}
.main-header__burger { display: none; }

/* ==========================================================================
   5. HERO (GLASS + PINK BORDER)
   ========================================================================== */
.hero-offer { display: flex; flex-direction: column; }

.hero-offer__subtitle {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 20px;
  color: var(--accent-gold); /* Золотой подзаголовок */
}

.hero-offer__main-offer {
  color: #FFFFFF;
  -webkit-text-stroke: 0 !important;
  text-shadow: none;
  line-height: 1.1 !important;
}

.hero-offer__title {
  color: #FFFFFF;
  margin-bottom: 10px;
  text-shadow: none;
  line-height: 1.2 !important;
}

/* DESKTOP HERO STYLES - BETTY STYLE */
@media (min-width: 993px) {
  .hero-offer {
    align-items: flex-start !important;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    max-width: 55% !important;
    min-width: 500px;

    /* Эффект стекла Betty Wins */
    background: linear-gradient(115deg, rgba(217, 217, 217, 0.2) -19%, rgba(217, 217, 217, 0.05) 100%) !important;
    backdrop-filter: blur(20px);
    
    border: 1px solid var(--accent-hover); /* Розовый бордер */
    border-radius: 16px;
    padding: 40px !important;
    box-shadow: 0 4px 6px 3px rgba(0,0,0,0.25);
  }
  .hero-offer__main-offer { font-size: 42px !important; margin-bottom: 20px !important; }
  .hero-offer__title { font-size: 32px !important; }
}

/* ==========================================================================
   6. MAIN BRAND OFFER
   ========================================================================== */
.main-offer {
  position: relative !important;
  margin: 40px auto !important;
  max-width: 800px !important;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center !important;
  text-align: center !important;
  
  background: var(--bg-card) !important;
  border: 1px solid var(--accent-primary); /* Розовая рамка */
  border-radius: 24px;
  padding: 40px 30px !important;
  box-shadow: 0 0 20px rgba(255, 24, 142, 0.15) !important;
}
.main-offer__logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 25px;
  filter: none;
}
.main-offer .hero-offer__main-offer {
  font-size: 42px !important;
  line-height: 1.1 !important;
  margin-bottom: 20px !important;
  color: #FFFFFF;
  -webkit-text-stroke: 0;
  text-shadow: none;
}
.main-offer__condition {
  font-family: var(--font-base);
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 600px;
  line-height: 1.5;
}
.main-offer__cta-button {
  min-width: 200px;
  padding: 18px 40px;
  font-size: 20px;
  margin-bottom: 20px;
}
.main-offer__promo-code {
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 700;
  color: #000;
  background: var(--accent-gold);
  padding: 8px 16px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   7. APP DOWNLOAD
   ========================================================================== */
.app-download {
  background: var(--bg-card) !important;
  width: fit-content !important;
  width: -moz-fit-content !important;
  min-width: 320px;
  max-width: 900px !important;
  padding: 40px 50px !important;
  margin: 50px auto !important;
  border: 1px solid var(--accent-primary);
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.app-download__image { display: block; margin: 0 auto 20px auto; }
.app-download__title { font-size: 36px !important; line-height: 1.2; margin-bottom: 15px !important; color: #fff; }
.app-download__desc {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 16px !important;
  line-height: 1.5;
  color: var(--text-muted) !important;
}
.app-download__footer {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.app-download__buttons { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
.app-download__note {
  font-family: var(--font-base);
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}
.app-download__note em { color: #fff; font-style: normal; font-weight: 600; }

/* ==========================================================================
   8. GAME GRID & BONUS CARDS
   ========================================================================== */
.game-grid__title, .bonus-grid__title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: none;
  color: #fff;
}

.bonus-grid__container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.bonus-card-v2 {
  background: var(--bg-card);
  border: 1px solid var(--border-color); /* Розовая рамка */
  border-radius: var(--block-radius);
  overflow: hidden;
  transition: 0.3s;
  padding: 25px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.bonus-card-v2:hover { transform: translateY(-5px); border-color: var(--color-success); }
.bonus-card-v2__title { font-size: 24px; color: #fff; margin-bottom: 10px; font-family: var(--font-display); }
.bonus-card-v2__offer { font-size: 28px; color: var(--color-success); margin-bottom: 20px; font-family: var(--font-display); }

.game-grid__container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.game-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1.3;
  background: var(--bg-card);
  border: 1px solid transparent;
  transition: var(--transition);
}
.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px rgba(255, 24, 142, 0.4);
}
.game-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.game-card:hover .game-card__image { transform: scale(1.1); }
.game-card__overlay {
  position: absolute; inset: 0;
  background: rgba(254, 59, 91, 0.8); /* Betty Red Overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 2;
}
.game-card:hover .game-card__overlay { opacity: 1; }
.game-card__button {
  min-width: 120px;
  padding: 10px 20px !important;
  font-size: 14px !important;
  border-radius: 30px !important;
}
.game-card__button.button--secondary {
  background: transparent !important;
  border: 2px solid #fff;
  color: #fff !important;
  box-shadow: none;
  text-shadow: none;
}
.game-card__button.button--secondary:hover { border-color: #000; background: #fff !important; color: #000 !important; }
.game-card__title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.9);
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  color: #fff;
  border-top: none;
  z-index: 3;
}
.game-grid__more-button { display: block; margin: 30px auto 0 auto; min-width: 250px; }

/* ==========================================================================
   9. INFO BLOCKS (GENERIC)
   ========================================================================== */
.provider-grid, .quick-deposit, .data-table-container, .author-box,
.testimonial, .nc-block {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.provider-grid__title {
  font-size: 28px;
  color: #fff;
  border-bottom: 3px solid var(--accent-primary);
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 25px;
}
.provider-grid__logos { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.provider-grid__item, .quick-deposit__item {
  background: #181818;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid #333;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 13px;
  transition: 0.3s;
}
.provider-grid__item:hover, .quick-deposit__item:hover {
  background: var(--accent-primary);
  color: #fff;
  border-color: var(--accent-primary);
}
.quick-deposit__title, .data-table-container__title, .nc-block__title {
  font-family: var(--font-display);
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
}

/* ==========================================================================
   10. REG / UPDATE / RG
   ========================================================================== */
.reg-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.reg-steps__item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}
.reg-steps__item:hover {
  transform: translateY(-5px);
  border-color: var(--color-success);
  box-shadow: 0 4px 15px rgba(5, 255, 133, 0.2);
}
.reg-steps__number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--btn-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--btn-text);
  box-shadow: none;
}
.reg-steps__content { display: flex; flex-direction: column; }
.reg-steps__title {
  margin: 0 0 10px 0;
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
}
.reg-steps__description {
  margin: 0;
  font-family: var(--font-base);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.reg-steps__description em { color: var(--accent-gold); font-style: normal; font-weight: 700; }

.update-banner {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(5, 255, 133, 0.05) !important;
  border: 1px solid var(--color-success);
  box-shadow: 0 0 10px rgba(5, 255, 133, 0.1);
  border-radius: 12px;
  padding: 15px 25px;
  margin: 0 auto 30px auto;
  max-width: 800px;
}
.update-banner__icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--color-success);
  color: #000000;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
}
.update-banner__text { font-family: var(--font-base); font-size: 15px; color: #fff; line-height: 1.4; }
.update-banner__text strong { color: var(--color-success); font-weight: 700; }
.update-banner__date { display: inline-block; margin-left: 8px; color: var(--text-muted); font-size: 0.9em; font-style: italic; }

.responsible-gaming-block {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}
.rg-intro { font-size: 15px; color: var(--text-muted); margin-bottom: 25px; line-height: 1.6; }
.rg-tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; margin-bottom: 25px; }
.rg-tool-card {
  background: #181818;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #333;
  text-align: left;
  transition: var(--transition);
}
.rg-tool-card:hover { border-color: var(--accent-primary); transform: translateY(-2px); }
.rg-tool-header { color: #fff; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; font-size: 16px; }
.rg-tool-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.rg-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: left;
}
.rg-contact { font-size: 14px; color: var(--text-muted); }
.rg-contact a { color: var(--color-success); font-weight: 700; }
.rg-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.rg-badge { background: #333; padding: 4px 8px; border-radius: 4px; font-size: 12px; font-weight: 600; color: #fff; }
.rg-badge--18 { background: transparent; border: 1px solid var(--color-error); color: var(--color-error); font-weight: 800; }

/* ==========================================================================
   11. FAQ & TABLES (BASE)
   ========================================================================== */
.faq-accordion {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  padding: 30px;
  margin-bottom: 0 !important;
}
.faq-accordion__title {
  font-size: 28px;
  border-left: 5px solid var(--accent-primary);
  padding-left: 15px;
  color: #fff;
}
.faq-item__question {
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  padding: 15px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-align: left;
}
.faq-item__answer {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
  line-height: 1.6;
}
.faq-item.is-open .faq-item__answer { max-height: 500px; padding-bottom: 15px; }

.data-table-container { overflow: hidden; }
.data-table-wrapper { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
  min-width: 0 !important;
  table-layout: auto;
}
.data-table th {
  background: #181818;
  color: #fff;
  padding: 18px 15px;
  font-family: var(--font-display);
  font-size: 16px;
  text-align: center;
  border-bottom: 2px solid var(--border-color);
  letter-spacing: 1px;
}
.data-table td {
  padding: 16px 15px;
  border-bottom: 1px solid #333;
  font-family: var(--font-base);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.data-table td:first-child { text-align: left; padding-left: 25px; color: var(--text-muted); }
.data-table td:first-child strong, .data-table td:first-child b { color: #fff; }
.data-table tr:hover td { background: #181818; }

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.main-footer {
  background-color: #0F1013 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  border-top: 1px solid #333 !important;

  padding: 60px 0 calc(30px + var(--sg-sticky-h, 86px) + env(safe-area-inset-bottom)) 0 !important;
  margin-top: 0 !important;
  position: relative;
  z-index: 10;
}
.main-footer .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 30px;
  align-items: start;
}
.footer-column:nth-child(2) { text-align: center; }
.footer-column:nth-child(3) { text-align: right; }

.footer-logo { max-width: 220px; margin-bottom: 20px; }
.footer-text { font-size: 14px; color: var(--text-muted); margin-bottom: 25px; line-height: 1.4; }

.footer-column__title {
  font-family: var(--font-display, sans-serif);
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: none;
}
.footer-column__list { list-style: none; padding: 0; margin: 0; }
.footer-column__list a {
  font-family: var(--font-base, sans-serif);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  text-shadow: none;
  transition: 0.3s;
}
.footer-column__list a:hover { color: #fff; text-shadow: none; }

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 15px;
}
.footer-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 15px;
}
.footer-badge {
  background: #181818;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid #333;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer-badge:hover { background: #222; transform: translateY(-2px); }

.footer-badge--text-full {
  height: 48px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.footer-badge--text-18 {
  width: 48px;
  height: 48px;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-error);
}
.footer-payment-grid .footer-badge {
  width: 90px;
  height: 55px;
  padding: 8px 14px;
}
.footer-payment-grid .footer-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
}
.main-footer__copyright {
  text-align: center;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid #333;
  color: #555;
  font-size: 12px;
}

/* ==========================================================================
   13. SCROLLBAR
   ========================================================================== */
::-webkit-scrollbar { width: 10px; background: #000; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--accent-primary); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-hover); }

/* ==========================================================================
   14. STICKY CTA (DARK + NEON)
   ========================================================================== */
@keyframes slideUpFade {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background: #000000;
  border-top: 3px solid var(--accent-primary);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.8);

  padding: 15px 30px calc(15px + env(safe-area-inset-bottom));
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;

  animation: slideUpFade 0.6s ease-out forwards;
}

.sticky-cta__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.sticky-cta__brand {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-success); /* Green like Betty */
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.sticky-cta__offer {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.5px;
}
.sticky-cta__offer strong {
  color: #fff;
  text-shadow: none;
}
.sticky-cta__button {
  font-family: var(--font-display) !important;
  font-size: 20px !important;
  padding: 12px 35px !important;
  white-space: nowrap;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3) !important;
  animation: pulseButton 2s infinite;
}
@keyframes pulseButton {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* ==========================================================================
   15. LICENSE / SECURITY RICH CARD (DARK THEME)
   ========================================================================== */
.license-rich-card{
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px !important;
  text-align: left !important;

  max-width: 900px !important;
  margin: 0 auto 40px auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.license-header{
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
}

.license-icon-box{
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--btn-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: var(--font-display);
  font-size: 30px;
  color: var(--btn-text);
  box-shadow: none;
}

.license-main-info{ flex: 1; min-width: 0; }

.license-main-info h4{
  margin: 0 0 10px 0;
  font-size: 26px;
  line-height: 1.1;
  color: #fff;
}

.license-sub{
  display: block;
  font-family: var(--font-base);
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.license-sub strong{
  color: var(--color-success);
  font-weight: 800;
}

.license-address{
  margin-top: 12px;
  font-family: var(--font-base);
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  font-style: italic;
}

.security-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
}

.security-item{
  background: #181818;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 15px;

  display: flex;
  align-items: center;
  gap: 15px;

  transition: 0.3s;
}

.security-item:hover{
  border-color: var(--accent-primary);
  background: #222;
}

.security-item-icon{
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  color: var(--color-success);
}

.security-text{
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.security-text strong{
  font-family: var(--font-base);
  font-weight: 800;
  font-size: 14px;
  color: #fff;
}

.security-text span{
  font-family: var(--font-base);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ==========================================================================
   16. AUTHOR BOX (BETTY GLASS STYLE)
   ========================================================================== */
.author-box{
  background: linear-gradient(115deg, rgba(217, 217, 217, 0.2) -19%, rgba(217, 217, 217, 0.05) 100%) !important;
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 34px 26px !important;

  text-align: center !important;
  box-shadow: 0 4px 6px rgba(0,0,0,0.25);
}

.author-box__avatar{
  max-width: 180px;
  height: auto;
  margin: 0 auto 12px auto;
  filter: none;
  transition: transform 0.3s ease;
  border-radius: 50%;
  border: 3px solid var(--accent-primary);
}

.author-box:hover .author-box__avatar{ transform: scale(1.04); }

.author-box__name{
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  text-shadow: none;
}

.author-box__title{
  font-family: var(--font-base);
  font-weight: 800;
  font-size: 13px;
  color: var(--color-success);
  letter-spacing: 1px;
  text-transform: uppercase;

  background: #000;
  border: 1px solid var(--color-success);
  padding: 6px 16px;
  border-radius: 999px;

  margin: 0 0 14px 0;
  display: inline-block;
}

.author-box__bio{
  font-family: var(--font-base);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto;
}

.author-box__bio strong{ color: #fff; font-weight: 800; }

/* ==========================================================================
   17. ARTICLE TEXT
   ========================================================================== */
#container p,
#container li{
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: anywhere;
}

.hero-offer p,
.main-offer p,
.app-download p,
.data-table-container p,
.author-box p,
.main-footer p,
.sticky-cta p{
  text-align: inherit;
}

/* ==========================================================================
   18. MOBILE & RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {

  :root{
    --sg-header-h: 76px;
    --sg-footer-shift: 220px;   
    --sg-sticky-h: 86px;
  }

  body{
    background-size:
      100% 600px,
      100% auto,      
      100% 520px;

    background-position:
      top center,
      right 0 top var(--sg-header-h),
      bottom center;
  }

  #container { padding-bottom: calc(220px + var(--sg-sticky-h, 86px)) !important; }

  /* HEADER FIT */
  .main-header .container { gap: 8px !important; min-height: 52px !important; }
  .main-header__logo {
    width: clamp(105px, 26vw, 140px) !important;
    max-width: clamp(105px, 26vw, 140px) !important;
  }
  .main-header__actions { gap: 6px !important; }
  .main-header__actions .button {
    padding: 8px 10px !important;
    font-size: clamp(10px, 3.2vw, 12px) !important;
    border-radius: 20px !important;
    white-space: nowrap;
  }

  /* BURGER */
  .main-header__burger {
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 12px;
    background: transparent;
    border: 1px solid #333;
    cursor: pointer;
  }
  .main-header__burger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    display: block;
    transition: 0.25s ease;
  }
  .main-header__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .main-header__burger.is-active span:nth-child(2) { opacity: 0; }
  .main-header__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* MENU under header */
  .main-header { z-index: 10000 !important; overflow: visible !important; }
  .main-header .container { position: static !important; }

  #main-nav.main-header__nav {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    display: none !important;

    padding: 12px 14px !important;
    background: #000 !important;
    backdrop-filter: none;
    
    border-bottom: 1px solid #333;
    z-index: 9999 !important;
  }
  #main-nav.main-header__nav.is-open { display: block !important; }

  #main-nav .main-nav__list {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px 14px !important;
  }
  #main-nav .main-nav__link {
    display: inline-flex;
    padding: 10px 12px;
    border-radius: 10px;
    background: #111;
    border: 1px solid #333;
  }
  .main-nav__submenu { display: none !important; }

  /* HERO mobile: Betty Style */
  :root{
    --sg-hero-h: clamp(220px, calc(100vw * 2 / 3), 380px);
  }

  .hero-offer{
    max-width: 100% !important;
    text-align: center !important;
    align-items: center !important;

    background: linear-gradient(115deg, rgba(217, 217, 217, 0.2) -19%, rgba(217, 217, 217, 0.05) 100%) !important;
    border: 1px solid var(--accent-primary);
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);

    padding: 20px 16px !important;
    margin-top: calc(var(--sg-hero-h) + 14px) !important;
    margin-bottom: 16px !important;
  }

  .hero-offer { --hero-gap: 10px; }
  .hero-offer h1, .hero-offer h2, .hero-offer h3, .hero-offer p {
    margin: 0 0 var(--hero-gap) 0 !important;
    line-height: 1.28 !important;
    text-align: center !important; 
    hyphens: manual; 
  }
  .hero-offer__title {
    line-height: 1.15 !important;
    margin-bottom: calc(var(--hero-gap) + 2px) !important;
    font-size: clamp(20px, 5.5vw, 26px) !important;
  }

  .hero-offer__main-offer {
    margin: 0 0 var(--hero-gap) 0 !important;
    padding: 0 !important;
    -webkit-text-stroke: 0 !important;
    text-shadow: none !important;
    text-align: center !important;
  }
  .hero-offer__main-offer ul { margin: 0 !important; padding: 0 !important; list-style: none !important; }
  .hero-offer__main-offer li {
    margin: 0 0 6px 0 !important;
    padding: 0 0 0 18px !important;
    position: relative;
    line-height: 1.22 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase;
    color: #fff !important;
    text-shadow: none !important;
    white-space: normal !important;
    word-break: break-word;
    text-align: left !important;
  }
  .hero-offer__main-offer li::before {
    content: "⭐";
    position: absolute;
    left: 0;
    top: 0.05em;
    font-size: 12px;
    line-height: 1;
    filter: none;
    opacity: 0.90;
  }
  .hero-offer__main-offer li:last-child { margin-bottom: 0 !important; }
  .hero-offer__cta { margin-top: 10px !important; }

  /* Main Offer Mobile */
  .main-offer { padding: 30px 20px !important; border-width: 1px; }
  .main-offer .hero-offer__main-offer { font-size: 32px !important; }

  /* TABLES mobile */
  .data-table thead{ display: none !important; }
  .data-table, .data-table tbody, .data-table tr{ display: block; width: 100%; }
  .data-table tr{
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 14px 14px;
    margin-bottom: 14px;
    box-shadow: none;
  }
  .data-table td{
    display: flex;
    flex-direction: column;       
    align-items: center;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.25;
    min-width: 0;
  }
  .data-table td:last-child{ border-bottom: none; padding-bottom: 0; }

  .data-table td::before{
    content: attr(data-label);
    display: block;
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
    overflow-wrap: anywhere;
  }

  .data-table .promo-code{
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent-gold);
    border: none;
    color: #000;
    font-weight: 800;
    font-size: 12px;
    white-space: nowrap;
  }

  .data-table-container__title{
    font-size: 22px !important;
    line-height: 1.15;
  }

  .update-banner { padding: 15px; align-items: flex-start; }
  .update-banner__date { display: block; margin-left: 0; margin-top: 4px; }

  .license-rich-card{
    padding: 22px !important;
    border-radius: 16px;
    text-align: center !important;
  }
  .license-header{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .security-grid{ grid-template-columns: 1fr; }
  .security-item{ align-items: flex-start; text-align: left; }

  .author-box{
    padding: 26px 18px !important;
    border-radius: 18px;
  }
  .author-box__name{ font-size: 24px; }
  .author-box__bio{ font-size: 14px; }
}

@media (max-width: 360px) {
  .main-header__actions a.button--secondary { display: none !important; }
}

@media (max-width: 480px) {
  .game-grid__container { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .game-card__title { font-size: 11px; padding: 8px 4px; }
  .game-card__button { min-width: 90px; font-size: 11px !important; padding: 8px !important; }
}

/* Sticky CTA mobile */
@media (max-width: 768px) {
  .sticky-cta {
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
    gap: 15px;
    justify-content: space-between;
  }
  .sticky-cta__info { flex: 1; }
  .sticky-cta__brand { font-size: 14px; opacity: 0.9; }
  .sticky-cta__offer { font-size: 16px; }
  .sticky-cta__button {
    font-size: 16px !important;
    padding: 10px 20px !important;
    box-shadow: none !important;
    animation: none;
  }

  .main-footer { padding-top: 22px !important; }
  .main-footer .container {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 16px !important;
  }
  .footer-column:nth-child(3) { text-align: center !important; }

  .main-footer .footer-column {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .main-footer .footer-logo {
    margin: 0 auto 10px auto !important;
    max-width: 170px;
  }

  .main-footer .footer-text {
    margin-bottom: 12px !important;
    font-size: 13px;
    line-height: 1.35;
  }

  .main-footer .footer-badges,
  .main-footer .footer-payment-grid{
    width: 100%;
    justify-content: center !important;
  }

  .main-footer .footer-badges{
    flex-wrap: nowrap !important;
    gap: 8px !important;
  }

  .main-footer .footer-badge--text-full {
    height: 36px !important;
    padding: 0 10px !important;
    font-size: 11px !important;
    flex: 1 1 0;
    min-width: 0;
    white-space: nowrap;
  }

  .main-footer .footer-badge--text-18 {
    width: 36px !important;
    height: 36px !important;
    font-size: 12px !important;
    flex: 0 0 36px;
  }

  .main-footer .footer-payment-grid {
    flex-wrap: nowrap !important;
    gap: 6px !important;
  }

  .main-footer .footer-payment-grid .footer-badge {
    width: auto !important;
    height: 36px !important;
    padding: 6px 8px !important;
    flex: 1 1 0;
    min-width: 44px;
    max-width: 62px;
  }

  .main-footer .footer-column__title {
    margin-bottom: 12px !important;
    font-size: 18px !important;
  }

  .main-footer__copyright {
    margin-top: 16px !important;
    padding-top: 12px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 420px){
  .data-table td{ font-size: 13px; }
  .data-table td::before{ font-size: 11px; }
}

/* =========================================================
   PATCHES (ORIGINAL FIXES BUT RESKINNED)
   ========================================================= */

#container p,
#container li {
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: break-word;
}
#container p { text-align-last: left; }

.hero-offer p,
.hero-offer li,
.main-offer p,
.main-footer p,
.update-banner__text,
.rg-intro,
.rg-tool-desc {
  text-align: center !important;
  text-align-last: auto !important;
}

@media (max-width: 992px) {
  :root { --sticky-safe: 92px; }

  .main-footer{
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body{
    background-image:
      linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, #000000 100%),
      url('/assets/images/bg/bg-hero.webp'),
      linear-gradient(to top, rgba(0, 0, 0, 0) 78%, #000000 100%);

    background-size: 100% 600px, auto 600px, 100% 500px;

    background-position:
      top center,
      right 0 top var(--sg-header-h, 76px),
      bottom center;
  }
}

@media (max-width: 992px) {
  .data-table tr { text-align: center !important; }

  .data-table td{
    display: block !important;
    text-align: center !important;
    justify-content: initial !important;
    gap: 0 !important;
    padding: 12px 0 !important;
  }

  .data-table td::before{
    content: attr(data-label);
    display: block !important;
    text-align: center !important;
    margin: 0 0 6px 0 !important;
    flex: none !important;
    max-width: none !important;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .data-table .promo-code{
    display: inline-flex;
    margin: 6px auto 0 auto;
  }
}

@media (max-width: 992px) {
  :root{
    --sg-header-h: 76px;
    --sticky-safe: 92px;
  }

  body{
    background-image:
      linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, #000000 100%),
      url('/assets/images/bg/bg-hero.webp'),
      linear-gradient(to top, rgba(0, 0, 0, 0) 78%, #000000 100%);

    background-repeat: no-repeat;
    background-attachment: scroll;

    background-size:
      100% 600px,
      100% auto,
      100% 500px;

    background-position:
      top center,
      right 0 top var(--sg-header-h),
      bottom center;
  }
}

@media (max-width: 992px) {
  :root { --sg-header-h: 76px; }

  .main-header{
    z-index: 30000 !important;
    overflow: visible !important;
  }
  .main-header__actions{ position: relative; z-index: 30001 !important; }
  .main-header__burger{
    position: relative;
    z-index: 30002 !important;
    pointer-events: auto !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  #main-nav.main-header__nav{
    position: fixed !important;
    top: var(--sg-header-h, 76px) !important;
    left: 0 !important;
    right: 0 !important;
    display: none !important;
    z-index: 29999 !important;
    background: #000 !important;
    backdrop-filter: none;
    max-height: calc(100vh - var(--sg-header-h, 76px)) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    padding: 12px 14px !important;
    border-bottom: 1px solid #333;
  }
  #main-nav.main-header__nav.is-open{
    display: block !important;
  }
}

.data-table-container{
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.data-table{
  width: 100% !important;
  min-width: 0 !important;
  border-collapse: collapse;
  table-layout: fixed;
}

.data-table th,
.data-table td{
  overflow-wrap: anywhere;
  word-break: break-word;
}

.data-table th{
  padding: 14px 10px !important;
  font-size: 14px !important;
}
.data-table td{
  padding: 14px 10px !important;
  font-size: 14px !important;
}

@media (max-width: 992px){
  .data-table thead{ display: none !important; }

  .data-table,
  .data-table tbody,
  .data-table tr{
    display: block !important;
    width: 100% !important;
  }

  .data-table tr{
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 16px !important;
    padding: 14px 14px !important;
    margin-bottom: 14px !important;
    box-shadow: none !important;
  }

  .data-table td{
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid #333 !important;
    text-align: left !important;
    min-width: 0 !important;
  }

  .data-table td:last-child{
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }

  .data-table td::before{
    content: attr(data-label) !important;
    flex: 0 0 46% !important;
    max-width: 46% !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.4px !important;
    text-transform: uppercase !important;
    color: var(--text-muted) !important;
    overflow-wrap: anywhere !important;
  }

  @media (max-width: 420px){
    .data-table td::before{
      flex-basis: 100% !important;
      max-width: 100% !important;
      margin-bottom: 6px !important;
    }
  }

  .data-table .promo-code{
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent-gold);
    border: none;
    color: #000;
    font-weight: 800;
    font-size: 12px;
    white-space: nowrap;
  }
}

@media (max-width: 992px){
  .data-table tr{
    text-align: center !important;
  }

  .data-table td{
    display: block !important;
    text-align: center !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid #333 !important;
  }

  .data-table td:last-child{
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }

  .data-table td::before{
    content: attr(data-label) !important;
    display: block !important;
    width: 100% !important;
    flex: none !important;
    max-width: none !important;
    margin: 0 0 8px 0 !important;
    text-align: center !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    color: var(--text-muted) !important;
  }

  .data-table .promo-code{
    display: inline-flex !important;
    margin: 0 auto !important;
  }
}

main p,
article p,
#container p{
  text-align: justify !important;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

main p,
article p,
#container p{
  text-align-last: left;
}

.hero-offer p,
.main-offer p,
.app-download p,
.main-footer p,
.sticky-cta p,
.data-table-container p,
.license-rich-card p,
.security-fairness p,
.author-box p,
.testimonial p{
  text-align: center !important;
  text-align-last: auto;
}

.hero-offer .hero-offer__cta,
.hero-offer__cta {
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;

  display: inline-flex !important;
  justify-content: center;
  align-items: center;

  margin: 18px auto 0 auto !important;
  align-self: center !important;
  max-width: 320px;
  width: 100%;
}

.hero-offer .hero-offer__cta.button,
.hero-offer__cta.button {
  white-space: nowrap;
}

@media (min-width: 993px) {
  .hero-offer__cta,
  .hero-offer .hero-offer__cta-button,
  .hero-offer .button.hero-offer__cta {
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (min-width: 993px) {
  body {
    background-image:
      linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, #000000 100%),
      url('/assets/images/bg/bg-hero.webp'),
      linear-gradient(to top, rgba(0, 0, 0, 0) 50%, #000000 100%);
  }

  .main-footer {
    background-color: #000 !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.hero-offer .hero-offer__content{
  display: flex !important;
  flex-direction: column !important;
}

.hero-offer .hero-offer__content > a.hero-offer__cta{
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: fit-content !important;
  max-width: 100% !important;
  align-self: center !important;
  margin: 18px auto 0 auto !important;
  text-align: center !important;
  white-space: nowrap;
}

@media (min-width: 993px){
  .hero-offer .hero-offer__content > a.hero-offer__cta{
    min-width: 260px;
    padding: 16px 44px !important;
    font-size: 20px !important;
  }
}

.nc-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }

.nc-steps__item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}

.nc-steps__item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.nc-steps__number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--btn-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--btn-text);
  box-shadow: none;
}

.nc-steps__content { display: flex; flex-direction: column; }

.nc-steps__title {
  margin: 0 0 10px 0;
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
}

.nc-steps__description {
  margin: 0;
  font-family: var(--font-base);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.nc-steps__description em { color: var(--accent-gold); font-style: normal; font-weight: 700; }

/* =========================================================
   RESKIN PATCH: FORCING BETTY STYLE (Black / Pink / Green)
   ========================================================= */

:root {
  --bg-body: #000000;
  --bg-card: #0F1013;
  --bg-element: #181818;
  --text-main: #FFFFFF;
  --text-muted: #848484;
  --border-color: #FE3B5B;
  --accent-primary: #FF188E;
  --accent-hover: #FE3B5B;
  --accent-gold: #DBAD64;
  --accent-highlight: #05FF85;
  --accent-cta: #05FF85;
  --accent-cta-hover: #04FDA1;
  --accent-cta-active: #18FDC4;

  --btn-gradient: linear-gradient(90deg, #05FF85 0%, #04FDA1 47%, #18FDC4 100%);
  --btn-gradient-hover: linear-gradient(90deg, #18FDC4 0%, #04FDA1 100%);

  --color-success: #05FF85;
  --color-error: #FF188E;
  --btn-text: #0E1821;
}

body {
  background-color: #000 !important;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0) 60%, #000 100%),
    url('/assets/images/bg/bg-hero.webp'),
    linear-gradient(to top, rgba(0,0,0,0) 50%, #000 100%);
}

.button, .main-offer__cta-button, .app-download__button,
.sticky-cta__button, .bonus-card-v2__cta, .game-grid__more-button,
.hero-offer__cta, .bonus-calculator__button, .onboarding-simulator__button{
  background: var(--btn-gradient) !important;
  color: var(--btn-text) !important;
  border-radius: 50px !important;
}

.button:hover, .main-offer__cta-button:hover, .game-grid__more-button:hover{
  background: var(--btn-gradient-hover) !important;
}

.button--secondary{
  background: transparent !important;
  border-color: #fff !important;
  color: #fff !important;
}
.button--secondary:hover{
  background: transparent !important;
  border-color: var(--accent-hover) !important;
  color: var(--accent-hover) !important;
}

.main-header{
  background-color: #000 !important;
  border-bottom-color: rgba(255,255,255,0.1) !important;
}
.main-nav__submenu{
  background: #181818 !important;
  border-color: var(--border-color) !important;
}

.bonus-card-v2,
.game-card,
.provider-grid, .quick-deposit, .data-table-container, .author-box,
.testimonial, .nc-block,
.faq-accordion,
.responsible-gaming-block,
.license-rich-card{
  background: #0F1013 !important;
  border-color: var(--border-color) !important;
}

.provider-grid__item, .quick-deposit__item{
  background: #181818 !important;
  border-color: #333 !important;
}
.provider-grid__item:hover, .quick-deposit__item:hover{
  background: var(--accent-primary) !important;
  border-color: var(--accent-primary) !important;
  color: #fff !important;
}

.bonus-card-v2__offer,
.data-table th,
.hero-offer__main-offer li,
.reg-steps__description em,
.nc-steps__description em{
  color: #fff !important;
}
.data-table th{
  background: #181818 !important;
  border-bottom-color: var(--border-color) !important;
}

.sticky-cta{
  background: #000 !important;
  border-top-color: var(--accent-primary) !important;
}
.main-footer{
  background-color: #000 !important;
  border-top-color: rgba(255,255,255,0.1) !important;
}

::-webkit-scrollbar { background: #000 !important; }
::-webkit-scrollbar-thumb { background: var(--accent-primary) !important; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-hover) !important; }

:root{
  --cta-shadow-base: transparent;
  --cta-shadow-base-hover: transparent;
  --cta-glow: rgba(5, 255, 133, 0.4);
  --panel-glow: rgba(255, 24, 142, 0.2);
}

.button, .main-offer__cta-button, .app-download__button,
.sticky-cta__button, .bonus-card-v2__cta, .game-grid__more-button,
.hero-offer__cta, .bonus-calculator__button, .onboarding-simulator__button{
  box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
}

.button:hover, .main-offer__cta-button:hover, .game-grid__more-button:hover,
.sticky-cta__button:hover, .hero-offer__cta:hover{
  box-shadow: 0 0 15px rgba(5, 255, 133, 0.5) !important;
}

@media (max-width: 768px){
  .sticky-cta__button{
    box-shadow: none !important;
  }
}

.reg-steps__number,
.nc-steps__number,
.license-icon-box{
  box-shadow: none !important;
}

.main-offer{
  box-shadow: 0 0 20px var(--panel-glow) !important;
}

.provider-grid, .quick-deposit, .data-table-container, .faq-accordion,
.responsible-gaming-block, .license-rich-card{
  box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
}

.main-footer,
.main-footer .footer-text,
.main-footer .footer-column__list a,
.main-footer__copyright{
  color: #fff !important;
}

.main-footer .footer-column__title{
  color: #ffffff !important;
}

.main-footer .footer-column__list a:hover{
  color: var(--accent-hover) !important;
}

:root{
  --purple-attn-bg: #000;
  --purple-attn-border: #333;
  --purple-attn-glow: transparent;
}

.sticky-cta{
  background: #000 !important;
  background-image: none !important;
  border-top-color: var(--accent-primary) !important;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.8) !important;
}

.main-header__actions .button--secondary{
  background: transparent !important;
  background-image: none !important;
  border: 1px solid #fff !important;
  color: #fff !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.main-header__actions .button--secondary:hover{
  filter: none !important;
  border-color: var(--accent-hover) !important;
}

.data-table th{
  color: #fff !important;
  text-shadow: none !important;
}

.data-table thead th,
.data-table-container .data-table th{
  color: #fff !important;
}

body .hero-offer{
  position: relative !important;
  overflow: hidden !important;

  background: linear-gradient(115deg, rgba(217, 217, 217, 0.2) -19%, rgba(217, 217, 217, 0.05) 100%) !important;
  border: 1px solid var(--border-color) !important;

  box-shadow: 0 4px 6px rgba(0,0,0,0.25) !important;
}

body .hero-offer::before{
  display: none !important;
}

body .hero-offer > *{
  position: relative !important;
  z-index: 1 !important;
}

body .hero-offer .hero-offer__title,
body .hero-offer .hero-offer__subtitle,
body .hero-offer .hero-offer__main-offer,
body .hero-offer h1,
body .hero-offer h2,
body .hero-offer h3,
body .hero-offer p,
body .hero-offer li{
  color: #fff !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
}

body .hero-offer .hero-offer__main-offer li{
  text-shadow: none !important;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 !important;
  font-weight: 700 !important;
}

body .hero-offer em,
body .hero-offer strong,
body .hero-offer b,
body .hero-offer span{
  color: inherit !important;
}

.hero-offer .hero-offer__main-offer,
.hero-offer .hero-offer__main-offer *{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.hero-offer .hero-offer__main-offer > div,
.hero-offer .hero-offer__main-offer > p,
.hero-offer .hero-offer__main-offer > span,
.hero-offer .hero-offer__main-offer li{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

@media (min-width: 993px){
  .hero-offer .hero-offer__main-offer{
    font-size: 42px !important;
    line-height: 1.15 !important;
  }
  .hero-offer .hero-offer__main-offer > div,
  .hero-offer .hero-offer__main-offer > p,
  .hero-offer .hero-offer__main-offer > span,
  .hero-offer .hero-offer__main-offer li{
    font-size: 42px !important;
    line-height: 1.15 !important;
  }
}

.sticky-cta__brand{
  color: var(--color-success) !important;
  text-shadow: none !important;
}