html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

@font-face {
  font-family: 'Marcellus';
  src: local('Marcellus'),
    url('Marcellus-Regular.ttf') format('truetype');
  font-display: normal;
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  font-family: "Marcellus", sans-serif;
  font-weight: 400;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}

/* glob */

.list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

.btn-reset {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.flex {
  display: flex;
}

.container {
  max-width: 1240px;
  padding: 0 15px;
  margin: 0 auto;
}

:root {
  --ll-blue: #1155cc;
  --ll-gold: #f5b800;
  --ll-dark: #0a0a0a;
  --ll-light: #ffffff;
  --ll-ease: cubic-bezier(.25, .8, .25, 1);
}

/* ========== Reset Helpers ========== */
.ll-header,
.ll-overlay {
  font-family: 'Inter', sans-serif;
  color: var(--ll-light);
}

.ll-header a,
.ll-overlay a {
  text-decoration: none;
  color: inherit;
}

/* ========== Header Shell ========== */
.ll-header {
  background: var(--ll-dark);
  position: relative;
  z-index: 100;
}

.ll-header__shell {
  max-width: 1200px;
  margin: auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ========== Brand ========== */
.ll-brand__link {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.ll-brand__logo {
  height: 40px;
  width: auto;
}

.ll-brand__name {
  font-weight: 700;
  font-size: 1.25rem;
}

/* ========== Desktop Nav ========== */
.ll-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ll-nav__list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ll-nav__link {
  position: relative;
  font-size: 0.95rem;
  padding: 0.25rem 0;
}

.ll-nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 2px;
  background: var(--ll-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ll-ease);
}

.ll-nav__link:hover::after {
  transform: scaleX(1);
}

/* CTA button */
.ll-btn {
  display: inline-block;
  padding: 0.55rem 1.25rem;
  border-radius: 3px;
  font-weight: 600;
}

.ll-btn--primary {
  background: var(--ll-blue);
  color: var(--ll-light);
}

.ll-btn--primary:hover {
  background: var(--ll-gold);
  color: var(--ll-dark);
}

/* ========== Hamburger (mobile) ========== */
.ll-burger {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 24px;
  justify-content: center;
  align-items: center;
}

.ll-burger__bar {
  width: 100%;
  height: 2px;
  background: var(--ll-light);
  transition: transform .3s var(--ll-ease);
}

/* ========== Overlay Menu ========== */
.ll-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform .45s var(--ll-ease);
}

.ll-overlay.is-open {
  transform: translateX(0);
}

.ll-overlay__inner {
  text-align: center;
}

.ll-overlay__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--ll-light);
  cursor: pointer;
}

.ll-overlay__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.ll-overlay__link {
  font-size: 1.5rem;
  font-weight: 600;
}

/* ========== Responsiveness ========== */
@media (max-width:900px) {
  .ll-nav {
    display: none;
  }

  .ll-burger {
    display: flex;
  }
}

.ll-slider-section { background: #08090a; overflow: hidden; }

/* Container */
.ll-slider-container { max-width: 1200px; margin: 0 auto; position: relative; }

/* Viewport & Track */
.ll-slider { position: relative; }
.ll-slider-viewport { overflow: hidden; }
.ll-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(.25,.8,.25,1);
  will-change: transform;
}

/* Slides */
.ll-slider-slide { min-width: 100%; position: relative; }
.ll-slide-layer {
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ll-slider-slide--ludo    .ll-slide-layer { background-image: url('img/hero1.webp'); }
.ll-slider-slide--carrom  .ll-slide-layer { background-image: url('img/hero2.webp'); }
.ll-slider-slide--snakes  .ll-slide-layer { background-image: url('img/hero3.webp'); }
.ll-slide-layer::before {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.55);
}

/* Content */
.ll-slide-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 600px; padding: 3rem 1rem;
  color: #ffffff;
}
.ll-slide-title { font-size: 2.25rem; margin-bottom: 0.75rem; }
.ll-slide-text  { font-size: 1.1rem; line-height: 1.6; margin-bottom: 1.75rem; }

