/*
==========================================================================
  ITCSS - Inverted Triangle CSS
==========================================================================

  1. SETTINGS.................Global variables, config switches.
  2. TOOLS....................Default mixins and functions.
  3. GENERIC..................Reset and/or normalize styles.
  4. ELEMENTS.................Styling for bare HTML elements (e.g., h1, a).
  5. OBJECTS..................Cosmetic-free design patterns.
  6. COMPONENTS...............Designed components, chunks of UI.
  7. UTILITIES................Helpers and overrides.

*/

/*
==========================================================================
  1. SETTINGS
==========================================================================
*/

:root {
  /* Colors */
  --color-primary: #18181B;
  --color-secondary: #3F3F46;
  --color-accent: #71717A;
  --color-dark: #09090B;
  --color-light: #FAFAFA;
  --color-bg: #FFFFFF;
  --color-text: #18181B;
  --color-text-light: #FAFAFA;
  --color-text-muted: #71717A;
  --color-border: #e4e4e7;
  --color-white: #FFFFFF;
  --color-black: #000000;

  --color-btn-primary-bg: var(--color-primary);
  --color-btn-primary-text: var(--color-light);
  --color-btn-primary-shadow: var(--color-dark);
  --color-btn-primary-hover-bg: #3F3F46;
  
  --color-btn-secondary-bg: var(--color-secondary);
  --color-btn-secondary-text: var(--color-light);
  --color-btn-secondary-shadow: var(--color-primary);
  --color-btn-secondary-hover-bg: #71717A;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Source Sans Pro', sans-serif;
  --font-size-base: 1rem; /* 16px */
  --font-size-lg: 1.125rem; /* 18px */
  --font-size-sm: 0.875rem; /* 14px */
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  --line-height-base: 1.7;
  --line-height-heading: 1.3;

  /* Spacing (Relaxed Scale: 1.25x) */
  --spacing-base: 1rem;
  --spacing-xs: calc(var(--spacing-base) * 0.3125); /* 5px */
  --spacing-sm: calc(var(--spacing-base) * 0.625); /* 10px */
  --spacing-md: calc(var(--spacing-base) * 1.25);  /* 20px */
  --spacing-lg: calc(var(--spacing-base) * 2.5);   /* 40px */
  --spacing-xl: calc(var(--spacing-base) * 5);     /* 80px */
  --spacing-xxl: calc(var(--spacing-base) * 10);    /* 160px */

  /* Borders & Shapes */
  --border-radius: 16px;
  --border-radius-pill: 50rem;
  --border-width: 2px;

  /* Transitions & Animations */
  --transition-duration: 0.3s;
  --transition-timing: ease-in-out;

  /* Z-Index */
  --z-index-loader: 1000;
  --z-index-header: 100;
  --z-index-nav-mobile: 99;
  --z-index-hero-content: 10;
  --z-index-hero-overlay: 2;
  --z-index-hero-bg: 1;

  /* Header */
  --header-height: 80px;
}

/*
==========================================================================
  2. TOOLS
==========================================================================
*/

/* No tools/mixins needed in plain CSS */

/*
==========================================================================
  3. GENERIC
==========================================================================
*/

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/*
==========================================================================
  4. ELEMENTS
==========================================================================
*/

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

h1 { font-size: 3.052rem; }
h2 { font-size: 2.441rem; }
h3 { font-size: 1.953rem; }
h4 { font-size: 1.563rem; }
h5 { font-size: 1.25rem; }

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-duration) var(--transition-timing);
}

a:hover, a:focus {
  color: var(--color-accent);
  text-decoration: underline;
}

img, video, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style-position: inside;
  margin-bottom: var(--spacing-md);
}

::selection {
    background: var(--color-accent);
    color: var(--color-light);
}

/*
==========================================================================
  5. OBJECTS
==========================================================================
*/

