/*STEP 1 START*/

/* ==========================================================================
   Reset and Base Styles
   ========================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

/* Enhanced smooth scrolling for mobile Safari */
@supports (-webkit-overflow-scrolling: touch) {
  html {
    -webkit-overflow-scrolling: touch;
  }
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  line-height: 1.6;
  min-height: 100vh;
  background: #F5F5F0;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #333333;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #FF6B35;
  text-decoration: underline;
}

/* ==========================================================================
   color variables
   ========================================================================== */

:root {
  --warning: #D87070;
}

/* ==========================================================================
   Site Header
   ========================================================================== */

.site-header {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  z-index: 1000;
}

.site-header--hero {
  min-height: 800px;
}

.site-header__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.site-header__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
}

/* Top Navigation Bar (inside hero section) */
.site-header__container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  flex-shrink: 0;
}

.site-header__logo-link {
  display: block;
  transition: transform 0.2s ease;
}

.site-header__logo-link:hover {
  transform: scale(1.02);
}

.site-header__logo img {
  height: 70px;
  width: auto;
  max-width: 280px;
  /* filter: hue-rotate(40deg); */
}

.site-header__nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-header__nav-link {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.site-header--hero .site-header__nav-link {
  color: #FFFFFF;
}

.site-header__nav-link:hover {
  color: #FF6B35;
  background: transparent;
  text-decoration: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.site-header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #A8C0D8, #8AA2BA);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.site-header__nav-link:hover::after {
  width: 80%;
}

/* ==========================================================================
   Hero Content in Header
   ========================================================================== */

.site-header__hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(800px - 100px);
  padding: 2rem 1.25rem;
}

.site-header__hero-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  color: #FFFFFF;
}

.site-header__last-updated {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-weight: 400;
}

.site-header__hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.site-header__hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.site-header__cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B35, #FF8C42);
  color: #FFFFFF;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.site-header__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
  background: linear-gradient(135deg, #FF8C42, #FF6B35);
  color: #FFFFFF;
  text-decoration: none;
}

/* Decorative Elements in Header */
.site-header__decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.site-header__chip-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 120px;
  height: auto;
  opacity: 0.9;
  transform: rotate(-15deg);
  filter: drop-shadow(0 0 20px rgba(255, 165, 0, 0.4));
}

.site-header__chip-2 {
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 100px;
  height: auto;
  opacity: 0.8;
  transform: rotate(20deg);
  filter: drop-shadow(0 0 20px rgba(255, 165, 0, 0.4));
}

/* ==========================================================================
   Mobile Menu Toggle
   ========================================================================== */

.site-header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.site-header__menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.site-header__menu-toggle:focus {
  outline: 2px solid #6A8EA8;
  outline-offset: 2px;
}

.site-header__menu-line {
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.site-header__menu-line:nth-child(1) {
  margin-bottom: 4px;
}

.site-header__menu-line:nth-child(2) {
  margin-bottom: 4px;
}

/* Animated hamburger to X transformation */
.site-header__menu-toggle--open .site-header__menu-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.site-header__menu-toggle--open .site-header__menu-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header__menu-toggle--open .site-header__menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Mobile menu overlay */
.site-header__nav::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: -1;
}

.site-header__nav--open::before {
  opacity: 1;
  visibility: visible;
}


/* ==========================================================================
   Warning Section
   ========================================================================== */

.warning-section {
  background: linear-gradient(135deg, #5A768C, #3A566C);
  color: #FFFFFF;
  padding: 2rem;
  text-align: center;
  border-radius: 1rem;
  margin: 2rem 0;
  box-shadow: 0 0.5rem 1.5rem rgba(90, 118, 140, 0.35);
}

.warning-section__container {
  width: 100%;
}

.warning-section__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.warning-section__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
}

.warning-section__text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.warning-section__text strong {
  font-weight: 700;
}