/* Button */
.ll-btn {
  display: inline-block; padding: 0.65rem 1.6rem; border-radius: 4px;
  font-weight: 600; text-decoration: none;
  background: #e8b600; color: #08090a;
  transition: background 0.25s;
}
.ll-btn:hover { background: #ffffff; }

/* Controls */
.ll-slider-controls {
  position: absolute; top: 50%; width: 100%;
  display: flex; justify-content: space-between;
  transform: translateY(-50%);
}
.ll-slider-prev,
.ll-slider-next {
  background: rgba(0,0,0,0.45); color: #ffffff;
  border: none; width: 48px; height: 48px; font-size: 2rem;
  cursor: pointer; border-radius: 50%; transition: background 0.25s;
}
.ll-slider-prev:hover,
.ll-slider-next:hover { background: rgba(0,0,0,0.8); }
.ll-slider-prev { margin-left: 1rem;  }
.ll-slider-next { margin-right: 1rem; }

/* Indicators */
.ll-slider-indicators {
  position: absolute; bottom: 1.2rem; left: 50%;
  transform: translateX(-50%); display: flex; gap: 0.75rem;
}
.ll-indicator {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.45); border: none;
  cursor: pointer; transition: background 0.25s;
}
.ll-indicator.is-active { background: #e8b600; }
.ll-indicator:hover      { background: #ffffff; }

/* Responsive */
@media (max-width: 768px) {
  .ll-slide-title { font-size: 1.7rem; }
  .ll-slider-prev,
  .ll-slider-next { display: none; }
}


.ll-hero {
  background: #ffffff;
  overflow: hidden;
}

/* ===== Padding Wrapper ===== */
.ll-hero__padding {
  padding: 60px 20px;
}

/* ===== Centered Container ===== */
.ll-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Two-column Grid ===== */
.ll-hero__grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ===== Image Column ===== */
.ll-hero__image-wrap {
  flex: 1;
}
.ll-hero__image-inner {
  overflow: hidden;
  border-radius: 8px;
}
.ll-hero__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== Text Column ===== */
.ll-hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Intro Block */
.ll-hero__intro {}
.ll-hero__title {
  margin: 0 0 12px;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #222222;
}
.ll-hero__subtitle {
  margin: 0;
  font-size: 1.25rem;
  color: #555555;
}

/* Description Block */
.ll-hero__description p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}
.ll-hero__description p:last-child {
  margin-bottom: 0;
}

/* CTA Block */
.ll-hero__cta {}
.ll-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #1155cc;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s;
}
.ll-btn:hover {
  background: #0e4ba8;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .ll-hero__grid {
    flex-direction: column;
    gap: 24px;
  }
  .ll-hero__title {
    font-size: 2rem;
  }
  .ll-hero__subtitle {
    font-size: 1.1rem;
  }
}


.ll-categories {
  background: #f9f9f9;
  padding: 60px 20px;
}
.ll-categories__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.ll-categories__header-content {
  text-align: center;
  margin-bottom: 40px;
}
.ll-categories__title {
  font-size: 2.25rem;
  color: #222;
  margin: 0 0 12px;
}
.ll-categories__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Grid */
.ll-categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
}
.ll-categories__cell {
  display: flex;
  justify-content: center;
}

/* Card */
.ll-category-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.ll-category-card__media {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect */
}
.ll-category-card__media-inner {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}
.ll-category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info */
.ll-category-card__info {
  padding: 16px;
  text-align: center;
}
.ll-category-card__link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #1155cc;
  text-decoration: none;
  transition: color 0.3s;
}
.ll-category-card__link:hover {
  color: #0e4ba8;
}

/* Responsive */
@media (max-width: 768px) {
  .ll-categories {
    padding: 40px 16px;
  }

  .ll-categories__grid {
    display: flex;
    flex-direction: column;
  }

  .ll-categories__title {
    font-size: 1.9rem;
  }
  .ll-categories__description {
    font-size: 0.95rem;
  }
}

.ll-about-promo {
  background: #ffffff;
  padding: 60px 20px;
}
.ll-about-promo__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ---- Text Column ---- */
.ll-about-content {
  flex: 1;
}
.ll-about-content__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* About Header */
.ll-about-header__title {
  margin: 0;
  font-size: 2rem;
  color: #222222;
}

/* About Body */
.ll-about-body__text {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}

/* Promotions Header */
.ll-promo-header__title {
  margin: 0;
  font-size: 1.75rem;
  color: #1155cc;
}

