/* Enhanced Dark and Gold Theme CSS */

:root {
  /* Color Palette */
  --color-primary-dark: #121212; /* Deepest dark for backgrounds, borders */
  --color-secondary-dark: #1e1e1e; /* Slightly lighter dark for elements, cards */
  --color-tertiary-dark: #2a2a2a; /* Even lighter dark for hover states, active elements */
  --color-text-light: #e0e0e0; /* Main light text color */
  --color-text-muted: #b0b0b0; /* Muted text for secondary info */
  --color-accent-gold: #ffc107; /* Primary gold accent */
  --color-accent-gold-light: #ffe082; /* Lighter gold for hover/active */
  --color-accent-gold-dark: #ffa000; /* Darker gold for stronger contrast */
  --color-warning: #ff4500; /* Orange-red for warnings/disclaimers */
  --color-warning-background: rgba(255, 69, 0, 0.15); /* Semi-transparent warning background */
  --color-border: #333333; /* Dark border color */

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;

  /* Border Radius */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 18px;
  --border-radius-xl: 24px;
  --border-radius-circle: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.6);
  --shadow-inset-sm: inset 0 0 8px rgba(0, 0, 0, 0.6);

  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-medium: 0.3s ease;
}

* {
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
  outline: none !important;
}

html {
  scroll-behavior: smooth;
  min-height: 100vh;
}

/* Gradient Animation for Body Background */
@keyframes animatedBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

body {
  background: linear-gradient(-45deg, var(--color-primary-dark), var(--color-secondary-dark), var(--color-primary-dark));
  background-size: 400% 400%;
  animation: animatedBackground 15s ease infinite;
  color: var(--color-text-light);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  padding: 0;
  margin: 0;
  position: relative;
}

.container {
  max-width: 1170px;
  width: 100%;
  padding: 0 var(--spacing-md);
  margin: 0 auto;
}

.m-0 {
  margin: 0 !important;
}

/* --- Header Section --- */
.main_header_wrap {
  background-color: rgba(0, 0, 0, 0.9); /* Slightly more opaque */
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  position: sticky; /* Make header sticky */
  top: 0;
  z-index: 100;
}

.main_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 70px;
}

.image-logo-wrap {
  max-width: 342px;
  width: 100%;
  display: flex;
  justify-content: left;
  height: inherit;
}

@media (max-width: 991px) {
  .image-logo-wrap {
    max-width: 195px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
  }
}

.image-logo-wrap .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  padding: var(--spacing-sm) 0;
}

.image-logo-wrap .logo img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1.5); /* Adjusted brightness for better contrast */
}

.text-logo-wrap {
  display: flex;
  justify-content: left;
}

@media (max-width: 768px) {
  .text-logo-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.text-logo-wrap .logo {
  font-size: 28px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif; /* Fallback if Mont-SemiBold isn't imported */
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-xl);
  white-space: nowrap;
  border-radius: var(--border-radius-md);
  min-width: 200px;
  height: 40px;
  text-decoration: none;
  color: var(--color-primary-dark); /* Dark text on gold logo */
  background-color: var(--color-accent-gold);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.text-logo-wrap .logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .text-logo-wrap .logo {
    padding: 4px var(--spacing-lg);
    border-radius: var(--border-radius-sm);
    font-size: 20px;
    height: 30px;
  }
}

.main_header_menu {
  display: flex;
  align-items: center;
}

.main_header_menu_item {
  font-weight: 500;
  color: var(--color-text-muted);
  margin: 0 0 0 var(--spacing-xl);
  text-decoration: none;
  transition: color var(--transition-medium), text-shadow var(--transition-medium);
}

.main_header_menu_item:hover {
  color: var(--color-accent-gold-light);
  text-decoration: underline;
  text-shadow: 0 0 8px rgba(255, 193, 7, 0.7); /* Gold glow */
}

/* --- Main Title Block Section --- */
.main_title_block_wrap {
  background-image: url('home/img/bg-uk.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 0 var(--spacing-md);
  position: relative;
  overflow: hidden;
}

.main_title_block_wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(18, 18, 18, 0.7), rgba(42, 42, 42, 0.7), rgba(18, 18, 18, 0.7));
  background-size: 200% 200%;
  animation: animatedBackground 20s ease infinite;
  z-index: 1;
}

.main_title_block {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  text-shadow: var(--shadow-sm);
}

.last_update_block {
  text-align: center;
  font-size: 18px;
  margin: var(--spacing-xl) 0 0;
  font-weight: 500;
  background-color: var(--color-secondary-dark);
  color: var(--color-accent-gold);
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
}

h1 {
  font-size: 52px;
  text-align: center;
  margin: 0 0 var(--spacing-xl);
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: 1px;
}

h1 .title_date {
  display: block;
  font-size: 0.6em; /* Smaller date */
  opacity: 0.8;
  margin-top: var(--spacing-sm);
}

.main_subtitle {
  font-size: 26px;
  text-align: center;
  font-weight: 400;
  margin: 0 0 var(--spacing-xxl);
  max-width: 1065px;
  color: var(--color-text-muted);
}

.advantages_block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-lg) var(--spacing-xxl);
}

.advantage_item {
  display: flex;
  align-items: center;
  transition: transform var(--transition-fast);
}

.advantage_item:hover {
  transform: translateY(-5px) scale(1.02);
}

.advantage_item:nth-child(1) img {
  height: 28px;
  width: auto;
}

.advantage_item img {
  height: 32px;
  display: block;
  margin: 0 var(--spacing-md) 0 0;
  filter: brightness(1.8) saturate(1.5); /* Enhanced gold tint for icons */
}

.advantage_item span {
  font-weight: 600;
  font-size: 26px;
  color: var(--color-accent-gold);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.age-disclaimer {
  font-size: 1.2em;
  font-weight: 700;
  color: var(--color-warning);
  margin-top: var(--spacing-xl);
  padding: var(--spacing-md) var(--spacing-lg);
  background-color: var(--color-warning-background);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-warning);
  animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 var(--color-warning-background);
  }
  100% {
    transform: scale(1.02);
    box-shadow: 0 0 15px var(--color-warning);
  }
}

/* --- Brand List Header --- */
.brand_list_header_wrap {
  margin: 0 0 var(--spacing-lg);
}

.brand_list_header {
  background-color: var(--color-secondary-dark);
  border-radius: var(--border-radius-sm);
  height: 55px;
  display: grid;
  grid-template-columns: 300px 280px 160px 150px 245px;
  box-shadow: var(--shadow-md);
}

