@import "variables.css";

/* -------------------- Base Styles -------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-family-body);
  font-size: var(--font-md);
  line-height: var(--line-height-md);
  background: var(--color-body-bg);
  color: var(--color-body-muted);
  margin: 0;
  padding: 0;
}

a {
  font-size: var(--font-sm);
  line-height: var(--line-height-sm);
  font-family: var(--font-family-body);
  color: var(--color-body);
  transition: opacity 0.3s;
  text-decoration: none;
}

/* -------------------- Typography -------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  margin: 0 0 var(--padding-sm) 0;
  line-height: inherit;
  color: var(--color-body-white);
}

h1 {
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
  font-weight: var(--font-weight-bold);
  text-align: center;
  text-transform: uppercase;
}

h2 {
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
  font-weight: var(--font-weight-medium);
}

h3 {
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
  font-weight: var(--font-weight-medium);
}

h4 {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  font-weight: var(--font-weight-medium);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
  font-weight: var(--font-weight-medium);
}

h6 {
  font-size: var(--h6-font-size);
  line-height: var(--h6-line-height);
  font-weight: var(--font-weight-medium);
}

p {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
}

.text-md {
  font-size: var(--font-md);
  line-height: var(--line-height-md);
}

.text-md p {
  margin-bottom: var(--padding-md);
}

.text-md p:last-child {
  margin-bottom: 0;
}

.text-lg {
  font-size: var(--font-lg);
  line-height: var(--line-height-lg);
}

/* Title styles for SEO Section */
.title h2 {
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
  font-weight: var(--font-weight-semibold, var(--font-weight-bold));
  color: var(--color-body-white);
  margin-bottom: var(--padding-4xl);
  text-align: left;
}

.text-md h3 {
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
  font-weight: var(--font-weight-semibold, var(--font-weight-bold));
  color: var(--color-body-white);
  margin-bottom: var(--padding-sm);
  text-align: left;
}

/* -------------------- Common elements -------------------- */
.flag-indicator {
  display: flex;
  margin: 0;
  gap: 2px;
  width: auto;
  height: 3px;
}

.flag-indicator span {
  width: 8px;
  height: 3px;
  flex: none;
}

.flag-blue {
  background-color: var(--color-flag-blue);
}

.flag-yellow {
  background-color: var(--color-flag-yellow);
}

.flag-red {
  background-color: var(--color-flag-red);
}

/* -------------------- Layout -------------------- */
.section {
  overflow-x: hidden;
}

.section-alt-padding {
  padding-top: var(--padding-6xl);
  padding-bottom: var(--padding-6xl);
}

.container-lg {
  width: 100%;
  max-width: var(--container-lg);
  padding-left: var(--padding-0);
  padding-right: var(--padding-0);
  margin-left: auto;
  margin-right: auto;
}

.container-md {
  width: 100%;
  max-width: var(--container-md);
  padding-left: var(--padding-0);
  padding-right: var(--padding-0);
  margin-left: auto;
  margin-right: auto;
}

.row {
  display: flex;
  align-items: center;
  align-self: stretch;
}

.row .title h6 {
  text-align: left;
  width: 100%;
  display: block;
}

.row .flag-indicator {
  margin-top: 0;
}

.row .text-md {
  width: 100%;
}

/* SEO section rows */
.section-alt-padding .container-md .row:not(:first-child) {
  flex-direction: column;
  align-items: flex-start;
}

.section-alt-padding .container-md .row .flag-indicator {
  margin-bottom: var(--padding-md);
  margin-top: 0;
}

.section-alt-padding .container-md .row .text-md {
  width: 100%;
}

.card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-md);
  flex-wrap: nowrap;
  width: 100%;
  gap: var(--padding-lg);
}

.cards {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: var(--padding-md);
  align-items: stretch;
  align-content: stretch;
  align-self: stretch;
  width: 100%;
}

/* -------------------- Buttons -------------------- */
.button-primary {
  display: flex;
  min-width: 260px;
  width: 100%;
  padding: var(--padding-button, 24px);
  justify-content: center;
  align-items: center;
  gap: var(--padding-2xs, 4px);
  flex: 1 0 0;
  border-radius: var(--radius-xs, 8px);
  background: var(--gradient-button-primary);
  color: var(--color-button-primary-text);
  font-family: var(--font-family-heading);
  font-size: var(--font-lg);
  line-height: var(--line-height-lg);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}