.container {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

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

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

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-title {
  font-size: 2.441rem;
  font-weight: var(--font-weight-black);
  margin-bottom: var(--spacing-sm);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/*
==========================================================================
  6. COMPONENTS
==========================================================================
*/

/* --- Site Loader --- */
.site-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: var(--z-index-loader);
    transition: opacity 0.5s ease;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: var(--font-weight-bold);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: var(--border-width) solid transparent;
  padding: 0.8rem 2rem;
  font-size: var(--font-size-base);
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  transition: all var(--transition-duration) var(--transition-timing);
  position: relative;
  top: 0;
  box-shadow: 0 4px 0 0 var(--color-btn-primary-shadow);
}

.btn:hover, .btn:focus {
  text-decoration: none;
  top: 2px;
  box-shadow: 0 2px 0 0 var(--color-btn-primary-shadow);
}

.btn:active {
    top: 4px;
    box-shadow: 0 0 0 0 var(--color-btn-primary-shadow);
}

.btn--primary {
  background-color: var(--color-btn-primary-bg);
  color: var(--color-btn-primary-text);
  box-shadow: 0 4px 0 0 var(--color-btn-primary-shadow);
}

.btn--primary:hover, .btn--primary:focus {
  background-color: var(--color-btn-primary-hover-bg);
  color: var(--color-btn-primary-text);
  box-shadow: 0 2px 0 0 var(--color-btn-primary-shadow);
}

.btn--secondary {
  background-color: var(--color-btn-secondary-bg);
  color: var(--color-btn-secondary-text);
  box-shadow: 0 4px 0 0 var(--color-btn-secondary-shadow);
}

.btn--secondary:hover, .btn--secondary:focus {
  background-color: var(--color-btn-secondary-hover-bg);
  color: var(--color-btn-secondary-text);
   box-shadow: 0 2px 0 0 var(--color-btn-secondary-shadow);
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: var(--font-size-lg);
}

.btn--full-width {
    display: block;
    width: 100%;
}

/* --- Header --- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-index-header);
  padding: var(--spacing-sm) 0;
  transition: background-color var(--transition-duration) ease, padding var(--transition-duration) ease;
}

.header.is-sticky {
    position: fixed;
    background-color: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--spacing-xs) 0;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.header__logo .logo-link {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: var(--font-weight-black);
  color: var(--color-text-light);
  text-decoration: none;
}

.header.is-sticky .header__logo .logo-link {
    color: var(--color-text-light);
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--spacing-md);
}

.nav-link {
  color: var(--color-text-light);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-base);
  text-decoration: none;
  position: relative;
  padding: var(--spacing-sm) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-duration) var(--transition-timing);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__cta {
    display: block;
}

/* --- Hamburger Menu --- */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: calc(var(--z-index-nav-mobile) + 1);
}

.hamburger-menu__bar {
  width: 30px;
  height: 3px;
  background-color: var(--color-text-light);
  border-radius: var(--border-radius-pill);
  transition: all var(--transition-duration) ease-in-out;
}

.hamburger-menu.is-active .hamburger-menu__bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.is-active .hamburger-menu__bar:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.is-active .hamburger-menu__bar:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  color: var(--color-text-light);
  overflow: hidden;
}

.hero__background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-index-hero-bg);
}

.hero__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(9, 9, 11, 0.8) 0%, rgba(9, 9, 11, 0.3) 100%);
  z-index: var(--z-index-hero-overlay);
}

.hero__content {
  position: relative;
  z-index: var(--z-index-hero-content);
  max-width: 700px;
  margin-left: 0;
  margin-right: auto;
}

.hero__title {
  font-size: 4rem;
  font-weight: var(--font-weight-black);
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero__subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
  max-width: 90%;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero__cta {
    transform: scale(1);
    transition: transform var(--transition-duration) ease;
}

.hero__cta:hover {
    transform: scale(1.05);
}

/* --- Particles --- */
.hero__particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3; /* Above overlay, below content */
}

/* --- Features Section --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  background-color: var(--color-light);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: transform var(--transition-duration) ease, box-shadow var(--transition-duration) ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-card__icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    background-color: var(--color-primary);
    border-radius: var(--border-radius-pill);
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card__icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-card__icon-wrapper--symbol span {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--color-light);
    font-weight: var(--font-weight-black);
}

.feature-card__title {
  font-size: 1.563rem;
}

.feature-card__description {
  color: var(--color-text-muted);
}

/* --- Stats Section --- */
.stats {
    position: relative;
    background-color: var(--color-dark);
    color: var(--color-text-light);
}

.stats__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2728%27 height=%2749%27 viewBox=%270 0 28 49%27%3E%3Cg fill-rule=%27evenodd%27%3E%3Cg id=%27hexagons%27 fill=%27%233F3F46%27 fill-opacity=%270.2%27 fill-rule=%27nonzero%27%3E%3Cpath d=%27M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.99-7.5L28 15v19L13.99 41.5 0 34V15z%27/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.3;
}

.stats .container {
    position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  text-align: center;
}

.stat-item__value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: var(--font-weight-black);
}

.stat-item__label {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
}

/* --- Bonuses Section --- */
.bonuses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.bonus-card {
    display: flex;
    align-items: center;
    background-color: var(--color-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.bonus-card__image {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.bonus-card__content {
    padding: var(--spacing-lg);
}

.bonus-card__title {
    margin-top: 0;
    font-size: 1.953rem;
}

/* --- CTA Section --- */
.cta {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.cta__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
}

.cta__title {
    color: var(--color-text-light);
    font-size: 2.441rem;
}

.cta__text {
    color: var(--color-light);
    opacity: 0.9;
    max-width: 600px;
}

.cta__action .btn {
    flex-shrink: 0;
}

/* --- Games Section --- */
.games-grid {
    display: grid;
    gap: var(--spacing-lg);
}

.games-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.game-card {
    background: linear-gradient(145deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--color-text-light);
}

.game-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.game-card__image-container {
    position: relative;
    overflow: hidden;
}

.game-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-card__image {
    transform: scale(1.1);
}

.game-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-card__overlay {
    opacity: 1;
}

.btn--play-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--color-light);
    color: var(--color-primary);
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    box-shadow: none;
    padding: 0;
}

.btn--play-icon:hover, .btn--play-icon:focus {
    transform: scale(1.1);
    box-shadow: none;
    top: 0;
}

.game-card__category {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-pill);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
}