.brand_list_header_item {
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 15px;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}

/* --- Brand List Items --- */
.brand_list,
.top_list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.brand_item {
  display: flex;
  align-items: stretch;
  min-height: 170px;
  border-radius: var(--border-radius-lg);
  background-color: var(--color-secondary-dark);
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium), background-color var(--transition-medium);
}

.brand_item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background-color: var(--color-tertiary-dark);
}

.brand_item.alternated .brand_get_bonus {
  background-color: var(--color-accent-gold-dark); /* Deeper amber for alternated bonus */
}

.brand_item .brand_logo_wrap {
  width: 300px;
  position: relative;
  background-color: var(--color-primary-dark);
  border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
  flex-shrink: 0;
  border-right: 1px solid var(--color-border);
}

.brand_item .brand_ribbon {
  position: absolute;
  top: 0;
  left: 0;
  height: 28px;
  min-width: 130px;
  background-color: var(--color-accent-gold-light);
  display: flex;
  align-items: center;
  padding: 0 var(--spacing-lg) 0 var(--spacing-md);
  border-radius: var(--border-radius-lg) 0 var(--border-radius-sm) 0;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.brand_item .brand_ribbon span {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.brand_item .brand_logo {
  display: block;
  max-width: 240px;
  width: 100%;
  height: 85px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(1.8); /* Ensure logos are visible on dark background */
}

.brand_item .brand_content_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.brand_item .brand_content {
  display: flex;
  align-items: stretch;
  flex-grow: 1;
  width: 100%;
  min-height: 140px;
}

.brand_item .brand_item_part {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.brand_item .brand_welcome_bonus {
  padding: var(--spacing-md) var(--spacing-lg);
  position: relative;
  max-width: 280px;
  width: 100%;
}

.brand_item .brand_welcome_bonus a {
  color: var(--color-accent-gold);
  text-decoration: none;
  width: 100%;
  display: block;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  transition: color var(--transition-medium);
}

.brand_item .brand_welcome_bonus a:hover {
  color: var(--color-accent-gold-light);
}

/* Disclaimer for bonus offers */
.bonus-disclaimer {
  font-size: 0.85em;
  color: var(--color-text-muted);
  margin-top: var(--spacing-sm);
  line-height: 1.4;
  text-align: center;
}

.brand_item .brand_welcome_bonus:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  height: 70px;
  width: 1px;
  background-color: var(--color-border);
  transform: translateY(-50%);
}

.brand_item .brand_welcome_bonus:hover {
  text-decoration: none;
}

.brand_item .brand_rates_wrap {
  min-width: 140px;
  margin: 0 var(--spacing-lg);
  position: relative;
}

.brand_item .brand_rates_wrap:after {
  position: absolute;
  content: "";
  top: 50%;
  right: -20px;
  height: 70px;
  width: 1px;
  background-color: var(--color-border);
  transform: translateY(-50%);
}

.brand_item .brand_score {
  font-size: 52px;
  color: var(--color-accent-gold);
}

.brand_item .brand_rate_stars_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand_item .brand_rate_stars_wrap img {
  width: 18px;
  height: 18px;
  display: block;
  margin: 0 1.5px;
  filter: brightness(1.8) saturate(1.5); /* Adjust star color to fit theme */
}

.brand_item .scores_count {
  margin: var(--spacing-sm) 0 0;
  white-space: nowrap;
  color: var(--color-text-muted);
  font-size: 0.9em;
}

.brand_item .scores_count .scores_text {
  margin: 0 5px 0 0;
}

.brand_item .brand_min_deposit_wrap {
  min-width: 110px;
  margin: 0 var(--spacing-xl);
  position: relative;
}

.brand_item .brand_min_deposit_wrap:after {
  position: absolute;
  content: "";
  top: 50%;
  right: -30px;
  height: 70px;
  width: 1px;
  background-color: var(--color-border);
  transform: translateY(-50%);
}

.brand_item .brand_min_deposit {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--color-text-light);
}

.brand_item .brand_min_deposit span {
  display: block;
  font-weight: 500;
  font-size: 1.2em;
}

.brand_item .brand_get_bonus_wrap {
  width: 100%;
  gap: var(--spacing-sm);
}

.brand_item .brand_payment_methods_wrap {
  min-width: 100px;
  padding: 0 var(--spacing-lg);
  position: relative;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}

.brand_item .brand_payment_methods_wrap a {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 3px;
  background-size: contain;
  transform: scale(1);
  transition: all var(--transition-medium);
  filter: grayscale(0.1) brightness(1.8); /* Adjust icons to gold theme */
}

.brand_item .brand_payment_methods_wrap a:hover {
  transform: scale(1.1);
  filter: grayscale(0) brightness(2.2); /* Brighter on hover */
}

.brand_item .brand_get_bonus {
  background-color: var(--color-accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  flex-shrink: 0;
  max-width: 220px;
  width: 100%;
  border-radius: var(--border-radius-xl);
  text-transform: uppercase;
  color: var(--color-primary-dark);
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
  font-weight: 700;
  font-size: 22px;
  transition: background-color var(--transition-medium), box-shadow var(--transition-medium), transform var(--transition-fast);
  padding: 0 var(--spacing-lg);
  white-space: nowrap;
}

.brand_item .brand_get_bonus:hover {
  background-color: var(--color-accent-gold-dark);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.8);
  transform: translateY(-2px);
}

.brand_item .brand_visit_link {
  color: var(--color-accent-gold);
  text-decoration: none;
  margin: 0 auto;
  transition: color var(--transition-medium), text-decoration var(--transition-medium);
}

.brand_item .brand_visit_link:hover {
  color: var(--color-accent-gold-light);
  text-decoration: underline;
}

.brand_item .brand_description {
  min-height: 35px;
  width: 100%;
  background-color: var(--color-primary-dark);
  text-align: center;
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 var(--border-radius-lg) 0;
  border-top: 1px solid var(--color-border);
}

.brand_item .brand_description a {
  font-size: 11px;
  color: var(--color-text-muted);
  text-decoration: underline;
}

.brand_item .brand_descr_showhide_btn {
  background: transparent;
  border: none;
  font-size: 11px;
  color: var(--color-text-muted);
  padding: 0;
  cursor: pointer;
  margin: 0 0 0 var(--spacing-sm);
  display: none;
}

.top_list .brand_get_bonus {
  background-color: var(--color-accent-gold-dark);
}

.top_list .brand_get_bonus:hover {
  background-color: var(--color-accent-gold);
}

.top_list_title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  margin: var(--spacing-md) auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-secondary-dark);
  color: var(--color-accent-gold);
  width: fit-content;
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
}