.button-primary:hover {
  background: var(--gradient-button-primary-hover);
}

.button-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--padding-sm);
  width: 100%;
  max-width: 260px;
}

/* -------------------- Header -------------------- */
.header {
  padding-top: var(--padding-xl);
  padding-bottom: 0;
  position: relative;
  background: var(--color-body-bg);
  box-shadow: 0px 14px 44px 0px var(--color-stroke-top, #0C091E);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: var(--padding-2xs);
  color: var(--color-body-white);
  margin-bottom: var(--padding-xl);
}

.header-divider {
  display: flex;
  height: 1px;
  align-items: center;
  align-self: stretch;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.header-divider::before,
.header-divider::after,
.header-divider span {
  content: "";
  flex: 1;
  height: 1px;
}

.header-divider::before {
  background-color: var(--color-flag-red);
}

.header-divider span {
  background-color: var(--color-flag-yellow);
}

.header-divider::after {
  background-color: var(--color-flag-blue);
}

/* -------------------- Hero -------------------- */
.hero-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-subtitle {
  color: var(--color-body-muted);
  text-align: center;
}

/* -------------------- Features -------------------- */
.features {
  display: flex;
  padding: var(--padding-xl) 0px 0px 0px;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: var(--padding-xl);
  align-self: stretch;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--padding-xs);
  text-align: center;
}

.feature-item img {
  display: block;
  margin-bottom: var(--padding-xs);
}

.feature-text {
  font-size: var(--font-md);
  line-height: var(--line-height-md);
  color: var(--color-body);
}

.casino-features {
  display: flex;
  min-width: 200px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--padding-xs);
  flex: 1 0 0;
}

.casino-feature {
  display: flex;
  align-items: center;
  gap: var(--padding-sm);
  min-width: 200px;
}

.casino-feature:last-child {
  margin-bottom: 0;
}

.casino-feature img {
  width: 20px;
  height: 20px;
  color: var(--color-green);
  filter: brightness(1.2);
}

.casino-feature span {
  font-size: var(--font-sm);
  color: var(--color-body);
}

/* -------------------- Casino Cards -------------------- */
.casino-card {
  display: flex;
  flex-direction: row;
  border-radius: var(--radius-xl);
  background: var(--color-card-bg);
  overflow: hidden;
  align-items: center;
  height: auto;
  border: 1px solid var(--color-stroke);
  position: relative;
  padding: var(--padding-xl);
  gap: var(--padding-xl);
}

.casino-flag {
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  z-index: 10;
}

/* Card Header - Desktop */
.casino-card-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: var(--color-card-bg);
  min-width: 256px;
  width: 100%;
  max-width: 380px;
  flex: 1 1 auto;
  gap: var(--padding-xs);
  height: auto;
}

/* Casino Logo - Desktop */
.casino-logo {
  position: relative;
  display: flex;
  height: 120px;
  max-width: 260px;
  max-height: 140px;
  padding: var(--padding-sm);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 1 auto;
  aspect-ratio: 222.00/119.64;
  border-radius: var(--radius-md);
  background: var(--color-card-muted);
  margin-bottom: 0;
}

.casino-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: auto;
}

/* Rating - Desktop */
.casino-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--padding-2xs);
  flex: 1 1 auto;
  width: 100%;
  text-align: center;
}

.rating-score {
  font-size: var(--font-2xl);
  line-height: var(--line-height-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-body-white);
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-stars img {
  width: 16px;
  height: 16px;
}

.casino-features {
  display: flex;
  min-width: 200px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--padding-xs);
  flex: 1 0 0;
}

.casino-feature {
  display: flex;
  align-items: center;
  gap: var(--padding-sm);
  min-width: 200px;
}

.casino-feature:last-child {
  margin-bottom: 0;
}

.casino-feature img {
  width: 20px;
  height: 20px;
  color: var(--color-green);
  filter: brightness(1.2);
}

.casino-feature span {
  font-size: var(--font-sm);
  color: var(--color-body);
}

/* Card content blocks - shared styles */
.casino-footer {
  display: flex;
  min-width: 200px;
  max-width: 300px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--padding-2xs);
  flex: 1 0 0;
  border-radius: var(--radius-md);
  text-align: center;
}