.game-card__content {
    padding: var(--spacing-md);
    text-align: center;
}

.game-card__title {
    margin: 0 0 var(--spacing-sm) 0;
    color: var(--color-text-light);
    font-size: 1.563rem;
}

.game-card__description {
    color: var(--color-light);
    opacity: 0.8;
    margin-bottom: var(--spacing-md);
    min-height: 48px;
}

/* --- Footer --- */
.footer {
       background-color: #262629;
    color: var(--color-text-light);
    padding-top: var(--spacing-xl);
    font-size: var(--font-size-sm);
}

.footer__main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--color-secondary);
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.953rem;
    font-weight: var(--font-weight-black);
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    display: inline-block;
    text-decoration: none;
}

.footer__description, .footer__disclaimer, .footer p {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

.footer__disclaimer {
    font-style: italic;
}

.footer__title {
    font-size: var(--font-size-lg);
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.footer__list {
    list-style: none;
    padding: 0;
}

.footer__list li {
    margin-bottom: var(--spacing-sm);
}

.footer__link {
    color: var(--color-text-muted);
    text-decoration: none;
}

.footer__link:hover {
    color: var(--color-light);
    text-decoration: underline;
}

.footer__partner-logos {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.footer__partner-logo {
    height: 30px;
    width: auto;
    filter: grayscale(1) brightness(2);
}

.footer__age-rating {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-text-muted);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: var(--font-weight-bold);
}

.footer__bottom {
    padding: var(--spacing-md) 0;
    text-align: center;
    color: var(--color-text-muted);
}

/* --- Content Pages (About, etc.) --- */
.page-header {
    background-color: var(--color-dark);
    color: var(--color-text-light);
    text-align: center;
    padding-top: calc(var(--header-height) + var(--spacing-xl));
}

.page-title {
    font-size: 3.052rem;
    color: var(--color-text-light);
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.text-content__container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.text-content__container h2 {
    font-size: 1.953rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.text-content__container h3 {
    font-size: 1.563rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.text-content__container ul {
    list-style-type: disc;
    padding-left: var(--spacing-md);
}

.text-content__container li {
    margin-bottom: var(--spacing-sm);
}

.text-content__cta {
    margin-top: var(--spacing-lg);
}


/*
==========================================================================
  7. UTILITIES & ANIMATIONS
==========================================================================
*/

/* Animations on Scroll */
.animate-on-scroll, .animate-on-load {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.fade-in, .animate-on-load.fade-in {
    transform: translateY(20px);
}
.animate-on-scroll.fade-in-up, .animate-on-load.fade-in-up {
    transform: translateY(50px);
}
.animate-on-scroll.slide-in-up, .animate-on-load.slide-in-up {
    transform: translateY(100px);
}
.animate-on-scroll.slide-in-left, .animate-on-load.slide-in-left {
    transform: translateX(-100px);
}
.animate-on-scroll.slide-in-right, .animate-on-load.slide-in-right {
    transform: translateX(100px);
}
.animate-on-scroll.zoom-in, .animate-on-load.zoom-in {
    transform: scale(0.9);
}
.animate-on-scroll.pop-in, .animate-on-load.pop-in {
    transform: scale(0.5);
}

.animate-on-scroll.is-visible, .animate-on-load.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/*
==========================================================================
  RESPONSIVE STYLES
==========================================================================
*/

/* Tablet and below (max-width: 1024px) */
@media (max-width: 1024px) {
    h1 { font-size: 2.441rem; }
    h2 { font-size: 1.953rem; }
    h3 { font-size: 1.563rem; }
    .section-title { font-size: 1.953rem; }

    .hero__title { font-size: 3rem; }
    .hero__subtitle { font-size: 1.25rem; }

    .games-grid--three {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__main {
        grid-template-columns: 1fr 1fr;
    }

    .footer__about {
        grid-column: 1 / -1;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: var(--z-index-nav-mobile);
        display: flex;
    }

    .header__nav.is-active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .header__cta {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero {
        text-align: center;
    }

    .hero__content {
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .features-grid, .stats-grid, .games-grid--three {
        grid-template-columns: 1fr;
    }

    .cta__container {
        flex-direction: column;
        text-align: center;
    }

    .bonus-card {
        flex-direction: column;
        text-align: center;
    }

    .bonus-card__image {
        width: 100%;
        height: 200px;
    }

    .footer__main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__partner-logos {
        justify-content: center;
    }

    .page-header {
        padding-top: calc(var(--header-height) + var(--spacing-lg));
    }

    .page-title {
        font-size: 2.441rem;
    }

    .page-subtitle {
        font-size: 1.25rem;
    }
}