.top_list_title img {
  display: block;
  height: 42px;
  margin: 0 0 0 var(--spacing-md);
  filter: brightness(1.8) saturate(1.5); /* Adjust icon to gold theme */
}

/* --- Rating Explanation Block --- */
.rating_explanation_block {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 var(--spacing-xl);
  gap: var(--spacing-xxl);
}

.rating_explanation_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 240px;
  min-height: 220px;
  text-align: center;
  flex: 1;
}

.rating_explanation_item__img {
  width: 160px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary-dark);
  border-radius: 35px;
  margin: 0 0 var(--spacing-md);
  box-shadow: var(--shadow-inset-sm);
}

.rating_explanation_item__img img {
  display: block;
  max-width: 110px;
  width: 100%;
  filter: brightness(2) saturate(1.8); /* Make icons brighter and fit theme */
  transition: transform var(--transition-medium);
}

.rating_explanation_item__img img:hover {
  transform: scale(1.05);
}

.rating_explanation_item__title {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  color: var(--color-accent-gold);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.rating_explanation_item__separator {
  font-size: 28px;
  color: var(--color-border);
  font-weight: 600;
  margin: 0 var(--spacing-xl);
  display: flex;
  align-items: center;
  line-height: 1;
}

/* --- FAQ Block --- */
.faq-block-wrap {
  padding: var(--spacing-xxl) 0;
  position: relative;
  background-color: var(--color-primary-dark);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--spacing-xxl);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 991px) {
  .faq-block-wrap {
    padding: 35px 0;
  }
}

.faq-block-wrap h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-text-light);
  text-align: center;
  margin: 0 0 var(--spacing-xl);
}

@media (max-width: 540px) {
  .faq-block-wrap h2 {
    font-size: 24px;
  }
}

.faq-block-wrap .faq-block {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.faq-block-wrap .faq-block .faq-block__item {
  width: 49%;
  position: relative;
  display: flex;
  padding: var(--spacing-lg) var(--spacing-xxl);
  text-align: left;
  color: var(--color-text-muted);
  border-radius: var(--border-radius-md);
  background: var(--color-secondary-dark);
  min-height: 95px;
  align-items: flex-start;
  gap: var(--spacing-sm);
  flex-direction: column;
  justify-content: center;
  transition: background-color var(--transition-medium), box-shadow var(--transition-medium);
  box-shadow: var(--shadow-sm);
}

.faq-block-wrap .faq-block .faq-block__item:hover {
  background-color: var(--color-tertiary-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

@media (max-width: 640px) {
  .faq-block-wrap .faq-block .faq-block__item {
    width: 100%;
  }
}

.faq-block-wrap .faq-block .faq-block__item h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  max-width: 90%;
  color: var(--color-accent-gold);
}

@media (max-width: 864px) {
  .faq-block-wrap .faq-block .faq-block__item h3 {
    max-width: 85%;
  }
}

.faq-block-wrap .faq-block .faq-block__item .faq-block__item-content {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-light);
}

.faq-block-wrap
  .faq-block
  .faq-block__item
  .faq-block__item-content.toggle-content.hide {
  display: none;
}

.faq-block-wrap
  .faq-block
  .faq-block__item
  .faq-block__item-content.toggle-content.show {
  display: block;
}

.faq-block-wrap .faq-block .faq-block__item .trigger-content {
  position: absolute;
  content: "";
  top: 28px;
  right: 25px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  filter: brightness(2) saturate(1.8); /* Adjust icon to gold theme */
  transition: transform var(--transition-fast);
}

.faq-block-wrap .faq-block .faq-block__item .trigger-content:hover {
  transform: rotate(90deg);
}

/* --- Content Block --- */
.content-block-wrap {
  margin-bottom: var(--spacing-xxl);
}

.content-block-wrap .content-block-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

@media (max-width: 540px) {
  .content-block-wrap .content-block-title {
    font-size: 24px;
  }
}

.content-block-wrap .content-block {
  align-items: center;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxl);
}

.content-block-wrap .content-block .content-block__item {
  align-items: center;
  border-radius: var(--border-radius-lg);
  display: flex;
  gap: var(--spacing-xxl);
  padding: var(--spacing-xl);
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium), background-color var(--transition-medium);
}

.content-block-wrap .content-block .content-block__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background-color: var(--color-secondary-dark);
}

@media (max-width: 540px) {
  .content-block-wrap .content-block .content-block__item {
    flex-direction: column;
  }
}

.content-block-wrap .content-block .content-block__item .content-block-image {
  margin: 0 auto;
  max-width: 180px;
  width: 100%;
  padding: var(--spacing-xxl);
  background: var(--color-secondary-dark);
  border-radius: inherit;
  box-shadow: var(--shadow-inset-sm);
}

@media (max-width: 540px) {
  .content-block-wrap .content-block .content-block__item .content-block-image {
    margin: 0 auto;
  }
}

.content-block-wrap
  .content-block
  .content-block__item
  .content-block-image
  img {
  display: block;
  margin: 0 auto;
  height: auto;
  width: 100%;
  filter: brightness(2) saturate(1.8); /* Make icons brighter and fit theme */
}

.content-block-wrap .content-block .content-block__item .content-item-title {
  font-size: 28px;
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
  color: var(--color-accent-gold);
}

@media (max-width: 540px) {
  .content-block-wrap .content-block .content-block__item .content-item-title {
    margin: 0 auto 12px;
    line-height: 1.2;
    text-align: center;
  }
}

.content-block-wrap .content-block .content-block__item p {
  font-size: 15px;
  line-height: 1.7;
  padding-right: var(--spacing-md);
  color: var(--color-text-muted);
}

@media (max-width: 540px) {
  .content-block-wrap .content-block .content-block__item p {
    text-align: justify;
  }
}

/* --- Footer Section --- */
.main_footer_wrap {
  background-color: var(--color-primary-dark);
  padding: 70px 0;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.6);
}

.main_footer_wrap .container {
  padding: 0 var(--spacing-xl);
}