/* Promotions Body */
.ll-promo-body__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}

/* ---- Image Column ---- */
.ll-about-image {
  flex: 1;
}
.ll-about-image__inner {
  overflow: hidden;
  border-radius: 8px;
}
.ll-about-image__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .ll-about-promo__wrapper {
    flex-direction: column;
    gap: 24px;
  }
  .ll-about-header__title {
    font-size: 1.75rem;
  }
  .ll-promo-header__title {
    font-size: 1.5rem;
  }
}

.ll-catalog {
  background: #ffffff;
  padding: 60px 20px;
}
.ll-catalog__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.ll-catalog__header {
  text-align: center;
  margin-bottom: 40px;
}
.ll-catalog__title {
  font-size: 2.25rem;
  color: #222222;
  margin: 0 0 8px;
}
.ll-catalog__subtitle {
  font-size: 1rem;
  color: #555555;
  margin: 0;
}

/* Grid */
.ll-catalog__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

/* Item */
.ll-catalog__item {
  background: #fafafa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.ll-catalog__item-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Media */
.ll-item__media {
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  position: relative;
}
.ll-item__image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Info */
.ll-item__info {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ll-item__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222222;
  margin: 0 0 12px;
}

/* Footer */
.ll-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ll-item__price {
  font-size: 1rem;
  font-weight: 700;
  color: #1155cc;
}

/* Button */
.ll-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #1155cc;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: background 0.3s;
}
.ll-btn:hover {
  background: #0e4ba8;
  color: white;
}

/* Divider */
.ll-catalog__divider {
  margin: 60px auto 0;
  height: 2px;
  background: #e0e0e0;
  width: 80%;
}

/* Responsive */
@media (max-width: 768px) {
  .ll-catalog__list {
    grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
    gap: 16px;
  }
  .ll-catalog__title {
    font-size: 1.75rem;
  }
}

.ll-testimonials {
  background: #f9f9f9;
  padding: 60px 20px;
}
.ll-testimonials__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Header */
.ll-testimonials__title {
  font-size: 2rem;
  color: #222;
  margin-bottom: 8px;
}
.ll-testimonials__subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 32px;
}

/* Carousel Slides */
.ll-testimonials__carousel {
  position: relative;
}
.ll-testimonials__slides {
  position: relative;
}
.ll-testimonials__slide {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ll-testimonials__slide.is-active {
  display: flex;
}

/* Review Card */
.ll-review__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.ll-review__rating {
  font-size: 1.25rem;
  color: #e8b600;
}
.ll-review__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  max-width: 600px;
}
.ll-review__author {
  font-size: 0.95rem;
  color: #777;
  margin-top: 8px;
}

/* Dots */
.ll-testimonials__dots {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.ll-dot {
  width: 12px;
  height: 12px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.ll-dot.is-active {
  background: #1155cc;
}
.ll-dot:hover {
  background: rgba(0,0,0,0.5);
}

/* Responsive */
@media (max-width: 600px) {
  .ll-testimonials {
    padding: 40px 16px;
  }
  .ll-review__text {
    font-size: 0.95rem;
  }
}


.ll-footer {
  background: #08090a;
  color: #fff;
  font-family: sans-serif;
}
.ll-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Top Flex */
.ll-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 40px;
}
.ll-footer__brand {
  flex: 1 1 240px;
}
.ll-footer__logo {
  height: 36px;
  display: block;
}
.ll-footer__description {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

/* Nav Columns */
.ll-footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  
  gap: 40px;
}
.ll-footer__column {
  min-width: 140px;
}
.ll-footer__col-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.ll-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ll-footer__item {
  margin-bottom: 8px;
}
.ll-footer__link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}
.ll-footer__link:hover {
  color: #e8b600;
}

/* Partners Slider */
.ll-footer__partners-slider {
  position: relative;
  margin: 50px 0;
}
.ll-partners__viewport {
  overflow: hidden;
}
.ll-partners__track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}
.ll-partners__slide {
  flex: 0 0 auto;
  width: 100px;
  padding: 0 10px;
}
.ll-partners__slide img {
  width: 100%;
  filter: brightness(0) invert(1);
}
.ll-partners__prev,
.ll-partners__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}
.ll-partners__prev:hover,
.ll-partners__next:hover {
  background: rgba(0,0,0,0.8);
}
.ll-partners__prev { left: 10px; }
.ll-partners__next { right: 10px; }