.warning-section__link {
  color: #FFFFFF;
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.warning-section__link:hover {
  opacity: 0.8;
  color: #FFFFFF;
}

.warning-section__button {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 2rem;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.15);
}

.warning-section__button:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #FFFFFF;
  transform: translateY(-2px);
  color: #FFFFFF;
  text-decoration: none;
}

/* ==========================================================================
   Layout Components
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3.125rem;
}

/* ==========================================================================
   Header Section
   ========================================================================== */

.header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.header__title {
  color: #3A566C;
  font-size: 2.5rem;
  margin-bottom: 0.625rem;
  font-weight: 700;
}

.header__subtitle {
  color: #8AA2BA;
  font-size: 1.125rem;
  font-weight: 400;
}

/* ==========================================================================
   Casino Cards
   ========================================================================== */

.casino-card {
  background: #2d5016;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #1a3009;
}

.casino-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
  background: #3a6b1f;
}

/* ==========================================================================
   Badges
   ========================================================================== */

.badge {
  position: absolute;
  top: -0.3125rem;
  left: 1.25rem;
  padding: 0.5rem 1rem;
  border-radius: 0 0 0.9375rem 0.9375rem;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
/*STEP 1 END*/

/*STEP 2 START*/

.badge--top-choice {
  background: linear-gradient(45deg, #C8A870, #B89760);
}

.badge--editors-pick {
  background: linear-gradient(45deg, #6A9A8C, #598A7A);
}

.badge--popular {
  background: linear-gradient(45deg, #6A8EA8, #5A7E98);
}

/* ==========================================================================
   Casino Card Components
   ========================================================================== */

.casino-card__logo-wrapper {
  flex-shrink: 0;
  width: 150px;
}

.casino-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  transition: transform 0.2s ease;
}

.casino-card__logo:hover {
  transform: scale(1.05);
}

.casino-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.casino-card__bonus {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

.casino-card__bonus-title {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.4;
}

.casino-card__rating-section {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  width: 200px;
}

.casino-card__rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.casino-card__score {
  font-weight: 700;
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 1;
}

.casino-card__rating-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.casino-card__stars {
  color: #FFA500;
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1;
}

.casino-card__cta-button {
  background: linear-gradient(135deg, #FF6B35, #FF8C42);
  color: #FFFFFF;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
  white-space: nowrap;
}

.casino-card__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
  background: linear-gradient(135deg, #FF8C42, #FF6B35);
  color: #FFFFFF;
  text-decoration: none;
}


/* ==========================================================================
   Author Section
   ========================================================================== */

.author-section {
  background: linear-gradient(135deg, #F7FBFF, #E8F0F7);
  border-radius: 1.25rem;
  padding: 2.1875rem;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5625rem;
  box-shadow: 0 0.5rem 1.5625rem rgba(58, 86, 108, 0.12);
  border-left: 0.3125rem solid #C8D8E8;
  position: relative;
}

.author-section::before {
  content: '"';
  position: absolute;
  top: 0.9375rem;
  left: 1.5625rem;
  font-size: 3rem;
  color: #8AA2BA;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.author-section__avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #3A566C, #5A768C);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 0.9375rem rgba(58, 86, 108, 0.3);
  flex-shrink: 0;
  overflow: hidden;
}

.author-section__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.author-section__info {
  flex: 1;
  margin-left: 0.9375rem;
}

.author-section__title {
  color: #3A566C;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.author-section__text {
  color: #8AA2BA;
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  margin-left: 0.9375rem;
  margin-bottom: 0;
}

/* ==========================================================================
   Info Section
   ========================================================================== */

.info-section {
  background: #2d5016;
  border-radius: 0.75rem;
  padding: 2.1875rem;
  margin-top: 2.5rem;
  box-shadow: 0 2px 8px rgba(45, 80, 22, 0.2);
  border: 1px solid #1a3009;
}

.info-section__title {
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.info-section__subtitle {
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.info-section__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.info-section__list {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.info-section__list li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.info-list {
  margin: 1.5625rem 0;
}

.info-list .feature {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.info-list .feature__checkmark {
  color: #4CAF50;
  margin-right: 0.75rem;
  font-weight: 700;
  font-size: 1.1rem;
}

/* ==========================================================================
   Responsible Gaming Section
   ========================================================================== */

.responsible-gaming {
  display: none;
}

.help-section {
  display: block;
}

/* Organizations Cards */
.responsible-gaming__organizations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.org-card {
  background: #2d5016;
  border: 2px solid #1a3009;
  border-radius: 0.9375rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  box-shadow: 0 0.25rem 0.75rem rgba(45, 80, 22, 0.2);
  text-decoration: none;
  display: block;
  color: inherit;
}

.org-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1.5rem rgba(45, 80, 22, 0.3);
  border-color: #3a6b1f;
  background: #3a6b1f;
  text-decoration: none;
  color: inherit;
}


/*STEP 2 END*/

/*STEP 3 START*/

.org-card__logo-img {
  height: 60px;
  width: auto;
  max-width: 120px;
  margin-bottom: 1rem;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: filter 0.3s ease;
}

.org-card:hover .org-card__logo-img {
  filter: none;
}

.org-card__logo-img--dark-bg {
  background: linear-gradient(135deg, #3A566C, #5A768C);
  padding: 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.5rem rgba(58, 86, 108, 0.22);
}

.org-card__title {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.org-card__subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.3;
}

/* Help Section */
.help-section {
  background: linear-gradient(135deg, #F7FBFF, #E8F0F7);
  border: 2px solid #D87070;
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 2.5rem;
  box-shadow: 0 0.25rem 1rem rgba(58, 86, 108, 0.1);
}

.help-section__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.help-section__icon {
  background: linear-gradient(45deg, #3A566C, #5A768C);
  color: #FFFFFF;
  font-size: 1rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  box-shadow: 0 0.125rem 0.5rem rgba(58, 86, 108, 0.3);
}

.help-section__title {
  color: #D87070;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.help-section__contacts {
  margin-bottom: 1.5rem;
}

.help-contact {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #2d5016;
  border: 1px solid #1a3009;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 0.125rem 0.5rem rgba(45, 80, 22, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.help-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.25rem 0.75rem rgba(45, 80, 22, 0.3);
  background: #3a6b1f;
}

.help-contact:last-child {
  margin-bottom: 0;
}

.help-contact__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.help-contact__info {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
}

.help-contact__info strong {
  color: #FFFFFF;
}

.help-contact__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: 500;
}

.help-contact__link:hover {
  color: #FFA500;
  text-decoration: underline;
}

.help-section__button {
  display: inline-block;
  background: linear-gradient(45deg, #3A566C, #5A768C);
  color: #FFFFFF;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 0.25rem 0.75rem rgba(58, 86, 108, 0.16);
}

.help-section__button:hover {
  background: linear-gradient(45deg, #D87070, #C65E5E);
  transform: translateY(-2px);
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 0.375rem 1rem rgba(216, 112, 112, 0.3);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: #222222;
  color: #FFFFFF;
  padding: 3rem 1.25rem 2rem;
  margin: 0;
  width: 100%;
  line-height: 1.6;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Navigation */
.footer__nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__nav-link {
  color: #C8A870;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer__nav-link:hover {
  color: #E8C890;
  text-decoration: none;
}

/* Footer Disclaimer */
.footer__disclaimer {
  margin-bottom: 2.5rem;
}

.footer__disclaimer-text {
  color: #FFFFFF;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: left;
}

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

/* Responsible Gambling Section */
.footer__responsible-gambling {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__rg-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #FFFFFF;
  transition: opacity 0.3s ease;
}

.footer__rg-logo:hover {
  opacity: 0.8;
  text-decoration: none;
  color: #FFFFFF;
}

.footer__rg-image {
  height: 40px;
  width: auto;
  max-width: 60px;
  object-fit: contain;
}

.footer__rg-text {
  display: flex;
  flex-direction: column;
}

.footer__rg-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.footer__rg-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer__rg-logo--text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #FFFFFF;
}

.footer__rg-text-only {
  color: #FFFFFF;
}

.footer__rg-text-vertical {
  line-height: 1.3;
  text-align: center;
}

.footer__rg-logo--badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.footer__rg-badge-18 {
  background: #DC143C;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  min-width: 40px;
  text-align: center;
}

.footer__rg-badge-text {
  font-size: 0.75rem;
  color: #FFFFFF;
  font-weight: 500;
}

.footer__rg-logo--think {
  background: #FFD700;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__rg-think-icon {
  font-size: 1.2rem;
  color: #000000;
  font-weight: 700;
}

.footer__rg-think-text {
  display: flex;
  flex-direction: column;
}

.footer__rg-think-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: #000000;
  margin-bottom: 0.15rem;
}

.footer__rg-think-url {
  font-size: 0.7rem;
  color: #000000;
}

/* ==========================================================================
   Terms Page Styles
   ========================================================================== */

.terms-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-bottom: 2px solid #C8D8E8;
}

.terms-header__title {
  color: #3A566C;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.terms-header__subtitle {
  color: #8AA2BA;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.terms-header__date {
  color: #A8C0D8;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}

.terms-content {
  max-width: 900px;
  margin: 0 auto;
}

.terms-section {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 0.25rem 1rem rgba(58, 86, 108, 0.08);
  border-left: 4px solid #C8D8E8;
  transition: box-shadow 0.3s ease;
}

.terms-section:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(58, 86, 108, 0.12);
}

.terms-section__title {
  color: #3A566C;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #E8F0F7;
}

.terms-section__content {
  color: #8AA2BA;
  line-height: 1.7;
  font-size: 0.95rem;
}

.terms-section__content p {
  margin-bottom: 1.25rem;
}

.terms-section__content p:last-child {
  margin-bottom: 0;
}

.terms-list {
  margin: 1.25rem 0;
  padding-left: 0;
  list-style: none;
}

.terms-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 2rem;
  margin-bottom: 0.5rem;
  border-radius: 0.5rem;
  background: #F7FBFF;
  transition: background-color 0.2s ease;
}

.terms-list li:hover {
  background: #E8F0F7;
}

.terms-list li::before {
  content: "✓";
  position: absolute;
  left: 0.75rem;
  top: 0.5rem;
  color: #D87070;
  font-weight: 700;
  font-size: 1rem;
}

.warning-text {
  background: linear-gradient(135deg, #F7FBFF, #E8F0F7);
  border: 2px solid #D87070;
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin: 1.5rem 0;
  color: #3A566C !important;
  font-weight: 500;
}

.help-resources {
  background: linear-gradient(135deg, #F7FBFF, #E8F0F7);
  border: 2px solid #D87070;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.help-resources h3 {
  color: #D87070;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.help-resources p {
  margin-bottom: 0.75rem;
  color: #3A566C;
  font-weight: 500;
}

.help-resources p:last-child {
  margin-bottom: 0;
}

.help-resources a {
  color: #6A8EA8;
  text-decoration: none;
  font-weight: 500;
}

.help-resources a:hover {
  color: #D87070;
  text-decoration: underline;
}

.contact-info {
  background: linear-gradient(135deg, #F7FBFF, #E8F0F7);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid #C8D8E8;
}

.contact-info p {
  margin-bottom: 0.75rem;
  color: #3A566C;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info a {
  color: #6A8EA8;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  color: #D87070;
  text-decoration: underline;
}

/*STEP 3 END*/

/* Mobile Terms Page Styles */
@media (max-width: 768px) {
  .terms-header {
    padding: 1.5rem 0;
    margin-bottom: 2rem;
  }

  .terms-header__title {
    font-size: 2rem;
  }

  .terms-header__subtitle {
    font-size: 1rem;
  }

  .terms-section {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
  }

  .terms-section__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .terms-section__content {
    font-size: 0.9rem;
  }

  .terms-list li {
    padding: 0.4rem 0 0.4rem 1.75rem;
    font-size: 0.9rem;
  }

  .help-resources,
  .contact-info {
    padding: 1.25rem;
    margin: 1.25rem 0;
  }

  .warning-text {
    padding: 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .terms-header__title {
    font-size: 1.75rem;
  }

  .terms-section {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .terms-section__title {
    font-size: 1.125rem;
  }

  .terms-section__content {
    font-size: 0.875rem;
  }

  .terms-list li {
    padding: 0.375rem 0 0.375rem 1.5rem;
    font-size: 0.875rem;
  }

  .terms-list li::before {
    left: 0.5rem;
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large tablets and small desktop */
@media (max-width: 1024px) {
  .site-header__container {
    padding: 0.9375rem 1.125rem;
  }

  .site-header__nav {
    gap: 1.75rem;
  }

  .site-header__nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0.9375rem;
  }
}

/* Desktop and tablet - ensure menu is always visible */
@media (min-width: 769px) {
  .site-header__menu-toggle {
    display: none !important;
  }

  .site-header__nav {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    flex-direction: row !important;
    gap: 2rem !important;
    max-height: none !important;
  }

  .site-header__nav::before {
    display: none !important;
  }
}

/* Tablet and small desktop optimization */
@media (max-width: 992px) {
  .site-header__container {
    padding: 0.875rem 1rem;
  }

  .site-header__nav {
    gap: 1.5rem;
  }

  .site-header__nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0.875rem;
  }
}

/* Mobile landscape and small tablet */
@media (max-width: 768px) {
  .site-header--hero {
    min-height: 600px;
  }

  .site-header__hero-content {
    min-height: calc(600px - 100px);
    padding: 1.5rem 1rem;
  }

  .site-header__hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .site-header__hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .site-header__cta-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .site-header__chip-1,
  .site-header__chip-2 {
    width: 80px;
    opacity: 0.6;
  }

  .warning-section {
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0.75rem;
  }

  .warning-section__icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .warning-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .warning-section__text {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .warning-section__button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .site-header {
    padding: 0;
  }

  .site-header__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0.875rem;
    gap: 1rem;
  }

  .site-header__logo img {
    height: 50px;
    max-width: 220px;
  }

  /* Show mobile menu toggle */
  .site-header__menu-toggle {
    display: flex;
    order: 2;
  }

  /*STEP 4 START*/

  /* Hide navigation by default on mobile */
  .site-header__nav {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  /* Show navigation when open */
  .site-header__nav--open {
    top: 80px; /* Adjust based on header height */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-header__nav-link {
    font-size: 1rem;
    padding: 1rem 1.25rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid #E5E5E5;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    font-weight: 500;
    color: #333333;
  }

  .site-header__nav-link:hover,
  .site-header__nav-link:active {
    background: rgba(255, 107, 53, 0.1);
    border-color: #FF6B35;
    transform: translateY(-2px);
    color: #FF6B35;
  }

  .site-header__nav-link::after {
    display: none; /* Remove underline decoration on mobile */
  }

  .site-header--hero {
    min-height: 600px;
  }

  .site-header__hero-content {
    min-height: calc(600px - 100px);
    padding: 1.5rem 1rem;
  }

  .site-header__hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .site-header__hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .site-header__cta-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .site-header__chip-1,
  .site-header__chip-2 {
    width: 80px;
    opacity: 0.6;
  }

  .container {
    padding: 1.25rem 0.625rem 3.125rem;
  }

  .header__title {
    font-size: 2rem;
  }

  .decorative-element {
    display: none;
  }

  .casino-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .casino-card__logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .casino-card__bonus {
    padding: 0;
    text-align: center;
  }

  .casino-card__rating-section {
    width: 100%;
    align-items: center;
  }

  .casino-card__rating {
    align-items: center;
  }

  .casino-card__cta-button {
    width: 100%;
  }

  .author-section {
    flex-direction: column;
    text-align: center;
    padding: 1.5625rem 1.25rem;
  }

  .author-section::before {
    display: none;
  }

  .author-section__info {
    margin-left: 0;
  }

  .author-section__text {
    margin-left: 0;
  }

  .info-section {
    padding: 1.5625rem 1.25rem;
  }

  .info-section__title {
    font-size: 1.5rem;
  }

  .responsible-gaming {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }

  .responsible-gaming__title {
    font-size: 1.75rem;
  }

  .responsible-gaming__organizations {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .org-card {
    padding: 1.25rem;
  }

  .org-card__logo-img {
    height: 50px;
    max-width: 100px;
  }

  .org-card__logo-img--dark-bg {
    padding: 0.5rem;
  }

  .help-section {
    padding: 1.5rem;
  }

  .help-contact {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .help-contact__info {
    font-size: 0.9rem;
    color: #8AA2BA;
  }

  .footer {
    padding: 2rem 1rem;
  }

  .footer__nav {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .footer__disclaimer-text {
    font-size: 0.8rem;
  }

  .footer__responsible-gambling {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .footer__rg-logo {
    justify-content: center;
  }
}

/* Medium mobile devices */
@media (max-width: 640px) {
  .site-header__container {
    padding: 0.875rem 0.75rem;
    gap: 1rem;
  }

  .site-header__logo img {
    height: 46px;
    max-width: 200px;
  }

  .site-header__nav {
    padding: 1.25rem;
  }

  .site-header__nav--open {
    top: 75px;
  }

  .site-header__nav-link {
    font-size: 0.95rem;
    padding: 0.875rem 1rem;
    border-radius: 0.625rem;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .warning-section {
    padding: 1.25rem;
    margin: 1.25rem 0;
    border-radius: 0.5rem;
  }

  .warning-section__icon {
    font-size: 1.75rem;
  }

  .warning-section__title {
    font-size: 1.25rem;
  }

  .warning-section__text {
    font-size: 0.9rem;
  }

  .warning-section__button {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }

  .site-header__container {
    padding: 0.75rem 0.625rem;
    gap: 0.875rem;
  }

  .site-header__logo img {
    height: 42px;
    max-width: 180px;
  }

  .site-header__nav {
    padding: 1rem;
  }

  .site-header__nav--open {
    top: 70px;
  }

  .site-header__nav-link {
    font-size: 0.9rem;
    padding: 0.875rem 1rem;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid #E5E5E5;
    color: #333333;
  }

  .site-header__nav-link:hover,
  .site-header__nav-link:active {
    background: rgba(255, 107, 53, 0.1);
    border-color: #FF6B35;
    color: #FF6B35;
  }

  .header__title {
    font-size: 1.75rem;
  }

  .casino-card__logo {
    width: 4rem;
    height: 4rem;
  }

  .casino-card__rank {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }

  .offer-section {
    gap: 0.75rem;
  }

  .bonus-section {
    height: auto;
    padding: 1rem;
  }

  .bonus-section__amount {
    font-size: 1rem;
  }

  .responsible-gaming {
    padding: 1.5rem 1rem;
  }

  .responsible-gaming__title {
    font-size: 1.5rem;
  }

  .responsible-gaming__text {
    font-size: 0.9rem;
    text-align: left;
    color: #8AA2BA;
  }

  .responsible-gaming__organizations {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1.5rem 0;
  }

  .org-card {
    padding: 1rem;
  }

  .org-card__logo-img {
    height: 45px;
    max-width: 90px;
    margin-bottom: 0.75rem;
  }

  .org-card__logo-img--dark-bg {
    padding: 0.4rem;
    border-radius: 0.375rem;
  }

  .org-card__title {
    font-size: 1rem;
  }

  .org-card__subtitle {
    font-size: 0.8rem;
  }

  .help-section {
    padding: 1.25rem;
  }

  .help-section__title {
    font-size: 1.1rem;
  }

  .help-contact__info {
    font-size: 0.85rem;
    color: #8AA2BA;
  }

  .help-section__button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    display: block;
  }

  .footer {
    padding: 1.5rem 0.75rem;
  }

  .footer__nav {
    gap: 0.75rem;
    font-size: 0.8rem;
    flex-direction: column;
  }

  .footer__disclaimer-text {
    font-size: 0.75rem;
  }

  .footer__responsible-gambling {
    gap: 0.75rem;
    flex-direction: column;
  }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
  outline: 2px solid #6A8EA8;
  outline-offset: 2px;
}

/* Enhanced focus for mobile menu toggle */
.site-header__menu-toggle:focus-visible {
  outline: 2px solid #6A8EA8;
  outline-offset: 2px;
  background-color: rgba(106, 142, 168, 0.1);
}

/*STEP 4 END*/

/* Smooth animations for menu */
@media (prefers-reduced-motion: no-preference) {
  .site-header__nav {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .site-header__nav-link {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .site-header__menu-line {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .site-header__nav-link {
    min-height: 48px; /* Apple/Android recommended touch target size */
    padding: 0.75rem 1rem;
  }

  .site-header__nav-link:hover {
    background-color: transparent; /* Remove hover on touch devices */
  }

  .site-header__nav-link:active {
    background-color: rgba(255, 107, 53, 0.1);
    transform: scale(0.98);
  }

  .site-header__menu-toggle {
    min-height: 48px;
    min-width: 48px;
  }
}

/* Improve scrolling performance on mobile */
@media screen and (max-width: 768px) {
  .site-header {
    transform: translateZ(0); /* Force hardware acceleration */
  }
}

/* Mobile landscape optimization */
@media screen and (max-width: 768px) and (max-height: 500px) and (orientation: landscape) {
  .site-header__nav {
    max-height: calc(100vh - 60px);
    padding: 1rem;
  }

  .site-header__nav--open {
    top: 60px;
  }

  .site-header__nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .site-header__container {
    padding: 0.75rem 0.875rem;
  }

  .site-header__logo img {
    height: 40px;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .casino-card {
    border: 2px solid #000000;
  }

  .badge {
    border: 1px solid #000000;
  }
}

/*STEP 5 START*/

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
  display: none;
}

.faq-section__title {
  font-size: 2rem;
  color: #3A566C;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 700;
  position: relative;
}

.faq-section__title::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 3px;
  background: linear-gradient(90deg, #C8D8E8, #A8C0D8);
  border-radius: 2px;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0.125rem 0.5rem rgba(58, 86, 108, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 0.375rem 1rem rgba(58, 86, 108, 0.12);
  transform: translateY(-2px);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item__question {
  width: 100%;
  padding: 1.5rem 4rem 1.5rem 4.75rem;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #3A566C;
  background: linear-gradient(135deg, #E8F0F7, #F7FBFF);
  border: none;
  border-bottom: 1px solid #C8D8E8;
  position: relative;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item__question:hover {
  background: linear-gradient(135deg, #F7FBFF, #E8F0F7);
  color: #3A566C;
}

.faq-item__question:focus {
  outline: 2px solid #6A8EA8;
  outline-offset: -2px;
}

.faq-item__question::before {
  content: "?";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: linear-gradient(45deg, #3A566C, #5A768C);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.faq-item__question:hover::before {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0.25rem 0.75rem rgba(58, 86, 108, 0.3);
}

.faq-item__question-text {
  flex: 1;
  padding-right: 1rem;
}

.faq-item__toggle {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(45deg, #3A566C, #5A768C);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #FFFFFF;
}

.faq-item__answer-content {
  padding: 0 2rem 0 4.75rem;
}

.faq-item__answer-content p {
  margin: 1.5rem 0;
  color: #8AA2BA;
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-item__answer-content p:first-child {
  margin-top: 1.5rem;
}

.faq-item__answer-content p:last-child {
  margin-bottom: 1.5rem;
}

.faq-item__answer-content a {
  color: #6A8EA8;
  font-weight: 500;
}

.faq-item__answer-content a:hover {
  text-decoration: underline;
}

/* Expanded state */
.faq-item--expanded .faq-item__question {
  background: linear-gradient(45deg, #3A566C, #5A768C);
  color: #FFFFFF;
  border-bottom-color: #3A566C;
}

.faq-item--expanded .faq-item__question::before {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.faq-item--expanded .faq-item__toggle {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
}

.faq-item--expanded .faq-item__answer {
  max-height: 300px; /* Adjust based on content */
}

/* Mobile FAQ Styles */
@media (max-width: 768px) {
  .faq-section {
    padding: 1.5rem 1rem;
    margin: 2rem 0;
  }

  .faq-section__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .faq-item__question {
    padding: 1rem 3rem 1rem 3.5rem;
    font-size: 1rem;
  }

  .faq-item__question::before {
    left: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.875rem;
  }

  .faq-item__toggle {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1rem;
  }

  .faq-item__answer-content {
    padding: 0 1.5rem 0 3.5rem;
  }

  .faq-item__answer-content p {
    font-size: 0.9rem;
  }

  .faq-item--expanded .faq-item__answer {
    max-height: 250px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 1rem 0.75rem;
  }

  .faq-section__title {
    font-size: 1.25rem;
  }

  .faq-item {
    margin-bottom: 1rem;
  }

  .faq-item__question {
    padding: 0.875rem 2.5rem 0.875rem 3rem;
    font-size: 0.95rem;
  }

  .faq-item__question::before {
    left: 0.4rem;
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.75rem;
  }

  .faq-item__toggle {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.875rem;
  }

  .faq-item__answer-content {
    padding: 0 1rem 0 3rem;
  }

  .faq-item__answer-content p {
    font-size: 0.875rem;
    margin: 1rem 0;
  }

  .faq-item--expanded .faq-item__answer {
    max-height: 300px;
  }
}
/*STEP 5 END*/

/* ==========================================================================
   Age Verification Modal
   ========================================================================== */

.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.age-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.age-modal__content {
  position: relative;
  z-index: 10001;
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.age-modal__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.age-modal__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
}

.age-modal__text {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.age-modal__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.age-modal__button {
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-modal__button--confirm {
  background: linear-gradient(135deg, #FF6B35, #FF8C42);
  color: #FFFFFF;
}

.age-modal__button--confirm:hover {
  background: linear-gradient(135deg, #FF8C42, #FF6B35);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.age-modal__button--decline {
  background: #E5E5E5;
  color: #333333;
}

.age-modal__button--decline:hover {
  background: #D0D0D0;
  transform: translateY(-2px);
}

.age-modal__disclaimer {
  font-size: 0.85rem;
  color: #999999;
  margin-top: 1rem;
}

/* ==========================================================================
   Cookie Consent Banner
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222222;
  color: #FFFFFF;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  padding: 1.25rem;
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-banner__text strong {
  color: #FFFFFF;
  font-weight: 600;
}

.cookie-banner__link {
  color: #FF6B35;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-banner__link:hover {
  color: #FF8C42;
}

.cookie-banner__buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-banner__button--accept {
  background: linear-gradient(135deg, #FF6B35, #FF8C42);
  color: #FFFFFF;
}

.cookie-banner__button--accept:hover {
  background: linear-gradient(135deg, #FF8C42, #FF6B35);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.cookie-banner__button--decline {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner__button--decline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .age-modal__content {
    padding: 2rem 1.5rem;
  }

  .age-modal__buttons {
    flex-direction: column;
  }

  .age-modal__button {
    width: 100%;
  }

  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner__button {
    width: 100%;
  }
}