.main_footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 991px) {
  .main_footer {
    align-items: normal;
  }
}

.main_footer .footer_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 var(--spacing-xxl);
  width: 100%;
}

@media (max-width: 991px) {
  .main_footer .footer_header {
    align-items: normal;
    margin-bottom: 25px;
  }
}

.main_footer .footer_header .footer_logo {
  height: 32px;
  display: block;
  flex-shrink: 0;
  margin-bottom: var(--spacing-xxl);
}

.footer_logo {
  max-width: 220px;
  height: 55px;
}

.footer_logo img {
  width: 100%;
  height: auto;
  filter: brightness(1.8); /* Make white logo pop */
}

@media (max-width: 991px) {
  .main_footer .footer_header .footer_logo img {
    width: 90%;
  }
}

.main_footer .footer_header .footer_menu {
  display: flex;
  align-items: center;
  margin: 25px 0 25px auto;
  position: relative;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--spacing-md) var(--spacing-xl);
}

@media (max-width: 991px) {
  .main_footer .footer_header .footer_menu {
    margin: 35px 0 0;
    width: 100%;
    justify-content: center;
  }
}

.main_footer .footer_header .footer_menu > a {
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-medium), text-decoration var(--transition-medium), text-shadow var(--transition-medium);
}

.main_footer .footer_header .footer_menu > a:hover {
  color: var(--color-accent-gold);
  text-decoration: underline;
  text-shadow: 0 0 5px rgba(255, 193, 7, 0.5); /* Subtle gold glow */
}

@media (max-width: 991px) {
  .main_footer .footer_header .footer_menu > a {
    width: auto;
    margin: 0;
  }
  .main_footer .footer_header .footer_menu > a:nth-child(2n) {
    text-align: left;
  }
}

.main_footer .footer_text {
  margin: 0 0 var(--spacing-xxl);
}

.main_footer .footer_text p {
  font-weight: 300;
  margin: 0 0 var(--spacing-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.95em;
}

@media (max-width: 991px) {
  .main_footer .footer_text {
    font-size: 13px;
    font-weight: 400;
    text-align: center;
  }
}

.main_footer .awareness_block {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0 0 var(--spacing-xxl);
  gap: var(--spacing-xxl);
  flex-wrap: wrap;
}

.main_footer .awareness_block img {
  display: block;
  filter: brightness(1.8) saturate(1.5); /* Adjust images to gold theme */
  transition: transform var(--transition-fast), filter var(--transition-medium);
}

.main_footer .awareness_block img:hover {
  transform: scale(1.1);
  filter: brightness(2.2) saturate(2) drop-shadow(0 0 8px var(--color-accent-gold)); /* Stronger glow */
}

@media (max-width: 991px) {
  .main_footer .awareness_block {
    flex-wrap: wrap;
    gap: var(--spacing-lg);
  }
}

.main_footer .footer_copyright {
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-size: 0.9em;
}

@media (max-width: 991px) {
  .main_footer .footer_copyright {
    font-size: 13px;
  }
}

/* --- Mobile Specific Styles --- */
.js_text__short,
.js_text__full,
.js_showhide_btn {
  display: none;
}

.js_text__short.show,
.js_text__full.show,
.js_showhide_btn.show {
  display: initial;
}

/* Popups - General styles */
.bottom_offer_popup_overlay {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  width: 100%;
  z-index: 101;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.9); /* Semi-transparent dark overlay */
}

.bottom_offer_popup_overlay.show {
  display: block;
}

.bottom_offer_popup_overlay .bottom_offer_popup_wrap {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  padding: var(--spacing-lg);
}

.bottom_offer_popup_overlay .bottom_offer_popup {
  width: 100%;
  position: relative;
}

.bottom_offer_popup_overlay .bottom_offer_popup_close_btn {
  width: 45px;
  height: 45px;
  border-radius: var(--border-radius-circle);
  border: none;
  cursor: pointer;
  transition: box-shadow var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  background-color: var(--color-primary-dark);
  color: var(--color-accent-gold);
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  font-size: 1.8em;
  box-shadow: var(--shadow-sm);
}

.bottom_offer_popup_overlay .bottom_offer_popup_close_btn:hover {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.9);
  background-color: var(--color-secondary-dark);
  transform: rotate(90deg);
}

.bottom_offer_popup_overlay .offer_wrap {
  display: flex;
  align-items: stretch;
}

.bottom_offer_popup_overlay .bottom_offer_item {
  background: var(--color-secondary-dark);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  width: 100%;
  min-height: 130px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.8);
}

@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_item {
    
  }
}

.bottom_offer_popup_overlay .bottom_offer_logo_wrap {
  width: 100%;
  max-width: 320px;
  position: relative;
  background: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 1;
  border-right: 1px solid var(--color-border);
}

@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_logo_wrap {
    max-width: 100%;
    min-height: 110px;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
}

.bottom_offer_popup_overlay .bottom_offer_logo {
  display: block;
  max-width: 230px;
  width: 100%;
  height: 90px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(1.8) saturate(1.5); /* Enhance logo visibility and fit theme */
}

.bottom_offer_popup_overlay .bottom_offer_content_wrap {
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  justify-content: space-around;
  width: 100%;
}

@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_content_wrap {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
}

.bottom_offer_popup_overlay .bottom_offer_text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 680px;
  width: 100%;
}

.bottom_offer_popup_overlay .bottom_offer_text-block .brand_description {
  min-height: 35px;
  width: 100%;
  background-color: inherit;
  color: var(--color-text-muted);
  text-align: center;
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 var(--border-radius-lg) 0;
}

.bottom_offer_popup_overlay .bottom_offer_text-block .brand_description span a {
  color: var(--color-accent-gold);
  text-decoration: underline;
}
.bottom_offer_popup_overlay .bottom_offer_text-block .brand_description {
  min-height: 35px; /* Taller */
  width: 100%;
  background-color: inherit;
  color: #d0d0d0; /* Light grey text */
  text-align: center;
  padding: 6px 12px; /* More padding */
  font-size: 15px; /* Larger font */
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 18px 0;
}

.bottom_offer_popup_overlay .bottom_offer_text-block .brand_description span a {
  color: #ffff00; /* Bright Yellow link */
  text-decoration: underline;
}

@media (max-width: 864px) {
  .bottom_offer_popup_overlay .bottom_offer_text-block .brand_description {
    font-size: 13px;
  }
}