/* Bottom */
.ll-footer__bottom {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .ll-footer__top {
    flex-direction: column;
  }
  .ll-footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.ll-feature-picker {
  background: #ffffff;
  padding: 60px 20px;
  overflow: hidden;
}
.ll-feature-picker__outer {
  max-width: 1200px;
  margin: 0 auto;
}
.ll-feature-picker__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ---- Text Column ---- */
.ll-feature-picker__text-col {
  flex: 1;
}
.ll-feature-picker__title {
  font-size: 2.5rem;
  color: #222222;
  margin: 0 0 12px;
}
.ll-feature-picker__subhead {
  font-size: 1.25rem;
  color: #555555;
  margin: 0 0 24px;
}
.ll-feature-picker__copy p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}
.ll-feature-picker__copy p:last-child {
  margin-bottom: 0;
}
.ll-feature-picker__cta-wrap {
  margin-top: 24px;
}
.ll-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #1155cc;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s;
}
.ll-btn--primary:hover {
  background: #0e4ba8;
}

/* ---- Image Column ---- */
.ll-feature-picker__image-col {
  flex: 1;
}
.ll-feature-picker__image-inner {
  overflow: hidden;
  border-radius: 8px;
}
.ll-feature-picker__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .ll-feature-picker__inner {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .ll-feature-picker__title {
    font-size: 2rem;
  }
  .ll-feature-picker__subhead {
    font-size: 1.1rem;
  }
}
.ll-products-section {
  background: #ffffff;
  padding: 60px 20px;
}
.ll-products__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.ll-products__header {
  text-align: center;
  margin-bottom: 40px;
}
.ll-products__heading {
  font-size: 2.25rem;
  color: #222222;
  margin: 0 0 8px;
}
.ll-products__subheading {
  font-size: 1rem;
  color: #555555;
  margin: 0;
}

/* Grid Layout */
.ll-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

/* Product Card */
.ll-product-card {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.ll-product-card__media {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect */
}
.ll-product-card__image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Info & Footer */
.ll-product-card__info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}
.ll-product-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222222;
  margin: 0 0 12px;
}
.ll-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ll-product-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: #1155cc;
}
.ll-product-card__btn {
  background: #1155cc;
  color: #ffffff;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: background 0.3s;
}
.ll-product-card__btn:hover {
  background: #0e4ba8;
}

/* Divider */
.ll-products__divider {
  margin: 60px auto 0;
  width: 20%;
  height: 2px;
  background: #e0e0e0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ll-products__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 16px;
  }
  .ll-products__heading {
    font-size: 1.75rem;
  }
}

.ll-cardgames-section {
  background: #f9f9f9;
  padding: 60px 20px;
  overflow: hidden;
}

/* Shell & Container */
.ll-cardgames-shell {
  max-width: 1200px;
  margin: 0 auto;
}
.ll-cardgames-container {
  display: flex;
  justify-content: center;
}
.ll-cardgames-wrapper {
  width: 100%;
  max-width: 800px;
}

/* Content */
.ll-cardgames-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

/* Header */
.ll-cardgames-title {
  margin: 0;
  font-size: 2.5rem;
  color: #222222;
  line-height: 1.2;
}

/* Body Text */
.ll-cardgames-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ll-cardgames-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}

/* Footer / CTA */
.ll-cardgames-footer {
  margin-top: 16px;
}
.ll-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #1155cc;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s;
}
.ll-btn:hover {
  background: #0e4ba8;
}

/* Responsive */
@media (max-width: 768px) {
  .ll-cardgames-title {
    font-size: 2rem;
  }
  .ll-cardgames-wrapper {
    padding: 0 10px;
  }
}

.ll-catalog-section {
  background: #ffffff;
  padding: 60px 20px;
}
.ll-catalog-section__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.ll-catalog-section__header {
  text-align: center;
  margin-bottom: 40px;
}
.ll-catalog-section__title {
  font-size: 2.25rem;
  color: #222222;
  margin: 0 0 8px;
}
.ll-catalog-section__subtitle {
  font-size: 1rem;
  color: #555555;
  margin: 0;
}