/* Updated styles for the bonus block */
.casino-bonus {
  display: flex;
  min-width: 260px;
  max-width: 340px;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
  border-radius: 16px;
  background: var(--color-card-muted, #120D2B);
}

.bonus-label {
  font-size: var(--font-sm);
  color: var(--color-body-muted);
  margin-bottom: var(--padding-xs);
}

.bonus-amount {
  font-size: var(--font-lg);
  line-height: var(--line-height-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-body-white);
  margin: 0 auto;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.casino-payments {
  display: flex;
  justify-content: space-between;
  gap: var(--padding-sm);
  margin-bottom: var(--padding-md);
  width: 100%;
}

.casino-payments img {
  height: 32px;
  width: auto;
  filter: grayscale(1) brightness(2.5);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.casino-payments img:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

.casino-button {
  display: flex;
  width: 100%;
  padding: var(--padding-xl);
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 10px;
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, var(--color-button-primary-top) 0%, var(--color-button-primary-bottom) 100%);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-lg);
  text-transform: uppercase;
  transition: all 0.3s ease;
  height: 68px;
}

.casino-button:hover {
  background: linear-gradient(90deg, var(--color-button-primary-bottom) 0%, var(--color-button-primary-top) 100%);
}

/* -------------------- Payment -------------------- */
.payment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.payment img {
  width: auto;
  height: auto;
}

/* -------------------- Testimonials -------------------- */
.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--padding-xl);
  margin-bottom: var(--padding-xl);
  width: 100%;
}

.testimonial {
  position: relative;
  padding: var(--padding-4xl);
  border-radius: var(--radius-sm);
  flex: 1 0 calc(33.333% - (var(--padding-xl) * 2));
  min-width: 300px;
  max-width: calc(33.333% - var(--padding-xl));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--padding-lg);
  text-align: center;
  margin: 0;
  background: var(--color-testimonials-bg);
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: var(--gradient-testimonial-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
}

.testimonial-rating img {
  width: var(--icon-size-rating-star, 16px);
  height: var(--icon-size-rating-star, 16px);
  color: var(--color-rating-top);
}

.testimonial-text {
  font-size: var(--font-md);
  line-height: var(--line-height-md);
  color: var(--color-body);
}

.testimonial-name {
  font-family: var(--font-family-body);
  font-size: var(--font-sm);
  line-height: var(--line-height-sm);
  color: var(--color-body-muted);
  margin-top: auto;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--padding-sm);
  margin-top: auto;
}

/* -------------------- FAQ -------------------- */
.faq {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: var(--padding-xl);
  align-self: stretch;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.faq-card {
  display: flex;
  flex: 1 0 calc(50% - var(--padding-xl));
  min-width: 200px;
  padding: var(--padding-4xl);
  flex-direction: column;
  gap: var(--padding-sm);
  border-radius: var(--radius-sm);
  background: var(--color-faq-bg);
  width: calc(50% - var(--padding-xl));
  margin: 0;
}

.faq-card h3 {
  font-size: var(--font-lg);
  line-height: var(--line-height-lg);
  text-align: left;
  width: 100%;
  color: var(--color-body-white);
  margin-bottom: var(--padding-xs);
}

.faq-card p {
  font-size: var(--font-md);
  line-height: var(--line-height-md);
  color: var(--color-body-muted);
}

/* -------------------- Footer -------------------- */
.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: var(--padding-xl);
  padding-bottom: var(--padding-xl);
  gap: var(--padding-3xl);
  background: var(--color-dark-bg);
  position: relative;
}

.footer .container-md {
  display: flex;
  flex-direction: column;
  gap: var(--padding-2xl);
}

.footer-divider {
  display: flex;
  height: 1px;
  align-items: center;
  align-self: stretch;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.footer-divider::before,
.footer-divider::after,
.footer-divider span {
  content: "";
  flex: 1;
  height: 1px;
}

.footer-divider::before {
  background-color: var(--color-flag-red);
}

.footer-divider span {
  background-color: var(--color-flag-yellow);
}

.footer-divider::after {
  background-color: var(--color-flag-blue);
}

/* Footer links and logos */
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: var(--padding-xl);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: var(--padding-xl);
  padding-top: var(--padding-xl);
}

.age-restriction {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.age-restriction img {
  width: 45px;
  height: auto;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--padding-xl);
  flex: 1;
}