.bottom_offer_popup_overlay .bottom_offer_text-block .brand_descr_showhide_btn {
  background: transparent;
  border: none;
  font-size: 15px; /* Larger font */
  font-weight: 500;
  color: #ffff00; /* Bright Yellow for the button */
  padding: 0;
  cursor: pointer;
  margin: 0 0 0 6px;
  text-decoration: underline;
}

.bottom_offer_popup_overlay
  .bottom_offer_text-block
  .bottom_offer_welcome_bonus {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0 8px; /* More padding */
}

.bottom_offer_popup_overlay
  .bottom_offer_text-block
  .bottom_offer_welcome_bonus
  a {
  text-align: center;
  font-size: 28px; /* Larger font */
  font-weight: 800;
  color: #ffff00; /* Bright Yellow for bonus text */
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.bottom_offer_popup_overlay
  .bottom_offer_text-block
  .bottom_offer_welcome_bonus
  a:hover {
  color: #fffacd;
}

@media (max-width: 864px) {
  .bottom_offer_popup_overlay
    .bottom_offer_text-block
    .bottom_offer_welcome_bonus
    a {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .bottom_offer_popup_overlay
    .bottom_offer_text-block
    .bottom_offer_welcome_bonus {
    padding: 0;
  }
}

.bottom_offer_popup_overlay .bottom_offer_get_bonus {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px; /* Taller button */
  flex-shrink: 0;
  max-width: 250px; /* Wider button */
  width: 100%;
  text-transform: uppercase;
  color: #000; /* Dark text */
  text-shadow: rgba(0, 0, 0, 0.35) 0 3px 3px; /* Stronger text shadow */
  font-size: 22px; /* Larger font */
  box-shadow: rgba(0, 0, 0, 0.35) 0 5px 5px 0; /* Stronger shadow */
  background: #ffd700; /* Gold/Yellow for bonus button */
  border-radius: 28px; /* More rounded */
  text-decoration: none;
  padding: 0 25px;
  white-space: nowrap;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.bottom_offer_popup_overlay .bottom_offer_get_bonus:hover {
  background-color: #ffc107;
  transform: translateY(-2px); /* Subtle lift on hover */
  box-shadow: rgba(0, 0, 0, 0.6) 0 8px 8px 0;
}

@media (max-width: 540px) {
  .bottom_offer_popup_overlay .bottom_offer_get_bonus {
    height: 45px;
    max-width: 220px;
    font-size: 18px;
  }
}

/* Three Offer Popup - Adjust colors for dark and yellow theme */
.three_offer_popup_overlay {
  display: none;
  background: rgba(10, 10, 10, 0.9); /* Semi-transparent dark grey overlay */
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 101;
  overflow-y: auto;
}

.three_offer_popup_overlay.show {
  display: block;
}

.three_offer_popup_overlay .three_offer_popup_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  min-height: 550px; /* Taller */
  max-width: 1150px; /* Wider */
  width: 100%;
  margin: 0 auto;
}

.three_offer_popup_overlay .three_offer_popup {
  position: relative;
  padding: 80px 70px 40px; /* More padding */
  border-radius: 28px; /* More rounded */
  min-height: inherit;
  background-color: #1a1a1a; /* Dark background for popup */
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 35px; /* Increased gap */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9); /* Deeper shadow */
}

.three_offer_popup_overlay .three_offer_popup_close_btn {
  width: 40px; /* Larger */
  height: 40px;
  background-image: url(../images/three-offer-close-icon.svg); /* Ensure this icon looks good on dark */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease-in-out, transform 0.2s ease;
  position: absolute;
  top: 18px; /* Adjusted position */
  right: 18px;
  filter: invert(0.9) hue-rotate(0deg); /* Lighten and adjust hue */
}

.three_offer_popup_overlay .three_offer_popup_close_btn:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.9);
  transform: rotate(90deg); /* Rotate on hover */
}