/* Grid Layout */
.ll-catalog-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 24px;
}

/* Card */
.ll-catalog-item {
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ll-catalog-item__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Media */
.ll-catalog-item__media {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect */
}
.ll-catalog-item__image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Details */
.ll-catalog-item__details {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ll-catalog-item__name {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #222222;
}
.ll-catalog-item__category {
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: #777777;
}

/* Footer */
.ll-catalog-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ll-catalog-item__price {
  font-size: 1rem;
  font-weight: 700;
  color: #1155cc;
}
.ll-catalog-item__btn {
  background: #1155cc;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background 0.3s;
}
.ll-catalog-item__btn:hover {
  background: #0e4ba8;
}

/* Divider */
.ll-catalog-section__divider {
  margin: 60px auto 0;
  width: 20%;
  height: 2px;
  background: #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
  .ll-catalog-section__grid {
    gap: 16px;
  }
  .ll-catalog-section__title {
    font-size: 1.75rem;
  }
}

.ll-rare-section {
  background: #ffffff;
  padding: 60px 20px;
  overflow: hidden;
}
.ll-rare__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.ll-rare__grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Media Column */
.ll-rare__media {
  flex: 1;
}
.ll-rare__media-inner {
  overflow: hidden;
  border-radius: 8px;
}
.ll-rare__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Content Column */
.ll-rare__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Header */
.ll-rare__title {
  margin: 0;
  font-size: 2.5rem;
  color: #222222;
  line-height: 1.2;
}

/* Body Text */
.ll-rare__intro {
  margin: 0 0 16px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333333;
}
.ll-rare__text {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: #444444;
}

/* Call to Action */
.ll-rare__cta {}
.ll-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #1155cc;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s;
}
.ll-btn--primary:hover {
  background: #0e4ba8;
}

/* Responsive */
@media (max-width: 768px) {
  .ll-rare__grid {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .ll-rare__title {
    font-size: 2rem;
  }
  .ll-rare__intro {
    font-size: 1rem;
  }
}

.ll-featured-games {
  background: #ffffff;
  padding: 60px 20px;
}
.ll-featured-games__container {
  max-width: 1200px;
  margin: 0 auto;
}
.ll-featured-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

/* Game Card */
.ll-game-card {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}
.ll-game-card:hover {
  transform: translateY(-6px);
}
.ll-game-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Media */
.ll-game-card__media {
  display: block;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect */
  position: relative;
}
.ll-game-card__image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Body */
.ll-game-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}
.ll-game-card__title {
  margin: 0 0 12px;
  font-size: 1.15rem;
  color: #222222;
}
.ll-game-card__title-link {
  text-decoration: none;
}
.ll-game-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ll-game-card__category {
  font-size: 0.9rem;
  color: #555555;
}
.ll-game-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: #1155cc;
}

/* Responsive */
@media (max-width: 768px) {
  .ll-featured-games__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }
}

.ll-faq {
  background: #ffffff;
  padding: 60px 20px;
  font-family: sans-serif;
}
.ll-faq__wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* Header */
.ll-faq__header {
  text-align: center;
  margin-bottom: 40px;
}
.ll-faq__title {
  font-size: 2rem;
  color: #222222;
  margin: 0;
}