.policy-links a {
  color: var(--color-body);
  text-decoration: underline;
  font-size: var(--font-sm);
  line-height: var(--line-height-sm);
  transition: opacity 0.3s;
}

/* Links hover state */
a:hover,
.policy-links a:hover {
  opacity: 0.8;
  text-decoration: none;
}

/* Responsible Gaming Section */
.responsible-gaming {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--padding-xl);
}

.responsible-gaming-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--padding-xl);
}

.responsible-gaming-col {
  flex: 1 1 45%;
  min-width: 280px;
}

.responsible-gaming-title {
  font-size: var(--font-sm);
  line-height: var(--line-height-sm);
  color: var(--color-body-white);
  margin-bottom: var(--padding-sm);
  font-weight: var(--font-weight-medium);
}

.responsible-gaming-text {
  font-size: var(--font-sm);
  line-height: var(--line-height-sm);
  color: var(--color-body-muted);
}

.organizations {
  margin-top: var(--padding-xs);
}

/* -------------------- Utilities -------------------- */
.justify-center {
  justify-content: center;
}

.margin-bottom-3xl {
  margin-bottom: var(--padding-3xl);
}

.padding-bottom-3xl {
  padding-bottom: var(--padding-3xl);
}

/* -------------------- Media Queries -------------------- */
@media (max-width: 1200px) {
  /* Layout */
  .section-alt-padding {
    padding-top: var(--padding-4xl);
    padding-bottom: var(--padding-4xl);
  }
  
  .container-lg,
  .container-md,
  .hero {
    padding-left: var(--padding-md);
    padding-right: var(--padding-md);
  }
  
  /* Header */
  .header {
    margin-bottom: var(--padding-xl);
  }
  
  .header-brand {
    padding-top: var(--padding-xs);
    padding-bottom: var(--padding-xs);
  }
  
  /* Hero */
  .hero-img {
    display: none;
  }
  
  /* Card - Tablet */
  .casino-card {
    margin-bottom: var(--padding-lg);
    height: auto;
    min-height: 200px;
    gap: var(--padding-md);
  }
  
  /* Card Header - Tablet */
  .casino-card-header {
    width: 180px;
    max-width: 180px;
    flex: 0 0 auto;
    margin-right: 0;
  }
  
  /* Logo - Tablet */
  .casino-logo {
    max-width: 160px;
    height: auto;
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 1 auto;
  }
  
  .casino-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
  }
  
  .casino-features,
  .casino-footer {
    height: auto;
  }
  
  .casino-bonus {
    padding: var(--padding-md);
    min-width: 240px;
    max-width: none;
    width: 100%;
    height: auto;
    gap: 4px;
    border-radius: 12px;
    flex: 1 1 auto;
  }
  
  .casino-footer {
    width: 240px;
    max-width: 240px;
  }
  
  .bonus-amount {
    font-size: var(--font-md);
    line-height: var(--line-height-md);
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .casino-button {
    padding: var(--padding-xl);
    height: 64px;
  }
  
  .casino-payments {
    height: 26px;
    justify-content: center;
  }
  
  .casino-payments img {
    height: 26px;
  }
  
  /* Testimonials */
  .testimonial {
    flex: 1 0 calc(50% - var(--padding-lg));
    max-width: calc(50% - var(--padding-lg) / 2);
  }
  
  .testimonial-row {
    gap: var(--padding-lg);
    justify-content: space-between;
  }
  
  /* FAQ */
  .faq {
    gap: var(--padding-lg);
  }
  
  .faq-card {
    flex: 1 0 calc(50% - var(--padding-lg));
    width: calc(50% - var(--padding-lg)/2);
    padding: var(--padding-2xl);
  }
  
  /* Footer links */
  .footer-links {
    flex-direction: column;
    text-align: center;
    gap: var(--padding-md);
  }
  
  .age-restriction {
    justify-content: center;
  }
  
  .policy-links {
    justify-content: center;
    width: 100%;
    margin-top: var(--padding-md);
  }
  
  .footer-logos {
    justify-content: center;
  }
  
  /* Features - Tablet */
  .casino-features {
    display: none;
  }
}