.three_offer_popup_overlay .three_offer_popup_title {
  text-align: center;
  font-size: 40px; /* Larger title */
  text-transform: uppercase;
  font-weight: 600; /* Bolder */
  color: #ffff00; /* Bright Yellow for title */
  margin: 0;
  padding: 0 60px; /* More padding */
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.three_offer_popup_overlay .offers_wrap {
  display: flex;
  align-items: stretch;
  margin: 45px 0 0; /* More margin */
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; /* Increased gap between offers */
}

.three_offer_popup_overlay .three_offer_item {
  background-color: #2a2a2a; /* Medium dark grey for offer item */
  border-radius: 18px; /* More rounded */
  border: 4px solid #333333; /* Slightly lighter grey border */
  overflow: hidden;
  width: 350px; /* Wider */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.three_offer_popup_overlay .three_offer_item:hover {
  transform: translateY(-8px); /* More pronounced lift */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.9); /* Stronger shadow */
}

.three_offer_popup_overlay .three_offer_item .brand_rates_wrap:after {
  display: none;
}

.three_offer_popup_overlay .three_offer_logo_wrap {
  height: 150px;
  background-image: url(../images/three-offer-logo-bg.webp); /* Check this image for dark theme compatibility */
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10px 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-bottom: 1px solid #6a006a;
}

.three_offer_popup_overlay .three_offer_logo {
  height: 70px;
  display: block;
  width: 100%;
  max-width: 200px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(1.2) hue-rotate(250deg); /* Enhance logo visibility and fit theme */
}

.three_offer_popup_overlay .three_offer_content_wrap {
  padding: 15px 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}



.three_offer_popup_overlay .three_offer_welcome_bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.three_offer_popup_overlay .three_offer_welcome_bonus a {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #d4c08c; /* Gold-like for bonus text */
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.three_offer_popup_overlay .three_offer_welcome_bonus a:hover {
  color: #f0d592;
}

.three_offer_popup_overlay .three_offer_rates_wrap {
  margin: auto 0 0;
}

.three_offer_popup_overlay .three_offer_rates_wrap .brand_score {
  font-weight: 500;
  font-size: 48px;
  color: #d4c08c; /* Gold-like for score */
  text-align: center;
}

.three_offer_popup_overlay .three_offer_rates_wrap .brand_rate_stars_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.three_offer_popup_overlay .three_offer_rates_wrap .brand_rate_stars_wrap img {
  width: 16px;
  height: 16px;
  display: block;
  margin: 0 1px;
  filter: brightness(1.2); /* Make stars pop */
}

.three_offer_popup_overlay .three_offer_rates_wrap .scores_count {
  color: #c0c0c0; /* Light grey for score count */
}

.three_offer_popup_overlay .three_offer_get_bonus {
  background-color: #4a804a; /* Vibrant green for bonus button */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  flex-shrink: 0;
  max-width: 200px;
  width: 100%;
  border-radius: 25px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  font-weight: 500;
  font-size: 20px;
  margin: 10px 0 0;
  padding: 0 20px;
  white-space: nowrap;
  transition: background-color 0.3s ease, box-shadow 0.3s ease-out;
}
.three_offer_popup_overlay .three_offer_get_bonus:hover {
  background-color: #5bb05b;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* --- Responsive Overrides --- */
.brand_description__mobile,
.brand_rates_wrap__mobile,
.brand_welcome_bonus__mobile,
.mobile_menu_btn,
.menu_close_btn,
.brand_min_deposit_wrap__mobile,
.brand_payment_methods_wrap__mobile {
  /* These will be shown on mobile, so remove display: none here if they are meant to be visible.
     I will keep them as 'none' here based on your original snippet structure and enable them
     in the media queries if necessary. */
  display: none;
}

@media (max-width: 1170px) {
  .three_offer_popup_overlay,
  .three_offer_popup_overlay.show,
  .brand_welcome_bonus:after,
  .brand_rates_wrap:after,
  .brand_min_deposit_wrap:after {
    /* These separators might still be desired on some resolutions */
    display: none;
  }
  .brand_list_header {
    grid-template-columns: 270px 1fr 160px 150px 1fr;
  }
  .brand_logo_wrap {
    max-width: 270px;
  }
  .brand_get_bonus_wrap {
    padding: 0 15px;
  }
}

@media (max-width: 1024px) {
  .hidden-md {
    display: none !important;
  }
  .advantage_item span {
    font-size: 16px;
  }
  .brand_list_header {
    grid-template-columns: 180px 1fr 160px 150px 1fr;
  }
  .brand_list_header_item {
    font-size: 12px;
    text-align: center;
  }
  .brand_get_bonus {
    font-size: 18px;
  }
  .brand_logo_wrap {
    max-width: 180px;
  }
  .brand_welcome_bonus {
    padding: 10px 15px;
  }
  .brand_welcome_bonus a {
    font-size: 18px;
  }
  .brand_rates_wrap {
    margin: 0 15px;
  }
  .rating_explanation_block {
    flex-wrap: wrap;
    justify-content: center; /* Center items when wrapping */
  }
  .rating_explanation_item {
    max-width: unset;
    width: 45%;
    margin: 0 0 5px;
  }
  .rating_explanation_item__separator {
    margin: 0 10px 50px;
  }
  .rating_explanation_item__separator.last_item {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
}

@media (max-width: 991px) {
  .brand_list_header_wrap,
  .main_subtitle {
    display: none;
  }
  /* Ensure mobile specific elements are shown */
  .brand_list .brand_welcome_bonus,
  .brand_list .brand_payment_methods_wrap,
  .brand_list .brand_rates_wrap,
  .brand_list .brand_description,
  .brand_list .brand_min_deposit_wrap,
  .top_list .brand_welcome_bonus,
  .top_list .brand_payment_methods_wrap,
  .top_list .brand_rates_wrap,
  .top_list .brand_description,
  .top_list .brand_min_deposit_wrap {
    display: none; /* Keep desktop versions hidden */
  }
  .container {
    padding: 0 10px;
  }
  .main_header_wrap .container {
    padding: 0;
  }
  .main_header {
    height: 48px;
    position: relative;
  }
  .mobile_menu_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    margin: 0 0 0 10px;
  }
  .mobile_menu_btn img {
    display: block;
    width: 18px;
    filter: invert(1); /* Ensure it's visible on dark header */
  }
  .main_header_menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    z-index: 10;
    transition: all 0.3s ease-in-out;
    background-color: #1a2a1a; /* Dark menu background */
    border-radius: 0 0 16px 16px;
  }
  .main_header_menu.show {
    transform: translateY(100%);
  }
  .main_header_menu_item {
    margin: 0;
    font-size: 18px;
    background-color: #2e4d2e; /* Dark green for menu items */
    color: #e0e0e0;
    padding: 10px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #3f603f;
  }
  .main_header_menu_item:last-child {
    border-bottom: none;
    border-radius: 0 0 16px 16px;
  }
  .menu_close_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: none;
    background: #2e4d2e; /* Dark green for close button */
    font-size: 18px;
    padding: 10px;
    color: #e0e0e0;
    font-weight: 500;
    border-radius: 0 0 16px 16px;
  }
  .main_title_block_wrap {
    margin: 0 0 10px;
    background-image: url('home/img/bg-mobile-uk.webp'); /* Mobile specific background */
  }
  .main_title_block {
    padding: 15px 0;
  }
  .last_update_block {
    font-size: 10px;
    margin: 0;
    padding: 7px 30px;
  }
  h1 {
    font-size: 21px;
    margin: 0 0 15px;
  }
  .advantages_block {
    align-items: unset;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 350px;
    margin: 0 auto;
  }
  .advantage_item {
    margin: 0 0 15px;
    width: 50%;
    font-size: 12px;
    white-space: nowrap;
  }
  .advantage_item img {
    height: 18px;
    margin: 0 8px 0 0;
  }
  .advantage_item:nth-child(1) img {
    height: 14px;
  }
  .brand_item {
    min-height: 154px;
    margin: 0;
    border-radius: 16px 16px 0 0;
  }
  .brand_ribbon {
    height: 21px;
    padding: 1px 10px 0;
  }
  .brand_ribbon span {
    font-weight: 500;
    line-height: 1;
  }
  .brand_list .brand_logo_wrap,
  .top_list .brand_logo_wrap {
    max-width: unset;
    width: 50%;
    border-radius: 16px 0 0 0;
    display: flex;
    flex-direction: column;
    padding: 24px 5px 5px;
    border-right: 1px solid #3f603f;
  }
  .brand_list .brand_logo,
  .top_list .brand_logo {
    height: 48px;
    max-width: 128px;
    margin: 0 0 5px;
  }
  .brand_list .brand_rates_wrap__mobile,
  .top_list .brand_rates_wrap__mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .brand_list .brand_score,
  .top_list .brand_score {
    font-size: 33px;
    font-weight: 500;
    text-align: center;
    line-height: 1;
  }
  .brand_list .brand_rate_stars_wrap img,
  .top_list .brand_rate_stars_wrap img {
    width: 14px;
    height: 14px;
  }
  .brand_list .scores_count,
  .top_list .scores_count {
    font-size: 10px;
  }
  .brand_list .brand_content_wrap,
  .top_list .brand_content_wrap {
    width: 50%;
  }
  .brand_list .brand_get_bonus_wrap,
  .top_list .brand_get_bonus_wrap {
    padding: 5px;
  }
  .brand_list .brand_welcome_bonus__mobile,
  .top_list .brand_welcome_bonus__mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  .brand_list .brand_welcome_bonus__mobile a,
  .top_list .brand_welcome_bonus__mobile a {
    font-size: 18px;
    color: #d4c08c; /* Gold-like for mobile bonus text */
    text-decoration: none;
    line-height: 22px;
    display: block;
    text-align: center;
    font-weight: 500;
  }
  .brand_list .brand_get_bonus,
  .top_list .brand_get_bonus {
    height: 34px;
    font-size: 14px;
    max-width: 148px;
  }
  .brand_list .brand_visit_link,
  .top_list .brand_visit_link {
    font-size: 10px;
    font-weight: 300;
    color: #a0a0a0; /* Muted for mobile visit link */
  }
  .brand_list .brand_min_deposit_wrap__mobile,
  .top_list .brand_min_deposit_wrap__mobile {
    display: block;
    margin: 0 auto;
    color: #c0c0c0;
  }
  .brand_list .brand_payment_methods_wrap__mobile,
  .top_list .brand_payment_methods_wrap__mobile {
    min-width: 90px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px 0;
  }
  .brand_list .brand_payment_methods_wrap__mobile a,
  .top_list .brand_payment_methods_wrap__mobile a {
    display: block;
    width: 21px;
    height: 21px;
    margin: 0 2px;
    background-size: contain;
  }
  .brand_list .brand_description__mobile,
  .top_list .brand_description__mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a2a1a; /* Very dark green for mobile description */
    font-size: 8px;
    color: #c0c0c0;
    text-align: center;
    min-height: 38px;
    width: 100%;
    border-radius: 0 0 16px 16px;
    padding: 5px 15px;
    margin: 0 auto;
    font-weight: 300;
    border-top: 1px solid #3f603f;
  }
  .brand_list .brand_description__mobile a,
  .top_list .brand_description__mobile a {
    color: #a0a0a0;
    font-size: 8px;
    text-decoration: underline;
  }
  .brand_descr_showhide_btn {
    font-size: 9px;
    font-weight: 300;
  }
  .top_list_title {
    font-size: 21px;
    font-weight: 400;
    padding: 10px 20px;
  }
}