/* Items */
.ll-faq__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ll-faq__item {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.ll-faq__item.is-open {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Question Button */
.ll-faq__question {
  width: 100%;
  background: #f9f9f9;
  border: none;
  padding: 16px;
  text-align: left;
  font-size: 1rem;
  color: #333333;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ll-faq__question:hover {
  background: #f1f1f1;
}
.ll-faq__icon {
  font-size: 1.2rem;
  transition: transform 0.3s;
}
.ll-faq__item.is-open .ll-faq__icon {
  transform: rotate(45deg);
}

/* Answer Content */
.ll-faq__answer {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  padding: 0 16px;
  transition: max-height 0.4s ease;
}
.ll-faq__item.is-open .ll-faq__answer {
  padding: 16px;
  max-height: 500px; /* large enough for content */
  /* optionally use height: auto with JS if preferred */
}
.ll-faq__answer p {
  margin: 0 0 8px;
  line-height: 1.6;
  color: #555555;
}
.ll-faq__answer p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 600px) {
  .ll-faq__title {
    font-size: 1.75rem;
  }
  .ll-faq__question {
    font-size: 0.95rem;
  }
}

.ll-faq-page {
  background: #ffffff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}
.ll-faq-page__container {
  max-width: 800px;
  margin: 0 auto;
}

/* Header */
.ll-faq-page__title {
  font-size: 2rem;
  color: #222222;
  text-align: center;
  margin-bottom: 40px;
}

/* Items */
.ll-faq-page__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ll-faq-page__item {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.ll-faq-page__item.is-open {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Question */
.ll-faq-page__question {
  width: 100%;
  padding: 16px;
  background: #f9f9f9;
  border: none;
  text-align: left;
  font-size: 1rem;
  color: #333333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ll-faq-page__question:hover {
  background: #f1f1f1;
}
.ll-faq-page__icon {
  font-size: 1.2rem;
  transition: transform 0.3s;
}
.ll-faq-page__item.is-open .ll-faq-page__icon {
  transform: rotate(45deg);
}

/* Answer */
.ll-faq-page__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  background: #ffffff;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.ll-faq-page__item.is-open .ll-faq-page__answer {
  padding: 16px;
  max-height: 300px; /* adjust if answers are longer */
  line-height: 1.6;
  color: #555555;
}

/* Responsive */
@media (max-width: 600px) {
  .ll-faq-page__title {
    font-size: 1.75rem;
  }
  .ll-faq-page__question {
    font-size: 0.95rem;
  }
}


.ll-delivery {
  background: #f9f9f9;
  padding: 60px 20px;
}
.ll-delivery__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.ll-delivery__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Text Column */
.ll-delivery__content {
  flex: 1 1 300px;
}
.ll-delivery__title {
  margin: 0 0 16px;
  font-size: 2rem;
  color: #222222;
  line-height: 1.2;
}
.ll-delivery__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ll-delivery__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}

/* Image Column */
.ll-delivery__media {
  flex: 1 1 300px;
}
.ll-delivery__figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}
.ll-delivery__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .ll-delivery__inner {
    flex-direction: column;
    gap: 24px;
  }
  .ll-delivery__title {
    font-size: 1.75rem;
  }
}

.ll-contact {
  background: #ffffff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  color: #222222;
}
.ll-contact__wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

/* Header */
.ll-contact__header {
  text-align: center;
  margin-bottom: 40px;
}
.ll-contact__title {
  font-size: 2rem;
  margin: 0 0 8px;
}
.ll-contact__subtitle {
  font-size: 1rem;
  color: #555555;
  margin: 0;
}

/* Grid Layout */
.ll-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .ll-contact__grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Info */
.ll-contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ll-contact__info-item {
  line-height: 1.4;
}
.ll-contact__info-label {
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
}
.ll-contact__info-link {
  color: #1155cc;
  text-decoration: none;
  font-size: 1rem;
}
.ll-contact__info-text {
  font-size: 1rem;
  color: #555555;
  margin: 0;
}