@media (max-width: 768px) {
  /* SEO section headers */
  .title h2 {
    font-size: calc(var(--h2-font-size) - 4px);
    line-height: calc(var(--h2-line-height) - 4px);
    text-align: center;
  }
  
  .text-md h3 {
    font-size: calc(var(--h3-font-size) - 2px);
    line-height: calc(var(--h3-line-height) - 2px);
    text-align: center;
  }
  
  /* Card - Mobile */
  .casino-card {
    flex-direction: column;
    height: auto;
    gap: var(--padding-sm);
    padding: var(--padding-xs);
  }
  
  /* Card Header - Mobile */
  .casino-card-header {
    width: 220px;
    max-width: 220px;
    border-right: none;
    border-bottom: none;
    gap: var(--padding-md);
    justify-content: space-between;
    margin: 0 auto;
  }
  
  /* Logo - Mobile */
  .casino-logo {
    margin-bottom: 0;
    height: auto;
    max-width: 160px;
    min-width: 120px;
    width: auto;
    min-height: 60px;
    flex: 0 0 auto;
  }
  
  .casino-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
  }
  
  /* Rating - Mobile */
  .casino-rating {
    flex: 0 1 auto;
    width: auto;
  }
  
  .casino-flag {
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
  }
  
  .casino-features {
    display: none;
  }
  
  .casino-bonus {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    border-radius: 12px;
    height: auto;
    padding: var(--padding-md);
    gap: 4px;
    flex: 1 1 auto;
  }
  
  .casino-footer {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    height: auto;
  }
  
  .casino-payments {
    flex-wrap: wrap;
    margin-bottom: var(--padding-sm);
    justify-content: space-between;
  }
  
  .casino-payments img {
    height: 24px;
  }
  
  .casino-button {
    padding: var(--padding-md);
    border-radius: var(--radius-xs);
    height: 52px;
    max-width: 100%;
  }
  
  .testimonial-row {
    flex-direction: column;
    align-items: center;
    gap: var(--padding-lg);
  }
  
  .testimonial {
    flex: 1 0 100%;
    max-width: 100%;
    min-width: 100%;
    margin: 0;
  }
  
  .testimonial:nth-child(n) {
    margin-top: 0;
  }
  
  .testimonial::before {
    border-radius: var(--radius-lg);
  }
  
  .testimonial-text {
    font-size: calc(var(--font-md) - 1px);
    line-height: calc(var(--line-height-md) - 1px);
  }
  
  /* FAQ */
  .faq {
    flex-direction: column;
    gap: var(--padding-lg);
  }
  
  .faq-card {
    flex: 1 0 100%;
    width: 100%;
    padding: var(--padding-xl);
  }
  
  /* Footer and Responsible Gaming */
  .footer-links {
    flex-direction: column;
    text-align: center;
    gap: var(--padding-md);
    width: 100%;
    justify-content: center;
  }
  
  .age-restriction {
    justify-content: center;
  }
  
  .responsible-gaming-row {
    flex-direction: column;
  }
  
  .responsible-gaming-col {
    width: 100%;
  }
  
  .flag-indicator {
    margin: 0;
  }
  
  /* Footer links */
  .policy-links {
    flex-direction: column;
    align-items: center;
    gap: var(--padding-sm);
  }
  
  .policy-links a {
    text-align: center;
    display: block;
    width: 100%;
  }
  
  .responsible-gaming-title,
  .responsible-gaming-text {
    text-align: center;
  }
  
  /* Casino feature */
  .casino-feature {
    justify-content: center;
    width: 100%;
  }
  
  /* Features - Mobile */
  .casino-features {
    display: none;
  }
  
  /* Header */
  .header {
    margin-bottom: var(--padding-xl);
  }
}

/* -------------------- SEO Section -------------------- */
.section .text-md {
  margin-bottom: var(--padding-xl);
}

/* -------------------- Override Casino Button Hover State -------------------- */
a.casino-button {
  color: #FFFFFF !important;
  text-decoration: none !important;
  opacity: 1 !important;
}

a.casino-button:hover,
a.casino-button:focus,
a.casino-button:active,
a.casino-button:visited {
  color: #FFFFFF !important;
  text-decoration: none !important;
  opacity: 1 !important;
  box-shadow: 0 6px 20px rgba(255, 107, 44, 0.4);
  transform: translateY(-2px);
}

.section-padding {
  padding-top: var(--padding-3xl);
  padding-bottom: var(--padding-3xl);
}

.section-padding p {
  margin-bottom: var(--padding-md);
}