@media (max-width: 350px) {
  .brand_get_bonus {
    font-size: 11px;
  }
  .rating_explanation_item {
    width: 42%;
  }
  .rating_explanation_item__img {
    width: 100px;
    height: 100px;
  }
  .rating_explanation_item__img img {
    max-width: 80px;
  }
}
/* --- Info Blocks Section (formerly Content Block) --- */
.info_blocks_wrap {
  margin-bottom: 50px; /* Provides space below this section */
}

/* Adjust margin for smaller screens */
@media (max-width: 768px) {
  .info_blocks_wrap {
    margin-bottom: 30px;
  }
}

.section_title {
  font-size: 44px;
  font-weight: 800;
  color: #f5f5f5;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.8);
}

/* Responsive font size for the main section title */
@media (max-width: 540px) {
  .section_title {
    font-size: 30px;
    margin-bottom: 25px;
  }
}

.info_blocks_grid {
  display: flex;
  flex-direction: column; /* Stacks items vertically by default */
  gap: 40px; /* Space between each info block item */
  border-radius: 20px; /* Rounded corners for the container (though items themselves are rounded) */
  align-items: center;
}

.info_block_item {
  display: flex;
  align-items: center;
  gap: 40px; /* Space between icon and content */
  padding: 35px;
  background: #1a1a1a; /* Darkest grey for info blocks */
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8); /* Deep shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  width: 100%; /* Ensure full width within its parent */
}

/* Alternating layout: icon on right for even items */
.info_blocks_grid .info_block_item:nth-child(even) {
  flex-direction: row-reverse;
}

/* Mobile adjustments for info block items */
@media (max-width: 768px) {
  .info_block_item {
    flex-direction: column !important; /* Force vertical stacking on mobile for all items */
    text-align: center;
    padding: 25px; /* Reduced padding */
    gap: 25px; /* Reduced gap */
  }
}

/* Hover effects for info block items */
.info_block_item:hover {
  transform: translateY(-8px); /* Subtle lift */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.95); /* Enhanced shadow */
  background-color: #2a2a2a; /* Slightly lighter on hover */
}

.info_block_icon {
  max-width: 200px;
  width: 100%;
  padding: 45px;
  background: #2a2a2a; /* Medium dark grey for icon background */
  border-radius: inherit; /* Inherits border-radius from parent info_block_item */
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.8); /* Inner shadow for depth */
}

/* Mobile adjustments for icons */
@media (max-width: 768px) {
  .info_block_icon {
    max-width: 150px; /* Smaller icon on mobile */
    padding: 30px;
    margin: 0 auto; /* Center icon when stacked vertically */
  }
}

.info_block_icon img {
  display: block;
  margin: 0 auto;
  height: auto;
  width: 100%;
  filter: brightness(3) saturate(2) drop-shadow(0 0 8px rgba(255, 204, 0, 0.8)); /* Make icons pop with yellow glow */
}

.info_block_content {
  width: 100%; /* Ensures content takes available width */
}

.info_block_content h3 {
  font-size: 30px;
  margin-bottom: 18px;
  line-height: 1.3;
  color: #ffcc00; /* Bright Yellow for content titles */
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

/* Mobile adjustments for content titles */
@media (max-width: 768px) {
  .info_block_content h3 {
    margin: 0 auto 15px;
    line-height: 1.2;
    text-align: center;
    font-size: 24px;
  }
}

.info_block_content p {
  font-size: 16px;
  line-height: 1.8;
  padding-right: 20px; /* Padding for better readability on desktop */
  color: #d0d0d0; /* Light grey for paragraph text */
}

/* Mobile adjustments for paragraphs */
@media (max-width: 768px) {
  .info_block_content p {
    text-align: justify; /* Justify text for a cleaner look on mobile */
    padding-right: 0; /* Remove right padding on mobile */
    font-size: 15px;
  }
}

---

/* --- Footer Section --- */
.main_footer_wrap {
  background-color: #121212; /* Even darker grey for footer background */
  padding: 80px 0;
  border-top: 1px solid #282828; /* Subtle border */
  box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.7); /* Stronger shadow */
}