/* Form */
.ll-contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ll-contact__field {
  display: flex;
  flex-direction: column;
}
.ll-contact__label {
  font-size: 0. nine rem;
  margin-bottom: 4px;
}
.ll-contact__input,
.ll-contact__textarea {
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 1rem;
  resize: vertical;
}
.ll-contact__textarea {
  min-height: 100px;
}
.ll-contact__submit {
  width: fit-content;
  padding: 12px 24px;
  background: #1155cc;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.ll-contact__submit:hover {
  background: #0e4ba8;
}
.ll-faq-section {
  background: #ffffff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}
.ll-faq-section__inner {
  max-width: 900px;
  margin: 0 auto;
}
.ll-faq-section__heading {
  font-size: 2rem;
  color: #222222;
  text-align: center;
  margin-bottom: 32px;
}

/* FAQ List */
.ll-faq-section__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Each FAQ Item */
.ll-faq-section__item {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fafafa;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.ll-faq-section__item[open] {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Question */
.ll-faq-section__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  list-style: none;
}
.ll-faq-section__question:hover {
  background: #f0f0f0;
}
.ll-faq-section__question::after {
  content: '➕';
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.ll-faq-section__item[open] .ll-faq-section__question::after {
  content: '➖';
  transform: rotate(180deg);
}

/* Answer */
.ll-faq-section__answer {
  padding: 0 24px 16px;
  line-height: 1.6;
  color: #444444;
}
.ll-faq-section__answer p {
  margin: 0 0 12px;
}
.ll-faq-section__answer ul,
.ll-faq-section__answer ol {
  margin: 0 0 12px 20px;
}
.ll-faq-section__answer li {
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 600px) {
  .ll-faq-section__heading {
    font-size: 1.75rem;
  }
  .ll-faq-section__question {
    font-size: 1rem;
    padding: 14px 16px;
  }
  .ll-faq-section__answer {
    padding: 0 16px 12px;
  }
}













.gam a img {
  max-width: 70px;
}

.cirle {
  border-radius: 100%;
  background-color: red;
  color: white;
  font-size: 30px;
  padding: 12px;
}

.dnone {
  display: none;
}








@media (max-width: 768px) {

  .cc-footer__col,
  .cc-iconbox {
    flex: none;
    margin: 0;
  }

  .bb-hero-header__inner {
    padding: 20px;
  }

  .ll-footer__nav, .ll-footer__top {
    display: flex;
    flex-direction: column;
  }

  .ll-footer__brand {
    flex: none;
  }

  .bb-hero-header {
    height: auto;
  }

  .bb-menu-card__image img {
    width: 100%;
  }

  .bb-why-grid,
  .bb-pricing-nav,
  .bb-about-grid,
  .bb-menu-card,
  .bb-faqs-tabs {
    display: flex;
    flex-direction: column;
  }

  .hg-brand__link {
    font-size: 24px;
  }

  .lux-header__container {
    flex-direction: column;
    width: 100%;
  }

  .lux-header__top {
    width: 100%;
  }

  .lc-svc-nav {
    position: inherit;
  }

  .lc-app-download__btn,
  .lc-pricing-app-cta__btn {
    justify-content: center;
  }

  .rr-sd__pane-inner {
    clip-path: none;
  }

  .hero-slider__slide-inner {
    padding: 20px;
  }

  .av-footer__nav,
  .aq-app-rating__metric,
  .av-footer__brand,
  .ss-welcome-section__col,
  .av-footer__credits {
    flex: none;
  }

  .tr-blog__grid {
    display: block;
  }

  .ss-welcome__text-wrap {
    padding: 0;
  }


  .cc-faq-badge,
  .tr-cta-three__decor--dot {
    right: 0;
  }

  .ss-cta2-title,
  .ss-team-header__title {
    font-size: 1.5em;
  }

  .ss-cta2-row {
    display: block;
  }

  .pl-app-ratings__inner,
  .se-services__grid,
  .ss-story-event:nth-child(even) .ss-story-event__inner,
  .tr-projects__filters,
  .ss-pricing-tabs__nav-list,
  .ss-welcome-section__row,
  .trd-faq__grid,
  .ss-work-section__steps,
  .ss-gallery-section__grid,
  .trd-overflow-container,
  .slides-track,
  .abt-stats__grid,
  .lc-filter-list,
  .ss-office-future__features-inner,
  .av-experience__features,
  .av-gallery-grid,
  .av-featured-pair-inner,
  .tr-cta-extra__grid {
    display: flex;
    flex-direction: column;
    flex: none
  }

  .rr-testimonials__control--next {
    right: -8px;
  }

  .rr-testimonials__control--prev {
    left: -8px;
  }

  .cc-faq-image-layer--front,
  .slider-btn {
    display: none;
  }

  .cc-faq-image {
    width: auto;
  }

  .cc-footer__brand {
    text-align: center;
  }

  .cc-footer__nav-list {
    margin: 0;
    padding-left: 0;
  }
}




@media (max-width: 425px) {

  .cc-footer__copyright {
    font-size: 0.6em;
  }

  .cc-step__container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }


}



html,
body {
  height: 100%;

  display: flex;
  flex-direction: column;
}

/* Основной контейнер, который растягивается */
main {
  flex: 1;
  /* Этот блок занимает всё доступное пространство */
}

/* Футер всегда внизу */
footer {


  text-align: center;
  padding: 20px;
  font-size: 16px;
}