/* Reduce footer padding for mobile */
@media (max-width: 768px) {
  .main_footer_wrap {
    padding: 50px 0;
  }
}

.main_footer_wrap .container {
  padding: 0 40px; /* Horizontal padding for content inside container */
}

/* Adjust container padding for mobile */
@media (max-width: 768px) {
  .main_footer_wrap .container {
    padding: 0 20px;
  }
}

.main_footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer_top_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 60px;
  width: 100%;
}

/* Stack footer top content vertically on mobile */
@media (max-width: 991px) {
  .footer_top_content {
    flex-direction: column;
    margin-bottom: 30px;
    text-align: center;
  }
}

.footer_logo {
  max-width: 250px;
  height: 60px;
  display: block;
  flex-shrink: 0;
}

/* Adjust logo margin and size for mobile */
@media (max-width: 991px) {
  .footer_logo {
    margin-bottom: 25px; /* Space between logo and nav on mobile */
    max-width: 200px;
    height: auto;
  }
}

.footer_logo img {
  width: 100%;
  height: auto;
  filter: brightness(2.2) contrast(1.2); /* Make white logo pop */
}

.footer_navigation {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end; /* Align links to the right on desktop */
  gap: 20px 35px; /* Spacing between footer links */
}

/* Center footer navigation and adjust gap for mobile */
@media (max-width: 991px) {
  .footer_navigation {
    margin: 0; /* Reset margin */
    width: 100%;
    justify-content: center;
    gap: 15px 25px;
  }
}

.footer_navigation > a {
  font-weight: 600;
  color: #c0c0c0; /* Light grey for footer links */
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease, text-shadow 0.3s ease, transform 0.2s ease;
  position: relative;
  padding-bottom: 2px; /* Space for underline */
}

.footer_navigation > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #ff8c00; /* Orange underline */
  transition: width 0.3s ease-out;
}

.footer_navigation > a:hover {
  color: #ffeb3b; /* Vibrant Yellow on hover */
  text-shadow: 0 0 8px rgba(255, 235, 59, 0.6); /* Subtle glow */
  transform: translateY(-1px);
}

.footer_navigation > a:hover::after {
  width: 100%;
}

.disclaimer_section {
  margin: 0 0 50px;
  text-align: center;
  width: 100%;
}

/* Adjust disclaimer margin for mobile */
@media (max-width: 768px) {
  .disclaimer_section {
    margin-bottom: 30px;
  }
}

.disclaimer_section p {
  font-weight: 300;
  margin: 0 0 15px;
  color: #b0b0b0; /* Muted text for disclaimers */
  line-height: 1.6;
  font-size: 0.95em;
}

/* Adjust disclaimer paragraph font size and padding for mobile */
@media (max-width: 768px) {
  .disclaimer_section p {
    font-size: 0.85em;
    padding: 0 15px;
  }
}

.disclaimer_section p strong {
  color: #ffcc00; /* Highlight important text */
}

.disclaimer_section .age_restriction_notice {
  font-weight: 700 !important;
  color: #ff6600 !important; /* Vibrant Orange for age warning */
  margin-top: 20px !important;
  font-size: 1.05em !important;
}

.disclaimer_section .responsible_play_reminder {
  font-weight: 700 !important;
  color: #ffcc00 !important; /* Bright Yellow */
  margin-top: 10px !important;
  font-size: 1.1em !important;
  letter-spacing: 0.5px;
}

.footer_text_content {
  margin: 0 0 60px;
}

/* Adjust footer text content margin for mobile */
@media (max-width: 768px) {
  .footer_text_content {
    margin-bottom: 30px;
  }
}

.footer_text_content p {
  font-weight: 300;
  margin: 0 0 15px;
  color: #c0c0c0; /* Light grey text */
  line-height: 1.7;
  font-size: 0.98em;
  text-align: center;
}

/* Adjust footer text paragraph font size and padding for mobile */
@media (max-width: 768px) {
  .footer_text_content p {
    font-size: 0.9em;
    padding: 0 15px;
  }
}

.footer_text_content .age_text_bold {
  font-weight: 700 !important;
  margin-top: 15px !important;
  color: #ffcc00 !important; /* Bright Yellow */
}

.awareness_links_block {
  display: flex;
  align-items: center;
  justify-content: space-around; /* Distributes items evenly */
  margin: 0 0 70px;
  gap: 40px; /* Space between links */
  flex-wrap: wrap; /* Allows items to wrap to the next line */
  width: 100%;
}

/* Mobile adjustments for awareness links */
@media (max-width: 991px) {
  .awareness_links_block {
    gap: 20px;
    justify-content: center; /* Center items when wrapped */
    margin-bottom: 40px;
  }
}

.awareness_links_block a {
  display: flex; /* Ensures images within links are centered */
  align-items: center;
  justify-content: center;
}

.awareness_links_block img {
  display: block;
  filter: brightness(2.5) saturate(1.5) drop-shadow(0 0 10px rgba(255, 204, 0, 0.7)); /* Yellow glow */
  transition: transform 0.25s ease, filter 0.3s ease;
  height: 50px; /* Uniform height for most logos */
  width: auto;
  object-fit: contain;
}

/* Specific height adjustments for certain logos */
.awareness_links_block img:nth-child(4) { /* 18+ icon */
  height: 45px;
}

.awareness_links_block img:last-child { /* Take Time To Think */
  height: 55px;
}

/* Hover effects for awareness logos */
.awareness_links_block img:hover {
  transform: scale(1.15); /* More pronounced scale */
  filter: brightness(3) saturate(2) drop-shadow(0 0 15px rgba(255, 204, 0, 0.9)); /* Stronger glow */
}

.footer_copyright {
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  color: #909090; /* Muted color */
  font-size: 0.95em;
  letter-spacing: 0.5px;
}

/* Adjust copyright text for mobile */
@media (max-width: 991px) {
  .footer_copyright {
    font-size: 14px;
    padding: 0 15px; /* Add horizontal padding */
  }
}