/* ==================================================
                    GLOBAL SETTINGS
================================================== */

:root {
  --header-height: 78px;

  --green-950: #031b19;
  --green-900: #062623;
  --green-800: #0d443d;

  --white: #ffffff;
  --text-soft: #d9ebe6;

  --teal: #34d7c1;
  --lime: #c4f044;
  --coral: #ff765e;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;

  background: var(--green-950);
  color: var(--white);

  font-family:
    Inter,
    Montserrat,
    Arial,
    Helvetica,
    sans-serif;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}


/* ==================================================
                         HEADER
================================================== */

.the-lott-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;

  min-height: var(--header-height);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.12);

  background:
    rgba(4, 31, 28, 0.93);

  box-shadow:
    0 10px 32px rgba(2, 20, 18, 0.25);

  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.the-lott-header .navbar {
  min-height: var(--header-height);
}


/* ==================================================
                          LOGO
================================================== */

.the-lott-header__logo {
  display: flex;
  flex: 0 0 auto;
  align-items: center;

  width: 210px;
  height: 58px;

  opacity: 1;
  visibility: visible;
}

.the-lott-header__logo img {
  display: block !important;

  width: 210px !important;
  max-width: 100%;
  height: auto !important;
  max-height: 52px;

  opacity: 1 !important;
  visibility: visible !important;

  object-fit: contain;

  filter: none !important;
}


/* ==================================================
                       NAVIGATION
================================================== */

.the-lott-header .navbar-nav {
  gap: 3px;
}

.the-lott-header .nav-link {
  position: relative;

  padding: 12px 8px !important;

  color:
    rgba(255, 255, 255, 0.84) !important;

  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;

  transition:
    color 180ms ease;
}

.the-lott-header .nav-link::after {
  position: absolute;
  right: 8px;
  bottom: 5px;
  left: 8px;

  height: 2px;

  transform: scaleX(0);

  border-radius: 20px;

  background: var(--lime);

  content: "";

  transition:
    transform 180ms ease;
}

.the-lott-header .nav-link:hover,
.the-lott-header .nav-link:focus-visible {
  color: var(--white) !important;
}

.the-lott-header .nav-link:hover::after,
.the-lott-header .nav-link:focus-visible::after {
  transform: scaleX(1);
}

.the-lott-header__action {
  margin-left: 10px;
}


/* ==================================================
                         BUTTONS
================================================== */

.the-lott-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 12px;

  background:
    linear-gradient(
      135deg,
      var(--lime),
      #efff8c
    );

  box-shadow:
    0 10px 25px rgba(196, 240, 68, 0.24);

  color: #102000 !important;

  font-weight: 900;
  line-height: 1;
  text-align: center;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.the-lott-button:hover,
.the-lott-button:focus-visible {
  transform: translateY(-2px);

  box-shadow:
    0 14px 32px rgba(196, 240, 68, 0.34);

  color: #102000 !important;
}

.the-lott-button--header {
  min-height: 44px;

  padding: 13px 18px;

  font-size: 13px;
}

.the-lott-button--hero {
  min-width: 150px;
  min-height: 52px;

  padding: 16px 25px;

  font-size: 15px;
}


/* ==================================================
                     MOBILE TOGGLE
================================================== */

.navbar-toggler {
  display: grid;

  width: 45px;
  height: 45px;

  padding: 0;

  place-content: center;
  gap: 5px;

  border:
    1px solid rgba(255, 255, 255, 0.2) !important;

  border-radius: 11px;

  outline: none !important;
}

.navbar-toggler span {
  display: block;

  width: 21px;
  height: 2px;

  border-radius: 20px;

  background: var(--white);
}


/* ==================================================
                          HERO
================================================== */

.the-lott-hero {
  position: relative;
  isolation: isolate;

  min-height: 100vh;
  min-height: 100svh;

  overflow: hidden;

  background: var(--green-900);
}


/* ==================================================
                     HERO BACKGROUND
================================================== */

.the-lott-hero__media,
.the-lott-hero__image,
.the-lott-hero__overlay {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
}

.the-lott-hero__media {
  z-index: -2;
}

.the-lott-hero__image {
  display: block;

  object-fit: cover;
  object-position: center;
}

.the-lott-hero__overlay {
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(5, 49, 44, 0.97) 0%,
      rgba(9, 65, 57, 0.9) 30%,
      rgba(17, 82, 69, 0.58) 47%,
      rgba(24, 104, 84, 0.12) 69%
    ),
    linear-gradient(
      180deg,
      rgba(3, 31, 28, 0.18) 0%,
      rgba(3, 31, 28, 0) 65%,
      rgba(3, 31, 28, 0.28) 100%
    );
}


/* ==================================================
                     HERO CONTENT
================================================== */

.the-lott-hero__container {
  position: relative;
  z-index: 2;

  padding-top: var(--header-height);
}

.the-lott-hero__container .row {
  padding-top: 28px;
  padding-bottom: 28px;
}

.the-lott-hero__kicker {
  display: inline-flex;

  margin-bottom: 16px;

  padding: 8px 12px;

  border:
    1px solid rgba(52, 215, 193, 0.42);

  border-radius: 30px;

  background:
    rgba(4, 42, 37, 0.68);

  color: #6df0dd;

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* ==================================================
                       HERO TITLE
================================================== */

.the-lott-hero__title {
  max-width: 760px;

  margin: 0 0 18px;

  color: var(--white);

  font-size:
    clamp(45px, 5vw, 74px);

  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;

  text-shadow:
    0 8px 30px rgba(1, 24, 21, 0.32);
}

.the-lott-hero__title span {
  display: block;

  background:
    linear-gradient(
      90deg,
      var(--lime) 0%,
      #efff9a 52%,
      var(--coral) 100%
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}


/* ==================================================
                    HERO DESCRIPTION
================================================== */

.the-lott-hero__description {
  max-width: 660px;

  color: var(--text-soft);

  font-size: 15px;
  line-height: 1.62;

  text-shadow:
    0 2px 14px rgba(1, 24, 21, 0.36);
}

.the-lott-hero__description p {
  margin: 0 0 9px;
}


/* ==================================================
                     HERO FEATURES
================================================== */

.the-lott-hero__features {
  display: flex;
  flex-wrap: wrap;

  gap: 9px;

  margin: 19px 0 0;
  padding: 0;

  list-style: none;
}

.the-lott-hero__features li {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  min-height: 40px;

  padding:
    7px 12px 7px 8px;

  border:
    1px solid rgba(255, 255, 255, 0.15);

  border-radius: 11px;

  background:
    rgba(3, 43, 38, 0.72);

  color:
    rgba(255, 255, 255, 0.94);

  font-size: 12px;
  font-weight: 800;

  box-shadow:
    0 8px 20px rgba(1, 25, 22, 0.16);
}

.the-lott-hero__features svg {
  width: 27px;
  height: 27px;

  padding: 6px;

  border-radius: 8px;

  background:
    rgba(196, 240, 68, 0.14);

  fill: var(--lime);
}


/* ==================================================
                       HERO OFFER
================================================== */

.the-lott-hero__offer {
  display: grid;

  max-width: 480px;

  gap: 4px;

  margin-top: 18px;

  padding: 13px 16px;

  border-left:
    3px solid var(--coral);

  border-radius:
    0 12px 12px 0;

  background:
    rgba(255, 118, 94, 0.13);

  box-shadow:
    0 12px 28px rgba(1, 25, 22, 0.15);
}

.the-lott-hero__offer span {
  color: #ff9d8b;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.the-lott-hero__offer strong {
  color: var(--white);

  font-size:
    clamp(17px, 2vw, 22px);

  line-height: 1.25;
}


/* ==================================================
                      HERO ACTION
================================================== */

.the-lott-hero__actions {
  display: flex;
  align-items: center;

  gap: 16px;

  margin-top: 18px;
}

.the-lott-hero__note {
  max-width: 310px;

  color:
    rgba(220, 237, 232, 0.75);

  font-size: 11px;
  line-height: 1.45;
}


/* ==================================================
                         LAPTOP
================================================== */

@media (max-width: 1199px) {

  .the-lott-header__logo,
  .the-lott-header__logo img {
    width: 180px !important;
  }

  .the-lott-header .nav-link {
    padding-right: 6px !important;
    padding-left: 6px !important;

    font-size: 12px;
  }

  .the-lott-header__action {
    margin-left: 6px;
  }
}


/* ==================================================
                         TABLET
================================================== */

@media (max-width: 991px) {

  :root {
    --header-height: 70px;
  }

  .the-lott-header__logo,
  .the-lott-header__logo img {
    width: 190px !important;
  }

  .the-lott-header .navbar-collapse {
    position: absolute;
    top: var(--header-height);
    right: 15px;
    left: 15px;

    padding: 16px;

    border:
      1px solid rgba(255, 255, 255, 0.12);

    border-radius:
      0 0 16px 16px;

    background:
      rgba(4, 31, 28, 0.98);

    box-shadow:
      0 22px 35px rgba(1, 20, 18, 0.34);
  }

  .the-lott-header .nav-link {
    padding: 11px 8px !important;

    font-size: 13px;
  }

  .the-lott-header__action {
    margin: 10px 0 0;
  }

  .the-lott-button--header {
    width: 100%;
  }

  .the-lott-hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(5, 49, 44, 0.97),
        rgba(9, 65, 57, 0.7)
      );
  }
}


/* ==================================================
                         MOBILE
================================================== */

@media (max-width: 575px) {

  .the-lott-header__logo,
  .the-lott-header__logo img {
    width: 175px !important;
  }

  .the-lott-hero__container {
    padding-top:
      calc(var(--header-height) + 45px);

    padding-bottom: 45px;
  }

  .the-lott-hero__container .row {
    min-height: auto !important;

    padding-top: 0;
    padding-bottom: 0;
  }

  .the-lott-hero__image {
    object-position: 66% center;
  }

  .the-lott-hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(5, 49, 44, 0.98),
        rgba(9, 65, 57, 0.83)
      );
  }

  .the-lott-hero__title {
    font-size:
      clamp(39px, 12vw, 54px);
  }

  .the-lott-hero__description {
    font-size: 14px;
  }

  .the-lott-hero__features {
    display: grid;
    grid-template-columns: 1fr;
  }

  .the-lott-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .the-lott-button--hero {
    width: 100%;
  }
}


/* ==================================================
                    REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration:
      0.01ms !important;
  }
}
/* ==================================================
                   CASINO SECTION START
================================================== */

.casino-section {
  --casino-bg: #041c1a;
  --casino-bg-soft: #082925;
  --casino-panel: rgba(10, 48, 43, 0.88);
  --casino-panel-light: rgba(15, 62, 55, 0.82);

  --casino-white: #ffffff;
  --casino-text: #d5e7e2;
  --casino-muted: #9dbbb4;

  --casino-lime: #c4f044;
  --casino-teal: #34d7c1;
  --casino-coral: #ff765e;
  --casino-blue: #55a8ff;
  --casino-violet: #a38aff;

  position: relative;
  isolation: isolate;

  overflow: hidden;

  padding: 105px 0 96px;

  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(52, 215, 193, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 70%,
      rgba(196, 240, 68, 0.08),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      var(--casino-bg) 0%,
      #06231f 52%,
      #031917 100%
    );
}

.casino-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;

  opacity: 0.12;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    );

  background-size: 54px 54px;

  pointer-events: none;

  content: "";
}


/* ==================================================
                    SECTION HEADING
================================================== */

.casino-section__header {
  max-width: 920px;

  margin: 0 auto 62px;

  text-align: center;
}

.casino-section__eyebrow {
  display: inline-flex;
  align-items: center;

  margin-bottom: 15px;

  padding: 8px 13px;

  border:
    1px solid rgba(52, 215, 193, 0.3);

  border-radius: 30px;

  background:
    rgba(52, 215, 193, 0.08);

  color: var(--casino-teal);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.casino-section__header h2 {
  margin: 0;

  color: var(--casino-white);

  font-size:
    clamp(38px, 4.5vw, 64px);

  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-transform: none;
}

.casino-section__header h2 span {
  display: block;

  background:
    linear-gradient(
      90deg,
      var(--casino-lime),
      #efff9d 55%,
      var(--casino-coral)
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.casino-section__header > p {
  max-width: 760px;

  margin: 22px auto 0;

  color: var(--casino-text);

  font-size: 16px;
  line-height: 1.75;
}


/* ==================================================
                   CASINO EXPERIENCE
================================================== */

.casino-experience {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(390px, 0.82fr);

  align-items: start;

  gap: clamp(38px, 5vw, 72px);

  margin-bottom: 70px;
}


/* ==================================================
                    EXPERIENCE TEXT
================================================== */

.casino-experience__content {
  min-width: 0;
}

.casino-experience__content h3 {
  margin: 0 0 25px;

  color: var(--casino-white);

  font-size:
    clamp(30px, 3vw, 44px);

  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-transform: none;
}

.casino-experience__content h3 span {
  display: block;

  color: var(--casino-lime);
}

.casino-experience__content > p {
  margin: 0 0 17px;

  color: var(--casino-text);

  font-size: 15px;
  line-height: 1.78;
}

.casino-experience__content > p:last-of-type {
  margin-bottom: 0;
}


/* ==================================================
                  EXPERIENCE FEATURES
================================================== */

.casino-experience__features {
  display: grid;

  gap: 11px;

  margin: 28px 0 0;
  padding: 0;

  list-style: none;
}

.casino-experience__features li {
  display: flex;
  align-items: center;

  gap: 11px;

  min-height: 48px;

  padding: 11px 14px;

  border:
    1px solid rgba(255, 255, 255, 0.1);

  border-radius: 12px;

  background:
    rgba(13, 58, 51, 0.55);

  color: var(--casino-white);

  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.casino-check {
  position: relative;

  flex: 0 0 27px;

  width: 27px;
  height: 27px;

  border-radius: 9px;

  background:
    rgba(196, 240, 68, 0.14);

  box-shadow:
    inset 0 0 0 1px
    rgba(196, 240, 68, 0.2);
}

.casino-check::before {
  position: absolute;

  top: 7px;
  left: 7px;

  width: 13px;
  height: 8px;

  transform: rotate(-45deg);

  border-bottom:
    2px solid var(--casino-lime);

  border-left:
    2px solid var(--casino-lime);

  content: "";
}


/* ==================================================
                     CASINO MEDIA
================================================== */

.casino-experience__media {
  min-width: 0;

  padding: 12px;

  border:
    1px solid rgba(255, 255, 255, 0.12);

  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(17, 68, 61, 0.84),
      rgba(5, 32, 29, 0.92)
    );

  box-shadow:
    0 30px 65px rgba(0, 10, 9, 0.34);
}

.casino-experience__visual {
  position: relative;

  overflow: hidden;

  margin: 0;

  border-radius: 17px;

  background: #082925;
}

.casino-experience__visual::after {
  position: absolute;
  inset: 0;

  border:
    1px solid rgba(255, 255, 255, 0.12);

  border-radius: inherit;

  box-shadow:
    inset 0 0 35px rgba(52, 215, 193, 0.08);

  pointer-events: none;

  content: "";
}

.casino-experience__visual img {
  display: block;

  width: 100%;
  height: auto;

  border-radius: inherit;

  object-fit: cover;
}


/* ==================================================
                      GAME FINDER
================================================== */

.casino-experience__finder {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 8px;

  margin-top: 10px;
}

.casino-experience__finder > div {
  display: flex;
  align-items: flex-start;

  gap: 8px;

  min-width: 0;

  padding: 11px 9px;

  border:
    1px solid rgba(255, 255, 255, 0.09);

  border-radius: 12px;

  background:
    rgba(4, 34, 30, 0.72);
}

.casino-finder-icon {
  display: inline-flex;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  border-radius: 9px;

  background:
    rgba(52, 215, 193, 0.12);

  color: var(--casino-teal);
}

.casino-finder-icon svg {
  width: 15px;
  height: 15px;
}

.casino-experience__finder p {
  min-width: 0;

  margin: 0;

  color: var(--casino-muted);

  font-size: 10px;
  line-height: 1.45;
}

.casino-experience__finder strong {
  display: block;

  margin-bottom: 3px;

  color: var(--casino-white);

  font-size: 10px;
  font-weight: 900;
}


/* ==================================================
                    CASINO CATEGORIES
================================================== */

.casino-categories {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 16px;
}

.casino-category {
  position: relative;

  display: flex;
  align-items: flex-start;

  gap: 15px;

  min-width: 0;
  min-height: 230px;

  overflow: hidden;

  padding: 24px;

  border:
    1px solid rgba(255, 255, 255, 0.11);

  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      var(--casino-panel-light),
      var(--casino-panel)
    );

  box-shadow:
    0 18px 42px rgba(0, 13, 11, 0.2);

  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.casino-category::before {
  position: absolute;

  top: -55px;
  right: -55px;

  width: 150px;
  height: 150px;

  border-radius: 50%;

  opacity: 0.12;

  background: currentColor;

  filter: blur(5px);

  content: "";
}

.casino-category:hover {
  transform: translateY(-4px);

  border-color:
    rgba(255, 255, 255, 0.2);
}

.casino-category__icon {
  position: relative;
  z-index: 1;

  display: inline-flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  border-radius: 14px;

  background:
    rgba(255, 255, 255, 0.08);

  color: currentColor;

  box-shadow:
    inset 0 0 0 1px
    rgba(255, 255, 255, 0.09);
}

.casino-category__icon svg {
  width: 25px;
  height: 25px;
}

.casino-category__content {
  position: relative;
  z-index: 1;

  min-width: 0;
}

.casino-category__content > span {
  display: block;

  margin-bottom: 7px;

  color: currentColor;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.casino-category__content h3 {
  margin: 0 0 10px;

  color: var(--casino-white);

  font-size: 20px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-transform: none;
}

.casino-category__content p {
  margin: 0;

  color: var(--casino-muted);

  font-size: 13px;
  line-height: 1.65;
}

.casino-category--coral {
  color: var(--casino-coral);
}

.casino-category--blue {
  color: var(--casino-blue);
}

.casino-category--violet {
  color: var(--casino-violet);
}


/* ==================================================
                      CLOSING TEXT
================================================== */

.casino-section__closing {
  display: grid;

  grid-template-columns:
    minmax(30px, 1fr)
    minmax(260px, 720px)
    minmax(30px, 1fr);

  align-items: center;

  gap: 22px;

  margin-top: 52px;
}

.casino-section__closing span {
  display: block;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(52, 215, 193, 0.34)
    );
}

.casino-section__closing span:last-child {
  transform: rotate(180deg);
}

.casino-section__closing p {
  margin: 0;

  color: var(--casino-text);

  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}


/* ==================================================
                         TABLET
================================================== */

@media (max-width: 991px) {

  .casino-section {
    padding:
      84px 0 78px;
  }

  .casino-section__header {
    margin-bottom: 48px;
  }

  .casino-experience {
    grid-template-columns: 1fr;

    gap: 42px;

    margin-bottom: 54px;
  }

  .casino-experience__media {
    width: min(100%, 620px);

    margin: 0 auto;
  }

  .casino-categories {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}


/* ==================================================
                         MOBILE
================================================== */

@media (max-width: 575px) {

  .casino-section {
    padding:
      68px 0 62px;
  }

  .casino-section__header {
    margin-bottom: 38px;

    text-align: left;
  }

  .casino-section__header h2 {
    font-size:
      clamp(34px, 10vw, 46px);
  }

  .casino-section__header > p {
    font-size: 14px;
  }

  .casino-experience__content h3 {
    font-size:
      clamp(29px, 8.5vw, 38px);
  }

  .casino-experience__content > p {
    font-size: 14px;
  }

  .casino-experience__media {
    padding: 8px;

    border-radius: 18px;
  }

  .casino-experience__visual {
    border-radius: 13px;
  }

  .casino-experience__finder {
    grid-template-columns: 1fr;
  }

  .casino-experience__finder > div {
    align-items: center;

    padding: 11px;
  }

  .casino-experience__finder p,
  .casino-experience__finder strong {
    font-size: 11px;
  }

  .casino-categories {
    grid-template-columns: 1fr;

    gap: 12px;
  }

  .casino-category {
    min-height: 0;

    padding: 20px;
  }

  .casino-section__closing {
    grid-template-columns: 1fr;

    margin-top: 40px;
  }

  .casino-section__closing span {
    display: none;
  }

  .casino-section__closing p {
    font-size: 14px;
  }
}


/* ==================================================
                   CASINO SECTION END
================================================== */
/* ==================================================
   FEATURED GAMES SECTION
================================================== */

.featured-games {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(80px, 8vw, 140px) 0;
  color: #f7fff9;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(183, 232, 54, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 78%,
      rgba(70, 193, 150, 0.16),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #073f35 0%,
      #0b5747 48%,
      #073c35 100%
    );
}

.featured-games::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -220px;
  right: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 65px rgba(255, 255, 255, 0.018),
    0 0 0 130px rgba(255, 255, 255, 0.012);
  pointer-events: none;
}

.featured-games::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -180px;
  left: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(176, 226, 54, 0.07);
  filter: blur(30px);
  pointer-events: none;
}


/* Wide Section Container */

.featured-games__container {
  width: min(100% - 56px, 1740px);
  margin-inline: auto;
}


/* Section Heading */

.featured-games__header {
  max-width: 940px;
  margin: 0 auto clamp(30px, 4vw, 52px);
  text-align: center;
}

.featured-games__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #c5ed52;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.featured-games__eyebrow::before,
.featured-games__eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(197, 237, 82, 0.65);
}

.featured-games__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.3rem, 4.4vw, 5.1rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.featured-games__title span {
  display: block;
  margin-top: 8px;
  color: #c5ed52;
}

.featured-games__lead {
  max-width: 760px;
  margin: 26px auto 0;
  color: rgba(240, 255, 247, 0.82);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.75;
}


/* Introductory Text */

.featured-games__intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
  max-width: 1120px;
  margin: 0 auto clamp(42px, 5vw, 72px);
}

.featured-games__intro p {
  margin: 0;
  color: rgba(238, 252, 244, 0.76);
  font-size: 1rem;
  line-height: 1.8;
}

.featured-games__intro p:first-child {
  padding-left: 22px;
  border-left: 3px solid #c5ed52;
}


/* Games Grid: Six Cards Per Row */

.featured-games__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 1.45vw, 25px);
  width: 100%;
}


/* Game Card */

.featured-games__card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    0 18px 38px rgba(0, 25, 20, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.featured-games__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    transparent 30%
  );
  pointer-events: none;
}

.featured-games__card:hover {
  z-index: 2;
  transform: translateY(-7px);
  border-color: rgba(197, 237, 82, 0.55);
  box-shadow:
    0 24px 46px rgba(0, 25, 20, 0.38),
    0 0 0 1px rgba(197, 237, 82, 0.12);
}

.featured-games__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}


/* Closing Text */

.featured-games__closing {
  max-width: 880px;
  margin: clamp(38px, 5vw, 68px) auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(238, 252, 244, 0.72);
  font-size: 0.98rem;
  line-height: 1.75;
  text-align: center;
}


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

@media (max-width: 1350px) {
  .featured-games__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .featured-games {
    padding: 80px 0;
  }

  .featured-games__container {
    width: min(100% - 36px, 1740px);
  }

  .featured-games__intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .featured-games__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .featured-games {
    padding: 68px 0;
  }

  .featured-games__container {
    width: min(100% - 24px, 1740px);
  }

  .featured-games__header {
    text-align: left;
  }

  .featured-games__eyebrow::after {
    display: none;
  }

  .featured-games__title {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .featured-games__lead {
    margin-top: 20px;
  }

  .featured-games__intro {
    margin-bottom: 34px;
  }

  .featured-games__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .featured-games__card {
    border-radius: 13px;
  }

  .featured-games__card:hover {
    transform: none;
  }

  .featured-games__closing {
    margin-top: 38px;
    text-align: left;
  }
}

@media (max-width: 380px) {
  .featured-games__grid {
    grid-template-columns: 1fr;
  }
}
/* ==================================================
   LIVE CASINO SECTION
================================================== */

.live-casino {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(70px, 7vw, 110px) 0;
  color: #173d35;
  background:
    radial-gradient(
      circle at 92% 12%,
      rgba(197, 237, 82, 0.18),
      transparent 24%
    ),
    radial-gradient(
      circle at 5% 88%,
      rgba(35, 132, 108, 0.1),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #f4f8ed 0%,
      #e9f3e5 50%,
      #f7f5e9 100%
    );
}

.live-casino::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -220px;
  right: -220px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(13, 91, 73, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(13, 91, 73, 0.02),
    0 0 0 120px rgba(13, 91, 73, 0.014);
  pointer-events: none;
}

.live-casino__container {
  width: min(calc(100% - 48px), 1320px);
  margin-inline: auto;
}


/* Main Feature */

.live-casino__feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(42px, 5vw, 72px);
  align-items: center;
}

.live-casino__content {
  min-width: 0;
  max-width: 590px;
}

.live-casino__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 17px;
  color: #0d745e;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.live-casino__eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: #ef765f;
}

.live-casino__title {
  max-width: 570px;
  margin: 0;
  color: #093f34;
  font-size: clamp(2.35rem, 3.4vw, 4.15rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.live-casino__title span {
  display: block;
  margin-top: 6px;
  color: #1a826c;
}

.live-casino__lead {
  margin: 22px 0 0;
  color: #315d53;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  font-weight: 500;
  line-height: 1.65;
}

.live-casino__description {
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.live-casino__description p {
  margin: 0;
  color: #527169;
  font-size: 0.9rem;
  line-height: 1.7;
}


/* Highlights */

.live-casino__highlights {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.live-casino__highlights li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #244f45;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
}

.live-casino__highlights svg {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  padding: 8px;
  border-radius: 50%;
  color: #0c6855;
  background: rgba(197, 237, 82, 0.36);
}


/* Main Image */

.live-casino__visual {
  position: relative;
  width: 100%;
  max-width: 650px;
  margin: 0;
  justify-self: end;
}

.live-casino__visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 20px -17px -20px 30px;
  border-radius: 25px;
  background: #c5ed52;
  opacity: 0.48;
}

.live-casino__visual::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -12px;
  width: 76px;
  height: 76px;
  border: 10px solid #ef765f;
  border-radius: 50%;
  opacity: 0.86;
  pointer-events: none;
}

.live-casino__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.86);
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(16, 68, 56, 0.18);
}


/* Categories */

.live-casino__categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(65px, 7vw, 95px);
}

.live-casino-card {
  --card-accent: #16846c;

  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
  padding: 27px 24px;
  overflow: hidden;
  border: 1px solid rgba(12, 92, 73, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 30px rgba(18, 79, 65, 0.07);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.live-casino-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -55px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: var(--card-accent);
  opacity: 0.07;
  pointer-events: none;
}

.live-casino-card:hover {
  transform: translateY(-5px);
  border-color: rgba(12, 104, 85, 0.25);
  box-shadow: 0 20px 40px rgba(18, 79, 65, 0.12);
}

.live-casino-card--roulette {
  --card-accent: #ef765f;
}

.live-casino-card--blackjack {
  --card-accent: #16846c;
}

.live-casino-card--baccarat {
  --card-accent: #8ea92d;
}

.live-casino-card--shows {
  --card-accent: #e76f51;
}

.live-casino-card--poker {
  --card-accent: #276e92;
}

.live-casino-card--guide {
  --card-accent: #7565a7;
}


/* Card Icons */

.live-casino-card__icon {
  display: grid;
  place-items: center;
  align-self: start;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #ffffff;
  background: var(--card-accent);
}

.live-casino-card__icon svg {
  width: 23px;
  height: 23px;
}


/* Card Content */

.live-casino-card__content {
  min-width: 0;
}

.live-casino-card__label {
  margin: 0 0 7px;
  color: var(--card-accent);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live-casino-card h3 {
  margin: 0;
  color: #123f35;
  font-size: clamp(1.06rem, 1.25vw, 1.25rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.live-casino-card__content > p:not(.live-casino-card__label) {
  margin: 11px 0 0;
  color: #5a756e;
  font-size: 0.83rem;
  line-height: 1.62;
}

.live-casino-card__content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.live-casino-card__content li {
  padding: 6px 9px;
  border: 1px solid rgba(12, 92, 73, 0.1);
  border-radius: 100px;
  color: #315e53;
  background: rgba(225, 240, 218, 0.75);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.2;
}


/* Closing */

.live-casino__closing {
  display: grid;
  grid-template-columns: minmax(30px, 1fr) minmax(0, 720px) minmax(30px, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: clamp(42px, 5vw, 65px);
}

.live-casino__closing span {
  height: 1px;
  background: rgba(20, 98, 80, 0.18);
}

.live-casino__closing p {
  margin: 0;
  color: #4f7068;
  font-size: 0.86rem;
  line-height: 1.65;
  text-align: center;
}


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

@media (max-width: 1080px) {
  .live-casino__feature {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 38px;
  }

  .live-casino__categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .live-casino__container {
    width: min(calc(100% - 36px), 1320px);
  }

  .live-casino__feature {
    grid-template-columns: 1fr;
  }

  .live-casino__content {
    max-width: 680px;
  }

  .live-casino__visual {
    max-width: 680px;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .live-casino {
    padding: 62px 0;
  }

  .live-casino__container {
    width: min(calc(100% - 24px), 1320px);
  }

  .live-casino__title {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .live-casino__visual::before {
    inset: 14px -7px -14px 17px;
  }

  .live-casino__visual::after {
    right: -3px;
    bottom: -8px;
    width: 55px;
    height: 55px;
    border-width: 7px;
  }

  .live-casino__visual img {
    border-width: 4px;
    border-radius: 17px;
  }

  .live-casino__categories {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 62px;
  }

  .live-casino-card {
    padding: 23px 19px;
  }

  .live-casino-card:hover {
    transform: none;
  }

  .live-casino__closing {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .live-casino__closing p {
    text-align: left;
  }
}
/* ==================================================
   JACKPOT SECTION
================================================== */

.jackpot-section {
  --jackpot-green: #0b5f4d;
  --jackpot-lime: #c7ed52;
  --jackpot-coral: #ef765f;
  --jackpot-cream: #f5f6e9;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(75px, 8vw, 120px) 0;
  color: #f7fff9;
  background:
    radial-gradient(
      circle at 85% 8%,
      rgba(199, 237, 82, 0.14),
      transparent 25%
    ),
    radial-gradient(
      circle at 5% 75%,
      rgba(239, 118, 95, 0.1),
      transparent 26%
    ),
    linear-gradient(
      145deg,
      #063d34 0%,
      #075445 50%,
      #063b34 100%
    );
}

.jackpot-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -220px;
  right: -190px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(199, 237, 82, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 65px rgba(199, 237, 82, 0.025),
    0 0 0 130px rgba(199, 237, 82, 0.015);
  pointer-events: none;
}

.jackpot-section__container {
  width: min(calc(100% - 48px), 1320px);
  margin-inline: auto;
}


/* Main Feature */

.jackpot-section__feature {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(42px, 5vw, 72px);
  align-items: center;
}

.jackpot-section__content {
  min-width: 0;
  max-width: 590px;
}

.jackpot-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--jackpot-lime);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.jackpot-section__eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--jackpot-coral);
}

.jackpot-section__title {
  max-width: 570px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 3.6vw, 4.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
}

.jackpot-section__title span {
  display: block;
  margin-top: 7px;
  color: var(--jackpot-lime);
}

.jackpot-section__lead {
  margin: 23px 0 0;
  color: rgba(241, 255, 247, 0.84);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  font-weight: 500;
  line-height: 1.68;
}

.jackpot-section__description {
  display: grid;
  gap: 14px;
  margin-top: 21px;
}

.jackpot-section__description p {
  margin: 0;
  color: rgba(229, 247, 238, 0.68);
  font-size: 0.9rem;
  line-height: 1.72;
}


/* Jackpot Notice */

.jackpot-section__notice {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-top: 25px;
  padding: 16px 18px;
  border: 1px solid rgba(199, 237, 82, 0.2);
  border-radius: 15px;
  background: rgba(199, 237, 82, 0.08);
}

.jackpot-section__notice svg {
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  color: var(--jackpot-lime);
}

.jackpot-section__notice p {
  margin: 0;
  color: rgba(242, 255, 247, 0.82);
  font-size: 0.81rem;
  font-weight: 600;
  line-height: 1.55;
}


/* Main Image */

.jackpot-section__visual {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0;
  justify-self: end;
}

.jackpot-section__visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 21px -18px -21px 30px;
  border-radius: 26px;
  background: linear-gradient(
    135deg,
    var(--jackpot-lime),
    #49b38f
  );
  opacity: 0.54;
}

.jackpot-section__visual::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -12px;
  width: 78px;
  height: 78px;
  border: 10px solid var(--jackpot-coral);
  border-radius: 50%;
  pointer-events: none;
}

.jackpot-section__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: 0 25px 55px rgba(0, 25, 20, 0.34);
}


/* ==================================================
   JACKPOT CATEGORIES
================================================== */

.jackpot-section__category-area {
  margin-top: clamp(75px, 8vw, 115px);
  padding: clamp(32px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
}

.jackpot-section__category-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 18px 55px;
  align-items: end;
  margin-bottom: 34px;
}

.jackpot-section__category-eyebrow {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--jackpot-lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.jackpot-section__category-header h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.jackpot-section__category-header > p:last-child {
  margin: 0;
  color: rgba(227, 246, 237, 0.68);
  font-size: 0.88rem;
  line-height: 1.7;
}

.jackpot-section__categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

.jackpot-category {
  --category-color: #c7ed52;

  display: grid;
  grid-template-columns: 39px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-width: 0;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(1, 35, 29, 0.3);
  transition:
    transform 200ms ease,
    background 200ms ease,
    border-color 200ms ease;
}

.jackpot-category:hover {
  transform: translateY(-3px);
  border-color: var(--category-color);
  background: rgba(1, 35, 29, 0.48);
}

.jackpot-category svg {
  width: 39px;
  height: 39px;
  padding: 9px;
  border-radius: 12px;
  color: #073e34;
  background: var(--category-color);
}

.jackpot-category p {
  margin: 2px 0 5px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
}

.jackpot-category span {
  display: block;
  color: rgba(222, 243, 233, 0.63);
  font-size: 0.69rem;
  line-height: 1.45;
}

.jackpot-category--wonder {
  --category-color: #c7ed52;
}

.jackpot-category--hot {
  --category-color: #ef765f;
}

.jackpot-category--lucky {
  --category-color: #70d6b0;
}

.jackpot-category--new {
  --category-color: #f0bf5c;
}

.jackpot-category--drops {
  --category-color: #70bde2;
}

.jackpot-category--daily {
  --category-color: #ca9ce1;
}

.jackpot-category--play {
  --category-color: #ff9f72;
}

.jackpot-category--all {
  --category-color: #98d9a4;
}


/* ==================================================
   FEATURED JACKPOT GAMES
================================================== */

.jackpot-games {
  margin-top: clamp(65px, 7vw, 100px);
}

.jackpot-games__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 35px 60px;
  align-items: end;
  margin-bottom: 30px;
}

.jackpot-games__eyebrow {
  margin: 0 0 11px;
  color: var(--jackpot-lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.jackpot-games__header h3 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.jackpot-games__header > p {
  margin: 0;
  color: rgba(227, 246, 237, 0.68);
  font-size: 0.88rem;
  line-height: 1.7;
}

.jackpot-games__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.jackpot-game {
  position: relative;
  min-width: 0;
  min-height: 126px;
  padding: 22px 20px;
  overflow: hidden;
  border: 1px solid rgba(199, 237, 82, 0.16);
  border-radius: 17px;
  background:
    linear-gradient(
      135deg,
      rgba(199, 237, 82, 0.11),
      rgba(255, 255, 255, 0.04)
    );
}

.jackpot-game::after {
  content: "◆";
  position: absolute;
  right: 14px;
  bottom: 5px;
  color: rgba(199, 237, 82, 0.1);
  font-size: 3.5rem;
  line-height: 1;
}

.jackpot-game span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 11px;
  color: var(--jackpot-lime);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.jackpot-game h4 {
  position: relative;
  z-index: 1;
  max-width: 210px;
  margin: 0;
  color: #ffffff;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.3;
}


/* ==================================================
   JACKPOT GUIDE
================================================== */

.jackpot-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(65px, 7vw, 100px);
}

.jackpot-guide__item {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 17px;
  min-width: 0;
  padding: 27px 24px;
  border-radius: 20px;
  color: #173f35;
  background: var(--jackpot-cream);
  box-shadow: 0 18px 36px rgba(0, 28, 22, 0.18);
}

.jackpot-guide__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  color: #073f34;
  background: var(--jackpot-lime);
}

.jackpot-guide__icon svg {
  width: 25px;
  height: 25px;
}

.jackpot-guide__item > div:last-child > p:first-child {
  margin: 1px 0 7px;
  color: #16806a;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.jackpot-guide__item h3 {
  margin: 0;
  color: #103f35;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.25;
}

.jackpot-guide__item > div:last-child > p:last-child {
  margin: 12px 0 0;
  color: #58726b;
  font-size: 0.82rem;
  line-height: 1.65;
}


/* Closing */

.jackpot-section__closing {
  display: grid;
  grid-template-columns: minmax(30px, 1fr) minmax(0, 760px) minmax(30px, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: clamp(48px, 6vw, 75px);
}

.jackpot-section__closing span {
  height: 1px;
  background: rgba(199, 237, 82, 0.22);
}

.jackpot-section__closing p {
  margin: 0;
  color: rgba(227, 246, 237, 0.7);
  font-size: 0.86rem;
  line-height: 1.65;
  text-align: center;
}


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

@media (max-width: 1080px) {
  .jackpot-section__categories,
  .jackpot-games__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jackpot-guide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .jackpot-section__container {
    width: min(calc(100% - 36px), 1320px);
  }

  .jackpot-section__feature {
    grid-template-columns: 1fr;
  }

  .jackpot-section__content {
    max-width: 680px;
  }

  .jackpot-section__visual {
    max-width: 680px;
    justify-self: start;
  }

  .jackpot-section__category-header,
  .jackpot-games__header {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .jackpot-section {
    padding: 62px 0;
  }

  .jackpot-section__container {
    width: min(calc(100% - 24px), 1320px);
  }

  .jackpot-section__title {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .jackpot-section__visual::before {
    inset: 14px -7px -14px 17px;
  }

  .jackpot-section__visual::after {
    right: -3px;
    bottom: -7px;
    width: 56px;
    height: 56px;
    border-width: 7px;
  }

  .jackpot-section__visual img {
    border-width: 4px;
    border-radius: 17px;
  }

  .jackpot-section__category-area {
    margin-top: 66px;
    padding: 25px 18px;
    border-radius: 21px;
  }

  .jackpot-section__categories,
  .jackpot-games__grid {
    grid-template-columns: 1fr;
  }

  .jackpot-category:hover {
    transform: none;
  }

  .jackpot-guide__item {
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 14px;
    padding: 23px 19px;
  }

  .jackpot-guide__icon {
    width: 45px;
    height: 45px;
  }

  .jackpot-section__closing {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .jackpot-section__closing p {
    text-align: left;
  }
}
/* ==================================================
   BONUS SECTION
================================================== */

.bonus-section {
  --bonus-green: #075446;
  --bonus-teal: #16816b;
  --bonus-lime: #c7ed52;
  --bonus-coral: #ef765f;
  --bonus-cream: #f5f7eb;
  --bonus-text: #173f36;
  --bonus-muted: #58736c;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(75px, 8vw, 120px) 0;
  color: var(--bonus-text);
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(199, 237, 82, 0.2),
      transparent 24%
    ),
    radial-gradient(
      circle at 4% 75%,
      rgba(239, 118, 95, 0.1),
      transparent 25%
    ),
    linear-gradient(
      145deg,
      #f7f8ee 0%,
      #eaf4e7 52%,
      #f8f4e9 100%
    );
}

.bonus-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -220px;
  right: -210px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(7, 84, 70, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 65px rgba(7, 84, 70, 0.02),
    0 0 0 130px rgba(7, 84, 70, 0.012);
  pointer-events: none;
}

.bonus-section__container {
  width: min(calc(100% - 48px), 1320px);
  margin-inline: auto;
}


/* Introduction */

.bonus-section__introduction {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(40px, 6vw, 85px);
  align-items: end;
}

.bonus-section__heading,
.bonus-section__introduction-copy {
  min-width: 0;
}

.bonus-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--bonus-teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.bonus-section__eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--bonus-coral);
}

.bonus-section__title {
  max-width: 720px;
  margin: 0;
  color: #073f35;
  font-size: clamp(2.45rem, 4vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.bonus-section__title span {
  display: block;
  margin-top: 8px;
  color: var(--bonus-teal);
}

.bonus-section__lead {
  margin: 0;
  color: #315e54;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  font-weight: 600;
  line-height: 1.68;
}

.bonus-section__introduction-copy > p:last-child {
  margin: 17px 0 0;
  color: var(--bonus-muted);
  font-size: 0.9rem;
  line-height: 1.72;
}


/* Reminder */

.bonus-section__reminder {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 40px;
  padding: 22px 25px;
  border: 1px solid rgba(7, 84, 70, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 32px rgba(20, 83, 69, 0.07);
}

.bonus-section__reminder-icon {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: #073f35;
  background: var(--bonus-lime);
}

.bonus-section__reminder-icon svg {
  width: 22px;
  height: 22px;
}

.bonus-section__reminder strong {
  display: block;
  color: #103f35;
  font-size: 0.96rem;
}

.bonus-section__reminder p {
  margin: 6px 0 0;
  color: var(--bonus-muted);
  font-size: 0.84rem;
  line-height: 1.6;
}


/* Shared Groups */

.bonus-group {
  margin-top: clamp(70px, 8vw, 110px);
}

.bonus-group__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: 30px 60px;
  align-items: end;
  margin-bottom: 30px;
}

.bonus-group__eyebrow {
  margin: 0 0 10px;
  color: var(--bonus-teal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bonus-group__header h3 {
  margin: 0;
  color: #0b4036;
  font-size: clamp(1.8rem, 2.7vw, 2.9rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.bonus-group__header > p {
  margin: 0;
  color: var(--bonus-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}


/* Welcome Bonuses */

.welcome-bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.welcome-bonus {
  --welcome-color: #16816b;

  position: relative;
  min-width: 0;
  padding: 26px 22px;
  overflow: hidden;
  border: 1px solid rgba(7, 84, 70, 0.11);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 34px rgba(20, 83, 69, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.welcome-bonus::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -50px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: var(--welcome-color);
  opacity: 0.08;
}

.welcome-bonus:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 42px rgba(20, 83, 69, 0.13);
}

.welcome-bonus--casino {
  --welcome-color: #ef765f;
}

.welcome-bonus--sports {
  --welcome-color: #16816b;
}

.welcome-bonus--crypto-casino {
  --welcome-color: #7565a7;
}

.welcome-bonus--crypto-sports {
  --welcome-color: #8ea92d;
}

.welcome-bonus__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 15px;
  color: #ffffff;
  background: var(--welcome-color);
}

.welcome-bonus__icon svg {
  width: 24px;
  height: 24px;
}

.welcome-bonus__label {
  margin: 0 0 10px;
  color: var(--welcome-color);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.welcome-bonus__value {
  position: relative;
  z-index: 1;
  display: block;
  color: #0a4036;
  font-size: clamp(1.35rem, 1.7vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.welcome-bonus__extra {
  margin: 8px 0 0;
  color: #315e54;
  font-size: 0.9rem;
  font-weight: 800;
}

.welcome-bonus__description {
  position: relative;
  z-index: 1;
  margin: 17px 0 0;
  color: var(--bonus-muted);
  font-size: 0.8rem;
  line-height: 1.58;
}


/* Reload Bonuses */

.reload-bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.reload-bonus {
  --reload-color: #16816b;

  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 84, 70, 0.12);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 16px 36px rgba(20, 83, 69, 0.08);
}

.reload-bonus--crypto {
  --reload-color: #7565a7;
}

.reload-bonus__header {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 25px;
  color: #ffffff;
  background: var(--reload-color);
}

.reload-bonus__icon {
  display: grid;
  flex: 0 0 45px;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 14px;
  color: var(--reload-color);
  background: rgba(255, 255, 255, 0.9);
}

.reload-bonus__icon svg {
  width: 23px;
  height: 23px;
}

.reload-bonus__header p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reload-bonus__header h4 {
  margin: 0;
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 800;
}

.reload-bonus__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.reload-bonus__list li {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 25px;
  border-bottom: 1px solid rgba(7, 84, 70, 0.08);
}

.reload-bonus__list li:last-child {
  border-bottom: 0;
}

.reload-bonus__list small {
  display: block;
  margin-bottom: 4px;
  color: var(--reload-color);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reload-bonus__list span {
  color: #315e54;
  font-size: 0.84rem;
  font-weight: 700;
}

.reload-bonus__list strong {
  max-width: 230px;
  color: #0d4036;
  font-size: 0.88rem;
  line-height: 1.35;
  text-align: right;
}


/* Cashback */

.cashback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.cashback-card {
  --cashback-color: #16816b;

  position: relative;
  min-width: 0;
  padding: 27px 24px;
  overflow: hidden;
  border-radius: 21px;
  color: #ffffff;
  background: var(--cashback-color);
  box-shadow: 0 17px 36px rgba(20, 83, 69, 0.13);
}

.cashback-card--live {
  --cashback-color: #ef765f;
}

.cashback-card--sports {
  --cashback-color: #276e92;
}

.cashback-card::after {
  content: "%";
  position: absolute;
  right: 13px;
  bottom: -22px;
  color: rgba(255, 255, 255, 0.1);
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
}

.cashback-card p,
.cashback-card strong,
.cashback-card span,
.cashback-card small {
  position: relative;
  z-index: 1;
}

.cashback-card p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cashback-card strong {
  display: block;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1;
}

.cashback-card span {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 800;
}

.cashback-card small {
  display: block;
  max-width: 300px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  line-height: 1.55;
}


/* Sports Rewards */

.sports-reward-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.sports-reward {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
  padding: 25px 22px;
  border: 1px solid rgba(7, 84, 70, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.sports-reward__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #073f35;
  background: var(--bonus-lime);
}

.sports-reward__icon svg {
  width: 23px;
  height: 23px;
}

.sports-reward div:last-child > p:first-child {
  margin: 1px 0 7px;
  color: var(--bonus-teal);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sports-reward h4 {
  margin: 0;
  color: #0d4036;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.25;
}

.sports-reward div:last-child > p:last-child {
  margin: 12px 0 0;
  color: var(--bonus-muted);
  font-size: 0.8rem;
  line-height: 1.62;
}


/* Cash Bomb */

.cash-bomb {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(260px, 0.58fr);
  gap: 24px;
  align-items: center;
  margin-top: clamp(70px, 8vw, 110px);
  padding: clamp(28px, 4vw, 45px);
  overflow: hidden;
  border-radius: 25px;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(199, 237, 82, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, #06483c, #08715a);
  box-shadow: 0 22px 48px rgba(20, 83, 69, 0.18);
}

.cash-bomb__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 19px;
  color: #073f35;
  background: var(--bonus-lime);
}

.cash-bomb__icon svg {
  width: 31px;
  height: 31px;
}

.cash-bomb__eyebrow {
  margin: 0 0 7px;
  color: var(--bonus-lime);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cash-bomb h3 {
  margin: 0;
  font-size: clamp(1.65rem, 2.5vw, 2.6rem);
  font-weight: 800;
}

.cash-bomb__content > p:last-child,
.cash-bomb__note p {
  margin: 11px 0 0;
  color: rgba(235, 251, 243, 0.72);
  font-size: 0.82rem;
  line-height: 1.6;
}

.cash-bomb__note {
  padding: 18px;
  border: 1px solid rgba(199, 237, 82, 0.22);
  border-radius: 16px;
  background: rgba(0, 35, 29, 0.25);
}

.cash-bomb__note strong {
  color: #ffffff;
  font-size: 0.86rem;
}


/* Bonus Terms */

.bonus-terms {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(35px, 6vw, 85px);
  margin-top: clamp(70px, 8vw, 110px);
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid rgba(7, 84, 70, 0.11);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.66);
}

.bonus-terms__eyebrow {
  margin: 0 0 10px;
  color: var(--bonus-teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bonus-terms__heading h3 {
  margin: 0;
  color: #0b4036;
  font-size: clamp(1.7rem, 2.5vw, 2.7rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.bonus-terms__heading > p:last-child {
  margin: 17px 0 0;
  color: var(--bonus-muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.bonus-terms__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bonus-terms__list li {
  padding-left: 17px;
  border-left: 3px solid var(--bonus-lime);
}

.bonus-terms__list strong {
  display: block;
  margin-bottom: 5px;
  color: #164b40;
  font-size: 0.83rem;
}

.bonus-terms__list span {
  display: block;
  color: var(--bonus-muted);
  font-size: 0.75rem;
  line-height: 1.55;
}


/* Final Notice */

.bonus-section__final-notice {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid rgba(7, 84, 70, 0.14);
}

.bonus-section__final-notice strong {
  display: grid;
  flex: 0 0 43px;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--bonus-coral);
}

.bonus-section__final-notice p {
  margin: 0;
  color: var(--bonus-muted);
  font-size: 0.76rem;
  line-height: 1.55;
}


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

@media (max-width: 1080px) {
  .welcome-bonus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sports-reward-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 850px) {
  .bonus-section__container {
    width: min(calc(100% - 36px), 1320px);
  }

  .bonus-section__introduction,
  .bonus-group__header,
  .bonus-terms {
    grid-template-columns: 1fr;
  }

  .bonus-group__header {
    gap: 17px;
  }

  .reload-bonus-grid,
  .cashback-grid {
    grid-template-columns: 1fr;
  }

  .cash-bomb {
    grid-template-columns: 55px minmax(0, 1fr);
  }

  .cash-bomb__note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .bonus-section {
    padding: 62px 0;
  }

  .bonus-section__container {
    width: min(calc(100% - 24px), 1320px);
  }

  .bonus-section__title {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .welcome-bonus-grid,
  .bonus-terms__list {
    grid-template-columns: 1fr;
  }

  .welcome-bonus:hover {
    transform: none;
  }

  .reload-bonus__list li {
    display: grid;
    gap: 8px;
  }

  .reload-bonus__list strong {
    max-width: none;
    text-align: left;
  }

  .sports-reward {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 22px 18px;
  }

  .sports-reward__icon {
    width: 44px;
    height: 44px;
  }

  .cash-bomb {
    grid-template-columns: 1fr;
  }

  .cash-bomb__note {
    grid-column: auto;
  }

  .bonus-section__final-notice {
    align-items: flex-start;
  }
}
/* ==================================================
   SPORTS SECTION — COMPACT VERSION
================================================== */

.sports-section {
  --sports-lime: #c7ed52;
  --sports-coral: #ef765f;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(70px, 7vw, 105px) 0;
  color: #f7fff9;
  background:
    radial-gradient(
      circle at 90% 8%,
      rgba(199, 237, 82, 0.12),
      transparent 23%
    ),
    linear-gradient(
      145deg,
      #062f2a 0%,
      #074f42 52%,
      #06362f 100%
    );
}

.sports-section__container {
  width: min(calc(100% - 48px), 1260px);
  margin-inline: auto;
}


/* ==================================================
   INTRODUCTION
================================================== */

.sports-section__introduction {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  gap: clamp(42px, 5vw, 70px);
  align-items: start;
}

.sports-section__content {
  min-width: 0;
  max-width: 620px;
}

.sports-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 17px;
  color: var(--sports-lime);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sports-section__eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--sports-coral);
}

.sports-section__title {
  max-width: 600px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.35rem, 3.3vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.sports-section__title span {
  display: block;
  margin-top: 6px;
  color: var(--sports-lime);
}

.sports-section__lead {
  margin: 22px 0 0;
  color: rgba(240, 255, 247, 0.84);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  font-weight: 500;
  line-height: 1.65;
}

.sports-section__description {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.sports-section__description p {
  margin: 0;
  color: rgba(224, 244, 235, 0.67);
  font-size: 0.86rem;
  line-height: 1.65;
}

.sports-section__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.sports-section__summary span {
  padding: 7px 11px;
  border: 1px solid rgba(199, 237, 82, 0.2);
  border-radius: 100px;
  color: #eaffb8;
  background: rgba(199, 237, 82, 0.08);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}


/* ==================================================
   COMPACT IMAGE
================================================== */

.sports-section__visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: clamp(400px, 34vw, 500px);
  margin: 0;
  justify-self: end;
  align-self: start;
}

.sports-section__visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 18px -16px -18px 25px;
  border-radius: 23px;
  background: var(--sports-lime);
  opacity: 0.45;
}

.sports-section__visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: 56% center;
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 21px;
  box-shadow: 0 22px 48px rgba(0, 20, 17, 0.32);
}


/* ==================================================
   SHARED SECTION HEADERS
================================================== */

.sports-section__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 28px 55px;
  align-items: end;
  margin-bottom: 28px;
}

.sports-section__header-eyebrow,
.sports-betting__eyebrow {
  margin: 0 0 9px;
  color: var(--sports-lime);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sports-section__header h3,
.sports-betting__heading h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.75rem, 2.6vw, 2.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.sports-section__header > p,
.sports-betting__heading > p:last-child {
  margin: 0;
  color: rgba(224, 244, 235, 0.67);
  font-size: 0.84rem;
  line-height: 1.65;
}


/* ==================================================
   SPORTS CATALOGUE
================================================== */

.sports-catalogue,
.sports-betting,
.sports-tools,
.sports-extended {
  margin-top: clamp(65px, 7vw, 95px);
}

.sports-catalogue__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.sport-card {
  --sport-color: #c7ed52;

  min-width: 0;
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.sport-card:hover {
  transform: translateY(-4px);
  border-color: var(--sport-color);
}

.sport-card--afl,
.sport-card--racing {
  --sport-color: #ef765f;
}

.sport-card--rugby,
.sport-card--tennis {
  --sport-color: #70d6b0;
}

.sport-card--cricket {
  --sport-color: #c7ed52;
}

.sport-card--basketball {
  --sport-color: #f0bf5c;
}

.sport-card__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 12px;
  color: #06362f;
  background: var(--sport-color);
  font-size: 1rem;
  font-weight: 900;
}

.sport-card h4 {
  margin: 0;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 800;
}

.sport-card p {
  margin: 10px 0 0;
  color: rgba(224, 244, 235, 0.64);
  font-size: 0.78rem;
  line-height: 1.6;
}

.sports-catalogue__more {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.sports-catalogue__more span {
  padding: 8px 13px;
  border-radius: 100px;
  color: #dff5eb;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.69rem;
  font-weight: 700;
}


/* ==================================================
   BETTING MODES
================================================== */

.sports-betting {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(35px, 5vw, 70px);
}

.sports-betting__grid {
  display: grid;
  gap: 12px;
}

.betting-mode {
  padding: 22px;
  border-left: 4px solid var(--sports-lime);
  border-radius: 0 17px 17px 0;
  background: rgba(255, 255, 255, 0.07);
}

.betting-mode > span {
  color: var(--sports-lime);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.betting-mode h4 {
  margin: 7px 0 0;
  color: #ffffff;
  font-size: 1.07rem;
  font-weight: 800;
}

.betting-mode p {
  margin: 10px 0 0;
  color: rgba(224, 244, 235, 0.65);
  font-size: 0.78rem;
  line-height: 1.6;
}


/* ==================================================
   SPORTSBOOK TOOLS
================================================== */

.sports-tools__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sports-tool {
  min-width: 0;
  padding: 22px 19px;
  border-radius: 18px;
  color: #173f36;
  background: #f4f7e9;
}

.sports-tool__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 13px;
  color: #074f42;
  background: var(--sports-lime);
}

.sports-tool__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sports-tool h4 {
  margin: 0;
  color: #103f35;
  font-size: 0.98rem;
  font-weight: 800;
}

.sports-tool p {
  margin: 10px 0 0;
  color: #5a756e;
  font-size: 0.74rem;
  line-height: 1.58;
}


/* ==================================================
   EXTENDED COVERAGE
================================================== */

.sports-extended {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.sports-extended__item {
  padding: 25px 22px;
  border: 1px solid rgba(199, 237, 82, 0.16);
  border-radius: 18px;
  background: rgba(199, 237, 82, 0.07);
}

.sports-extended__item > span {
  color: var(--sports-lime);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sports-extended__item h3 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 800;
}

.sports-extended__item p {
  margin: 11px 0 0;
  color: rgba(224, 244, 235, 0.65);
  font-size: 0.77rem;
  line-height: 1.6;
}


/* Notice */

.sports-section__notice {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 38px;
  padding-top: 23px;
  border-top: 1px solid rgba(199, 237, 82, 0.18);
}

.sports-section__notice strong {
  display: grid;
  flex: 0 0 41px;
  place-items: center;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--sports-coral);
}

.sports-section__notice p {
  margin: 0;
  color: rgba(224, 244, 235, 0.66);
  font-size: 0.73rem;
  line-height: 1.52;
}


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

@media (max-width: 1050px) {
  .sports-section__introduction {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  }

  .sports-section__visual {
    max-width: 500px;
    height: 440px;
  }

  .sports-catalogue__grid,
  .sports-extended {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sports-tools__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .sports-section__container {
    width: min(calc(100% - 36px), 1260px);
  }

  .sports-section__introduction,
  .sports-section__header,
  .sports-betting {
    grid-template-columns: 1fr;
  }

  .sports-section__visual {
    width: 100%;
    max-width: 620px;
    height: auto;
    aspect-ratio: 3 / 2;
    justify-self: start;
  }

  .sports-section__visual img {
    max-height: none;
  }

  .sports-section__header,
  .sports-betting {
    gap: 19px;
  }
}

@media (max-width: 580px) {
  .sports-section {
    padding: 60px 0;
  }

  .sports-section__container {
    width: min(calc(100% - 24px), 1260px);
  }

  .sports-section__title {
    font-size: clamp(2.2rem, 11vw, 3.15rem);
  }

  .sports-section__visual::before {
    inset: 12px -6px -12px 15px;
  }

  .sports-section__visual img {
    border-width: 4px;
    border-radius: 16px;
  }

  .sports-catalogue__grid,
  .sports-tools__grid,
  .sports-extended {
    grid-template-columns: 1fr;
  }

  .sport-card:hover {
    transform: none;
  }

  .sports-section__notice {
    align-items: flex-start;
  }
}
/* ==================================================
   PAYMENTS SECTION — BRAND COLOUR DESIGN
================================================== */

.lott-payments {
  --payment-dark: #151824;
  --payment-dark-soft: #202433;
  --payment-ivory: #f8f6ef;
  --payment-ivory-alt: #efede7;
  --payment-text: #202634;
  --payment-muted: #727783;
  --payment-coral: #ef765f;
  --payment-lime: #c7ed52;
  --payment-purple: #7968b5;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(75px, 8vw, 115px) 0;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(104, 117, 222, 0.25),
      transparent 25%
    ),
    radial-gradient(
      circle at 7% 82%,
      rgba(239, 118, 95, 0.2),
      transparent 27%
    ),
    radial-gradient(
      circle at 55% 105%,
      rgba(121, 104, 181, 0.18),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #121520 0%,
      #202433 52%,
      #171a26 100%
    );
}

.lott-payments::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -240px;
  right: -190px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 65px rgba(255, 255, 255, 0.018),
    0 0 0 130px rgba(255, 255, 255, 0.01);
  pointer-events: none;
}

.lott-payments__container {
  width: min(calc(100% - 48px), 1240px);
  margin-inline: auto;
}


/* ==================================================
   INTRODUCTION
================================================== */

.lott-payments__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: clamp(40px, 6vw, 76px);
  align-items: end;
}

.lott-payments__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 17px;
  color: #ff9d89;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lott-payments__eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--payment-lime);
}

.lott-payments__title {
  max-width: 690px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.35rem, 3.6vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.047em;
}

.lott-payments__title span {
  display: block;
  margin-top: 7px;
  color: #b7adf0;
}

.lott-payments__intro-copy p {
  margin: 0;
  color: rgba(244, 245, 250, 0.76);
  font-size: 0.94rem;
  line-height: 1.68;
}

.lott-payments__intro-copy p + p {
  margin-top: 14px;
  color: rgba(226, 228, 237, 0.55);
  font-size: 0.82rem;
}


/* ==================================================
   SWITCHER
================================================== */

.lott-payments__switcher {
  margin-top: clamp(48px, 6vw, 70px);
}

.lott-payments__radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.lott-payments__tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 680px;
  margin: 0 auto 18px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.lott-payments__tab {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 17px;
  border-radius: 13px;
  color: rgba(237, 238, 244, 0.64);
  cursor: pointer;
  transition:
    color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

.lott-payments__tab-icon {
  display: grid;
  flex: 0 0 36px;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  font-size: 1.12rem;
  font-weight: 900;
}

.lott-payments__tab strong {
  display: block;
  font-size: 0.86rem;
}

.lott-payments__tab small {
  display: block;
  margin-top: 3px;
  color: inherit;
  font-size: 0.66rem;
  opacity: 0.7;
}

#lott-payment-deposit:checked
  ~ .lott-payments__tabs
  .lott-payments__tab--deposit {
  color: #ffffff;
  background: linear-gradient(135deg, #e96461, #ef9369);
  box-shadow: 0 10px 25px rgba(233, 100, 97, 0.25);
}

#lott-payment-withdrawal:checked
  ~ .lott-payments__tabs
  .lott-payments__tab--withdrawal {
  color: #ffffff;
  background: linear-gradient(135deg, #6358a8, #8b78d0);
  box-shadow: 0 10px 25px rgba(99, 88, 168, 0.28);
}

#lott-payment-deposit:checked
  ~ .lott-payments__tabs
  .lott-payments__tab--deposit
  .lott-payments__tab-icon,
#lott-payment-withdrawal:checked
  ~ .lott-payments__tabs
  .lott-payments__tab--withdrawal
  .lott-payments__tab-icon {
  color: #202433;
  background: #ffffff;
}


/* ==================================================
   PANELS
================================================== */

.lott-payments__panels {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: var(--payment-ivory);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.3);
}

.lott-payments__panel {
  display: none;
}

#lott-payment-deposit:checked
  ~ .lott-payments__panels
  .lott-payments__panel--deposit,
#lott-payment-withdrawal:checked
  ~ .lott-payments__panels
  .lott-payments__panel--withdrawal {
  display: block;
}


/* Panel Header */

.lott-payments__panel-head {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding: 27px 30px;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(255, 255, 255, 0.1),
      transparent 30%
    ),
    linear-gradient(
      125deg,
      #292d3d 0%,
      #3d4055 58%,
      #665b9c 100%
    );
}

.lott-payments__panel-head p {
  margin: 0 0 5px;
  color: #ffad98;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lott-payments__panel-head h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  font-weight: 800;
}

.lott-payments__panel-head > span {
  max-width: 340px;
  color: rgba(242, 243, 248, 0.68);
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: right;
}


/* ==================================================
   PAYMENT GROUPS
================================================== */

.lott-payments__group {
  padding: 30px;
  color: var(--payment-text);
  background: var(--payment-ivory);
}

.lott-payments__group + .lott-payments__group {
  border-top: 1px solid rgba(34, 39, 52, 0.09);
}

.lott-payments__group--crypto {
  background:
    radial-gradient(
      circle at 90% 8%,
      rgba(104, 117, 222, 0.1),
      transparent 26%
    ),
    var(--payment-ivory-alt);
}

.lott-payments__group-heading {
  display: flex;
  gap: 25px;
  align-items: end;
  justify-content: space-between;
}

.lott-payments__group-heading h3 {
  margin: 0;
  color: #252a38;
  font-size: 1.08rem;
  font-weight: 800;
}

.lott-payments__group-heading p {
  max-width: 540px;
  margin: 0;
  color: var(--payment-muted);
  font-size: 0.7rem;
  line-height: 1.5;
  text-align: right;
}


/* ==================================================
   PAYMENT METHOD CARDS
================================================== */

.lott-payments__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin-top: 21px;
}

.lott-payment-method {
  --brand-color: #6875de;
  --brand-background: linear-gradient(135deg, #343b76, #6875de);

  position: relative;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-width: 0;
  min-height: 94px;
  padding: 11px;
  overflow: hidden;
  border: 1px solid rgba(34, 39, 52, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(30, 34, 46, 0.06);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.lott-payment-method::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--brand-color);
}

.lott-payment-method:hover {
  transform: translateY(-4px);
  border-color: var(--brand-color);
  box-shadow: 0 15px 29px rgba(30, 34, 46, 0.11);
}


/* ==================================================
   INDIVIDUAL BRAND COLOURS
================================================== */

/* Visa and Mastercard */

.lott-payment-method:has(img[src$="card.svg"]) {
  --brand-color: #334ea0;
  --brand-background: linear-gradient(135deg, #17295c, #334ea0);
}


/* Apple Pay */

.lott-payment-method:has(.lott-payment-method__logo--apple) {
  --brand-color: #171717;
  --brand-background: #ffffff;
}


/* Google Pay */

.lott-payment-method:has(.lott-payment-method__logo--google) {
  --brand-color: #4285f4;
  --brand-background: #ffffff;
}


/* PayPal */

.lott-payment-method:has(.lott-payment-method__logo--paypal) {
  --brand-color: #179bd7;
  --brand-background: #eef8ff;
}


/* Skrill */

.lott-payment-method:has(img[src$="skrill.svg"]) {
  --brand-color: #c551b7;
  --brand-background: linear-gradient(135deg, #6d2867, #a8449c);
}


/* Neteller */

.lott-payment-method:has(img[src$="neteller.svg"]) {
  --brand-color: #83ba3b;
  --brand-background: linear-gradient(135deg, #eff8dc, #dcefb7);
}


/* Open Banking and Bank Transfer */

.lott-payment-method:has(img[src$="bank.svg"]) {
  --brand-color: #1c89b8;
  --brand-background: linear-gradient(135deg, #15607f, #2a9bc5);
}


/* CashToCode */

.lott-payment-method:has(img[src$="cash2code.svg"]) {
  --brand-color: #f08b47;
  --brand-background: linear-gradient(135deg, #c85e35, #f39a52);
}


/* Bitcoin */

.lott-payment-method:has(img[src$="bitcoin.svg"]),
.lott-payment-method:has(img[src$="btc.svg"]) {
  --brand-color: #f7931a;
  --brand-background: linear-gradient(135deg, #8d5311, #f7931a);
}


/* Ethereum */

.lott-payment-method:has(img[src$="ethereum.svg"]),
.lott-payment-method:has(img[src$="eth.svg"]) {
  --brand-color: #6875de;
  --brand-background: linear-gradient(135deg, #343b76, #6875de);
}


/* Tether */

.lott-payment-method:has(img[src$="usdt.svg"]),
.lott-payment-method:has(img[src$="usdt-trc20.svg"]),
.lott-payment-method:has(img[src$="usdt-bep20.svg"]),
.lott-payment-method:has(img[src$="usdt-sol.svg"]) {
  --brand-color: #26a17b;
  --brand-background: linear-gradient(135deg, #147258, #26a17b);
}


/* Litecoin */

.lott-payment-method:has(img[src$="ltc.svg"]) {
  --brand-color: #8c9da8;
  --brand-background: linear-gradient(135deg, #4d606b, #8497a2);
}


/* Solana */

.lott-payment-method:has(img[src$="sol.svg"]) {
  --brand-color: #14f195;
  --brand-background: linear-gradient(
    135deg,
    #372866,
    #1a8f8b 55%,
    #14f195
  );
}


/* USD Coin */

.lott-payment-method:has(img[src$="usdc.svg"]),
.lott-payment-method:has(img[src$="usdc-sol.svg"]) {
  --brand-color: #2775ca;
  --brand-background: linear-gradient(135deg, #194d8e, #2775ca);
}


/* BNB */

.lott-payment-method:has(img[src$="bnb.svg"]) {
  --brand-color: #f3ba2f;
  --brand-background: linear-gradient(135deg, #9e7414, #f3ba2f);
}


/* Dogecoin */

.lott-payment-method:has(img[src$="doge.svg"]) {
  --brand-color: #c2a633;
  --brand-background: linear-gradient(135deg, #78681f, #c2a633);
}


/* ==================================================
   LOGO DISPLAY
================================================== */

.lott-payment-method__logo {
  display: grid;
  place-items: center;
  width: 94px;
  height: 62px;
  overflow: hidden;
  border: 1px solid rgba(34, 39, 52, 0.07);
  border-radius: 12px;
  color: #171717;
  background: var(--brand-background);
}

.lott-payment-method__logo img {
  display: block;
  width: 86px;
  height: 45px;
  object-fit: contain;
}

.lott-payment-method__logo svg {
  display: block;
  width: 86px;
  height: 44px;
}

.lott-payment-method__logo--apple,
.lott-payment-method__logo--google {
  color: #171717;
  background: #ffffff;
}

.lott-payment-method__logo--paypal {
  color: #253b80;
  background: #eef8ff;
}


/* Neteller logo needs darker artwork on light green */

.lott-payment-method:has(img[src$="neteller.svg"])
  .lott-payment-method__logo img {
  width: 82px;
}


/* ==================================================
   METHOD TEXT
================================================== */

.lott-payment-method__copy {
  min-width: 0;
}

.lott-payment-method__copy strong {
  display: block;
  color: #252a38;
  font-size: 0.75rem;
  line-height: 1.3;
}

.lott-payment-method__copy span {
  display: block;
  margin-top: 4px;
  color: #7a7f89;
  font-size: 0.63rem;
  line-height: 1.3;
}


/* ==================================================
   FINAL NOTE
================================================== */

.lott-payments__note {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.16);
}

.lott-payments__note strong {
  display: grid;
  flex: 0 0 33px;
  place-items: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--payment-coral);
}

.lott-payments__note p {
  margin: 0;
  color: rgba(231, 233, 240, 0.64);
  font-size: 0.7rem;
  line-height: 1.48;
}


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

@media (max-width: 1080px) {
  .lott-payments__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .lott-payments__container {
    width: min(calc(100% - 36px), 1240px);
  }

  .lott-payments__intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lott-payments__group-heading {
    display: grid;
    gap: 7px;
  }

  .lott-payments__group-heading p {
    text-align: left;
  }
}

@media (max-width: 580px) {
  .lott-payments {
    padding: 60px 0;
  }

  .lott-payments__container {
    width: min(calc(100% - 24px), 1240px);
  }

  .lott-payments__title {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
  }

  .lott-payments__tabs {
    grid-template-columns: 1fr;
  }

  .lott-payments__panel-head {
    display: grid;
    gap: 9px;
    padding: 22px 19px;
  }

  .lott-payments__panel-head > span {
    max-width: none;
    text-align: left;
  }

  .lott-payments__group {
    padding: 24px 17px;
  }

  .lott-payments__grid {
    grid-template-columns: 1fr;
  }

  .lott-payment-method {
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .lott-payment-method:hover {
    transform: none;
  }
}
/* ==================================================
                         ABOUT START
================================================== */

.lott-about {
  --about-ink: #103f37;
  --about-ink-soft: #466b64;
  --about-green: #07584b;
  --about-green-dark: #043d35;
  --about-lime: #c8ef42;
  --about-cream: #f7f6eb;
  --about-white: #ffffff;
  --about-line: rgba(16, 63, 55, 0.13);
  --about-shadow: 0 22px 60px rgba(9, 55, 47, 0.1);

  position: relative;
  overflow: hidden;
  padding: clamp(80px, 8vw, 128px) 24px;
  color: var(--about-ink);
  background:
    radial-gradient(
      circle at 92% 7%,
      rgba(200, 239, 66, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 5% 85%,
      rgba(41, 181, 178, 0.12),
      transparent 27%
    ),
    linear-gradient(135deg, #f9f8ef 0%, #f2f6e9 100%);
  isolation: isolate;
}

.lott-about::before {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(7, 88, 75, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(7, 88, 75, 0.025),
    0 0 0 140px rgba(7, 88, 75, 0.018);
  content: "";
  pointer-events: none;
  z-index: -1;
}

.lott-about *,
.lott-about *::before,
.lott-about *::after {
  box-sizing: border-box;
}

.lott-about__container {
  width: min(100%, 1440px);
  margin: 0 auto;
}


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

.lott-about__header {
  width: min(100%, 900px);
  margin: 0 auto clamp(46px, 6vw, 76px);
  text-align: center;
}

.lott-about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #087365;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lott-about__eyebrow::before,
.lott-about__eyebrow::after {
  width: 34px;
  height: 2px;
  border-radius: 50px;
  background: #ef765d;
  content: "";
}

.lott-about__header h2 {
  max-width: 850px;
  margin: 0 auto 22px;
  color: var(--about-green-dark);
  font-size: clamp(42px, 5.4vw, 76px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.lott-about__header p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--about-ink-soft);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.75;
}


/* Main Story and Image
================================================== */

.lott-about__showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
  margin-bottom: clamp(62px, 7vw, 96px);
}

.lott-about__story {
  min-width: 0;
}

.lott-about__label {
  display: inline-block;
  margin-bottom: 17px;
  color: #087365;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lott-about__story h3 {
  max-width: 680px;
  margin: 0 0 25px;
  color: var(--about-green-dark);
  font-size: clamp(34px, 3.6vw, 55px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.lott-about__story p {
  margin: 0 0 18px;
  color: var(--about-ink-soft);
  font-size: 16px;
  line-height: 1.78;
}

.lott-about__story .lott-about__lead {
  color: var(--about-ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.68;
}

.lott-about__quick-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 29px;
}

.lott-about__quick-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px 8px 9px;
  border: 1px solid rgba(7, 88, 75, 0.14);
  border-radius: 999px;
  color: var(--about-green-dark);
  background: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 7px 18px rgba(7, 61, 53, 0.05);
}

.lott-about__quick-points svg {
  width: 23px;
  height: 23px;
  padding: 5px;
  border-radius: 50%;
  color: var(--about-green-dark);
  background: var(--about-lime);
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}


/* About Image
================================================== */

.lott-about__visual {
  position: relative;
  width: 100%;
  max-width: 650px;
  margin: 0;
  justify-self: end;
}

.lott-about__image-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 2;
  border: 9px solid rgba(255, 255, 255, 0.96);
  border-radius: 32px;
  background: #dbe8df;
  box-shadow: var(--about-shadow);
}

.lott-about__image-frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      transparent 58%,
      rgba(3, 47, 40, 0.17) 100%
    );
  content: "";
  pointer-events: none;
}

.lott-about__image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lott-about__image-accent {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  width: 68px;
  height: 68px;
  border: 11px solid #ef765d;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 25px rgba(3, 47, 40, 0.18);
}

.lott-about__visual::before {
  position: absolute;
  right: -25px;
  bottom: -27px;
  width: 78%;
  height: 84%;
  border-radius: 32px;
  background:
    linear-gradient(
      145deg,
      rgba(200, 239, 66, 0.92),
      rgba(34, 154, 137, 0.72)
    );
  content: "";
  z-index: -1;
}

.lott-about__visual figcaption {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 19px 0 0 14px;
  color: var(--about-ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.lott-about__visual figcaption::before {
  width: 23px;
  height: 2px;
  border-radius: 20px;
  background: #ef765d;
  content: "";
}


/* Advantages
================================================== */

.lott-about__advantages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: clamp(66px, 7vw, 98px);
}

.lott-about-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--about-line);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(8, 56, 48, 0.065);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.lott-about-card::after {
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: var(--card-accent-soft);
  content: "";
  pointer-events: none;
}

.lott-about-card:hover {
  transform: translateY(-5px);
  border-color: var(--card-accent);
  box-shadow: 0 20px 46px rgba(8, 56, 48, 0.11);
}

.lott-about-card__icon {
  display: inline-grid;
  width: 56px;
  height: 56px;
  margin-bottom: 23px;
  border-radius: 17px;
  color: var(--card-icon-color, var(--about-green-dark));
  background: var(--card-accent-soft);
  place-items: center;
}

.lott-about-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lott-about-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 13px;
  color: var(--about-green-dark);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.015em;
}

.lott-about-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--about-ink-soft);
  font-size: 15px;
  line-height: 1.68;
}

.lott-about-card--lime {
  --card-accent: #9fca16;
  --card-accent-soft: #e7f5b8;
}

.lott-about-card--coral {
  --card-accent: #ef765d;
  --card-accent-soft: #ffe0d9;
  --card-icon-color: #9f3f2e;
}

.lott-about-card--gold {
  --card-accent: #d9a72e;
  --card-accent-soft: #fae9b8;
  --card-icon-color: #8b6511;
}

.lott-about-card--blue {
  --card-accent: #4f8dd8;
  --card-accent-soft: #dceafd;
  --card-icon-color: #255a9a;
}

.lott-about-card--violet {
  --card-accent: #8d6fd1;
  --card-accent-soft: #e8e0fa;
  --card-icon-color: #5c4394;
}

.lott-about-card--cyan {
  --card-accent: #28aaa4;
  --card-accent-soft: #d5f2ef;
  --card-icon-color: #086e69;
}


/* Anchor Navigation
================================================== */

.lott-about__explore {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(30px, 5vw, 70px);
  padding: clamp(34px, 5vw, 58px);
  border-radius: 34px;
  color: var(--about-white);
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(200, 239, 66, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, #043d35 0%, #07584b 100%);
  box-shadow: 0 26px 60px rgba(4, 61, 53, 0.18);
}

.lott-about__explore-copy > span {
  display: block;
  margin-bottom: 14px;
  color: var(--about-lime);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lott-about__explore-copy h3 {
  margin: 0 0 17px;
  color: var(--about-white);
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lott-about__explore-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
}

.lott-about__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lott-about-link {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  color: var(--about-white);
  background: rgba(255, 255, 255, 0.075);
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.lott-about-link:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 239, 66, 0.5);
  background: rgba(255, 255, 255, 0.13);
}

.lott-about-link:focus-visible {
  outline: 3px solid var(--about-lime);
  outline-offset: 3px;
}

.lott-about-link__icon {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--about-green-dark);
  background: var(--about-lime);
  place-items: center;
}

.lott-about-link__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lott-about-link > span:nth-child(2) {
  min-width: 0;
}

.lott-about-link strong,
.lott-about-link small {
  display: block;
}

.lott-about-link strong {
  margin-bottom: 4px;
  color: var(--about-white);
  font-size: 15px;
  font-weight: 800;
}

.lott-about-link small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lott-about-link__arrow {
  color: var(--about-lime);
  font-size: 23px;
  line-height: 1;
  transition: transform 180ms ease;
}

.lott-about-link:hover .lott-about-link__arrow {
  transform: translateX(4px);
}


/* Closing Note
================================================== */

.lott-about__note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 1040px;
  margin: 30px auto 0;
  padding: 20px 24px;
  border: 1px solid rgba(7, 88, 75, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
}

.lott-about__note-icon {
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--about-green-dark);
  background: var(--about-lime);
  place-items: center;
  flex: 0 0 auto;
}

.lott-about__note-icon svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lott-about__note p {
  margin: 1px 0 0;
  color: var(--about-ink-soft);
  font-size: 13px;
  line-height: 1.65;
}


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

@media (max-width: 1100px) {
  .lott-about__showcase {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 42px;
  }

  .lott-about__advantages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lott-about__explore {
    grid-template-columns: 1fr;
  }

  .lott-about__explore-copy {
    max-width: 660px;
  }
}

@media (max-width: 820px) {
  .lott-about {
    padding-right: 20px;
    padding-left: 20px;
  }

  .lott-about__showcase {
    grid-template-columns: 1fr;
  }

  .lott-about__visual {
    max-width: 680px;
    justify-self: center;
  }

  .lott-about__image-frame {
    aspect-ratio: 16 / 10;
  }

  .lott-about__visual::before {
    right: -15px;
    bottom: -18px;
  }

  .lott-about__links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .lott-about {
    padding: 68px 16px;
  }

  .lott-about__header {
    margin-bottom: 44px;
    text-align: left;
  }

  .lott-about__eyebrow::after {
    display: none;
  }

  .lott-about__header h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .lott-about__header p {
    font-size: 16px;
    line-height: 1.65;
  }

  .lott-about__story h3 {
    font-size: 35px;
  }

  .lott-about__story .lott-about__lead {
    font-size: 17px;
  }

  .lott-about__story p {
    font-size: 15px;
    line-height: 1.7;
  }

  .lott-about__quick-points {
    align-items: stretch;
    flex-direction: column;
  }

  .lott-about__quick-points span {
    width: 100%;
  }

  .lott-about__image-frame {
    aspect-ratio: 4 / 3;
    border-width: 6px;
    border-radius: 23px;
  }

  .lott-about__image-frame img {
    object-position: 56% center;
  }

  .lott-about__visual::before {
    display: none;
  }

  .lott-about__image-accent {
    right: 13px;
    bottom: 13px;
    width: 50px;
    height: 50px;
    border-width: 8px;
  }

  .lott-about__advantages {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lott-about-card {
    min-height: 0;
    padding: 25px;
  }

  .lott-about__explore {
    padding: 29px 20px;
    border-radius: 25px;
  }

  .lott-about-link {
    grid-template-columns: 45px minmax(0, 1fr) auto;
    gap: 11px;
    padding: 13px;
  }

  .lott-about-link__icon {
    width: 45px;
    height: 45px;
  }

  .lott-about-link small {
    white-space: normal;
  }

  .lott-about__note {
    padding: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lott-about-card,
  .lott-about-link,
  .lott-about-link__arrow {
    transition: none;
  }
}

/* ==================================================
                          ABOUT END
================================================== */
/* ==================================================
        ABOUT — TEXT AND IMAGE HEIGHT CORRECTION
   Добавить в самый конец файла style.css
================================================== */

.lott-about {
  scroll-margin-top: 90px;
}

@media (min-width: 821px) {

  .lott-about__showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: clamp(46px, 5vw, 76px);
  }

  .lott-about__story {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .lott-about__visual {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-self: stretch;
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .lott-about__image-frame {
    width: 100%;
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
  }

  .lott-about__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 54% center;
  }

  .lott-about__visual figcaption {
    min-height: 44px;
    margin: 17px 0 0 14px;
  }

  .lott-about__quick-points {
    margin-top: auto;
    padding-top: 28px;
  }
}


/* На планшете и телефоне блоки снова располагаются вертикально */

@media (max-width: 820px) {

  .lott-about__showcase {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .lott-about__story,
  .lott-about__visual {
    display: block;
    height: auto;
  }

  .lott-about__image-frame {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .lott-about__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 54% center;
  }
}

@media (max-width: 620px) {

  .lott-about__image-frame {
    aspect-ratio: 4 / 3;
  }
}
/* ==================================================
                         FAQ START
================================================== */

.lott-faq {
  --faq-ink: #073f36;
  --faq-text: #496b65;
  --faq-green: #07594c;
  --faq-dark: #033a32;
  --faq-lime: #c9f044;
  --faq-coral: #f07860;
  --faq-cream: #f6f5e9;
  --faq-white: #ffffff;
  --faq-line: rgba(7, 63, 54, 0.13);

  position: relative;
  overflow: hidden;
  padding: clamp(80px, 8vw, 126px) 24px;
  scroll-margin-top: 90px;
  color: var(--faq-ink);
  background:
    radial-gradient(
      circle at 6% 16%,
      rgba(240, 120, 96, 0.11),
      transparent 24%
    ),
    radial-gradient(
      circle at 95% 88%,
      rgba(201, 240, 68, 0.18),
      transparent 27%
    ),
    linear-gradient(145deg, #f9f7ef 0%, #f0f5e8 100%);
  isolation: isolate;
}

.lott-faq::before {
  position: absolute;
  top: -160px;
  right: -170px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(7, 89, 76, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(7, 89, 76, 0.022),
    0 0 0 140px rgba(7, 89, 76, 0.014);
  content: "";
  pointer-events: none;
  z-index: -1;
}

.lott-faq *,
.lott-faq *::before,
.lott-faq *::after {
  box-sizing: border-box;
}

.lott-faq__container {
  width: min(100%, 1420px);
  margin: 0 auto;
}


/* FAQ Header
================================================== */

.lott-faq__header {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: clamp(36px, 6vw, 90px);
  margin-bottom: clamp(48px, 6vw, 76px);
}

.lott-faq__eyebrow {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  margin-bottom: -18px;
  color: #087567;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lott-faq__eyebrow::before {
  width: 36px;
  height: 2px;
  border-radius: 20px;
  background: var(--faq-coral);
  content: "";
}

.lott-faq__header h2 {
  margin: 0;
  color: var(--faq-dark);
  font-size: clamp(43px, 5.4vw, 76px);
  font-weight: 800;
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.lott-faq__header h2 strong {
  display: block;
  color: #168878;
  font-weight: inherit;
}

.lott-faq__header > p {
  max-width: 530px;
  margin: 0 0 6px;
  color: var(--faq-text);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.72;
}


/* FAQ Main Layout
================================================== */

.lott-faq__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: clamp(36px, 6vw, 86px);
}


/* FAQ Introduction
================================================== */

.lott-faq__intro {
  position: sticky;
  top: 112px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 48px);
  border-radius: 30px;
  color: var(--faq-white);
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(201, 240, 68, 0.22),
      transparent 28%
    ),
    linear-gradient(145deg, #043d35 0%, #08705f 100%);
  box-shadow: 0 24px 58px rgba(4, 61, 53, 0.17);
}

.lott-faq__intro::before {
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 36px solid rgba(201, 240, 68, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.lott-faq__intro::after {
  position: absolute;
  right: 32px;
  bottom: 29px;
  width: 54px;
  height: 54px;
  border: 9px solid var(--faq-coral);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.lott-faq__intro-label {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 17px;
  color: var(--faq-lime);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lott-faq__intro h3 {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: 0 0 24px;
  color: var(--faq-white);
  font-size: clamp(31px, 3.4vw, 49px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.lott-faq__intro > p {
  position: relative;
  z-index: 1;
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.72;
}

.lott-faq__intro-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 29px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.lott-faq__intro-icon {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--faq-dark);
  background: var(--faq-lime);
  place-items: center;
  flex: 0 0 auto;
}

.lott-faq__intro-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lott-faq__intro-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.58;
}


/* FAQ Accordion
================================================== */

.lott-faq__accordion {
  display: grid;
  gap: 12px;
}

.lott-faq__item {
  overflow: hidden;
  border: 1px solid var(--faq-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 9px 25px rgba(7, 63, 54, 0.045);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.lott-faq__item:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 89, 76, 0.24);
  box-shadow: 0 14px 32px rgba(7, 63, 54, 0.075);
}

.lott-faq__item[open] {
  border-color: rgba(7, 89, 76, 0.32);
  background: var(--faq-white);
  box-shadow: 0 17px 40px rgba(7, 63, 54, 0.09);
}

.lott-faq__item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
  gap: 22px;
  min-height: 82px;
  padding: 18px 20px 18px 25px;
  color: var(--faq-ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.lott-faq__item summary::-webkit-details-marker {
  display: none;
}

.lott-faq__item summary::marker {
  display: none;
  content: "";
}

.lott-faq__item summary:focus-visible {
  outline: 3px solid var(--faq-lime);
  outline-offset: -4px;
  border-radius: 18px;
}

.lott-faq__question {
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 800;
  line-height: 1.38;
  letter-spacing: -0.012em;
}

.lott-faq__toggle {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(7, 89, 76, 0.13);
  border-radius: 14px;
  color: var(--faq-green);
  background: #edf4e6;
  place-items: center;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 240ms ease;
}

.lott-faq__toggle svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lott-faq__item summary:hover .lott-faq__toggle {
  color: var(--faq-dark);
  border-color: var(--faq-lime);
  background: var(--faq-lime);
}

.lott-faq__item[open] .lott-faq__toggle {
  color: var(--faq-dark);
  border-color: var(--faq-lime);
  background: var(--faq-lime);
  transform: rotate(180deg);
}


/* FAQ Answer
================================================== */

.lott-faq__answer {
  position: relative;
  padding: 0 82px 25px 25px;
}

.lott-faq__answer::before {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 19px;
  background:
    linear-gradient(
      90deg,
      rgba(7, 89, 76, 0.17),
      rgba(7, 89, 76, 0)
    );
  content: "";
}

.lott-faq__answer p {
  max-width: 760px;
  margin: 0;
  color: var(--faq-text);
  font-size: 15px;
  line-height: 1.72;
}

.lott-faq__item[open] .lott-faq__answer {
  animation: lott-faq-answer-in 220ms ease-out;
}

@keyframes lott-faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


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

@media (max-width: 1050px) {
  .lott-faq__header {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .lott-faq__eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .lott-faq__header > p {
    max-width: 760px;
  }

  .lott-faq__layout {
    grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
    gap: 30px;
  }

  .lott-faq__intro {
    padding: 30px;
  }

  .lott-faq__intro h3 {
    font-size: 34px;
  }
}

@media (max-width: 820px) {
  .lott-faq {
    padding-right: 20px;
    padding-left: 20px;
  }

  .lott-faq__layout {
    grid-template-columns: 1fr;
  }

  .lott-faq__intro {
    position: relative;
    top: auto;
  }

  .lott-faq__intro h3 {
    max-width: 620px;
  }

  .lott-faq__intro > p {
    max-width: 720px;
  }
}

@media (max-width: 620px) {
  .lott-faq {
    padding: 68px 16px;
  }

  .lott-faq__header {
    margin-bottom: 38px;
  }

  .lott-faq__header h2 {
    font-size: clamp(39px, 12vw, 53px);
  }

  .lott-faq__header > p {
    font-size: 16px;
    line-height: 1.65;
  }

  .lott-faq__intro {
    padding: 27px 22px;
    border-radius: 24px;
  }

  .lott-faq__intro h3 {
    font-size: 32px;
  }

  .lott-faq__intro::after {
    display: none;
  }

  .lott-faq__item {
    border-radius: 17px;
  }

  .lott-faq__item summary {
    grid-template-columns: minmax(0, 1fr) 39px;
    gap: 13px;
    min-height: 75px;
    padding: 16px 14px 16px 18px;
  }

  .lott-faq__question {
    font-size: 16px;
  }

  .lott-faq__toggle {
    width: 39px;
    height: 39px;
    border-radius: 12px;
  }

  .lott-faq__answer {
    padding: 0 18px 21px;
  }

  .lott-faq__answer p {
    font-size: 14px;
    line-height: 1.68;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lott-faq__item,
  .lott-faq__toggle {
    transition: none;
  }

  .lott-faq__item[open] .lott-faq__answer {
    animation: none;
  }
}

/* ==================================================
                          FAQ END
================================================== */
/* ==================================================
                  FAQ BACKGROUND
================================================== */

.lott-faq {
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(239, 118, 94, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 85%,
      rgba(7, 112, 98, 0.12),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #f4e4d5 0%,
      #ead7c5 48%,
      #f2e6d7 100%
    );
}

.lott-faq::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(92%, 1380px);
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(7, 63, 54, 0.22),
      transparent
    );
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}

.lott-faq__item {
  border-color: rgba(91, 63, 46, 0.14);
  background: rgba(255, 252, 247, 0.94);
  box-shadow: 0 12px 30px rgba(86, 59, 42, 0.07);
}

.lott-faq__item:hover,
.lott-faq__item[open] {
  border-color: rgba(8, 112, 98, 0.3);
  box-shadow: 0 17px 38px rgba(86, 59, 42, 0.12);
}

.lott-faq__item summary i {
  background: #e7eee1;
}

/* ==================================================
                FAQ BACKGROUND END
================================================== */
/* ==================================================
                        FOOTER START
================================================== */

.lott-footer {
  --footer-bg: #021f1b;
  --footer-bg-soft: #06372f;
  --footer-panel: rgba(255, 255, 255, 0.055);
  --footer-border: rgba(255, 255, 255, 0.11);
  --footer-white: #ffffff;
  --footer-text: rgba(255, 255, 255, 0.66);
  --footer-muted: rgba(255, 255, 255, 0.46);
  --footer-lime: #c9f044;
  --footer-coral: #ef765e;
  --footer-cyan: #35b9ac;

  position: relative;
  overflow: hidden;
  padding: clamp(76px, 8vw, 118px) 24px 30px;
  color: var(--footer-white);
  background:
    radial-gradient(
      circle at 6% 7%,
      rgba(53, 185, 172, 0.13),
      transparent 27%
    ),
    radial-gradient(
      circle at 94% 88%,
      rgba(201, 240, 68, 0.08),
      transparent 28%
    ),
    linear-gradient(145deg, #032b25 0%, #021b18 60%, #011512 100%);
  isolation: isolate;
}

.lott-footer::before {
  position: absolute;
  top: -260px;
  right: -210px;
  width: 590px;
  height: 590px;
  border: 1px solid rgba(201, 240, 68, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(201, 240, 68, 0.018),
    0 0 0 160px rgba(201, 240, 68, 0.012);
  content: "";
  pointer-events: none;
  z-index: -1;
}

.lott-footer::after {
  position: absolute;
  bottom: -160px;
  left: -150px;
  width: 410px;
  height: 410px;
  border: 65px solid rgba(239, 118, 94, 0.045);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  z-index: -1;
}

.lott-footer *,
.lott-footer *::before,
.lott-footer *::after {
  box-sizing: border-box;
}

.lott-footer__container {
  width: min(100%, 1420px);
  margin: 0 auto;
}


/* Visually Hidden Heading
================================================== */

.lott-footer .sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}


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

.lott-footer__top {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.42fr);
  align-items: start;
  gap: clamp(54px, 8vw, 120px);
  padding-bottom: clamp(50px, 6vw, 76px);
  border-bottom: 1px solid var(--footer-border);
}


/* Brand
================================================== */

.lott-footer__brand {
  max-width: 430px;
}

.lott-footer__logo {
  display: inline-block;
  margin-bottom: 27px;
  text-decoration: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.lott-footer__logo:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.lott-footer__logo:focus-visible {
  outline: 3px solid var(--footer-lime);
  outline-offset: 7px;
  border-radius: 8px;
}

.lott-footer__logo img {
  display: block;
  width: auto;
  max-width: 220px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.lott-footer__description {
  margin: 0;
  color: var(--footer-text);
  font-size: 16px;
  line-height: 1.75;
}

.lott-footer__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.lott-footer__highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid var(--footer-border);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.045);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.lott-footer__highlights svg {
  width: 17px;
  height: 17px;
  color: var(--footer-lime);
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


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

.lott-footer__navigation {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 66px);
}

.lott-footer__column h3 {
  position: relative;
  margin: 0 0 25px;
  padding-bottom: 16px;
  color: var(--footer-white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lott-footer__column h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 2px;
  border-radius: 20px;
  background: var(--footer-coral);
  content: "";
}

.lott-footer__column ul {
  display: grid;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.lott-footer__column li {
  padding: 0;
  margin: 0;
}

.lott-footer__column a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  padding: 10px 0;
  color: var(--footer-text);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
  text-decoration: none;
  transition:
    color 180ms ease,
    padding-left 180ms ease;
}

.lott-footer__column a i {
  color: var(--footer-lime);
  font-size: 16px;
  font-style: normal;
  opacity: 0;
  transform: translateX(-7px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.lott-footer__column a:hover {
  padding-left: 5px;
  color: var(--footer-white);
}

.lott-footer__column a:hover i {
  opacity: 1;
  transform: translateX(0);
}

.lott-footer__column a:focus-visible {
  outline: 2px solid var(--footer-lime);
  outline-offset: 4px;
  border-radius: 3px;
  color: var(--footer-white);
}


/* Information Panel
================================================== */

.lott-footer__information {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: clamp(44px, 5vw, 65px) 0;
  border: 1px solid var(--footer-border);
  border-radius: 25px;
  background: var(--footer-border);
}

.lott-footer__information-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 17px;
  min-height: 166px;
  padding: clamp(24px, 3vw, 33px);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.068),
      rgba(255, 255, 255, 0.035)
    );
}

.lott-footer__information-icon {
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 240, 68, 0.22);
  border-radius: 15px;
  color: var(--footer-lime);
  background: rgba(201, 240, 68, 0.08);
  place-items: center;
}

.lott-footer__information-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lott-footer__information-item h3 {
  margin: 2px 0 9px;
  color: var(--footer-white);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.lott-footer__information-item p {
  margin: 0;
  color: var(--footer-text);
  font-size: 13px;
  line-height: 1.65;
}


/* Responsible Gambling
================================================== */

.lott-footer__responsible {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 3vw, 38px);
  padding: clamp(27px, 4vw, 40px);
  border: 1px solid rgba(239, 118, 94, 0.27);
  border-radius: 25px;
  background:
    radial-gradient(
      circle at 100% 50%,
      rgba(239, 118, 94, 0.09),
      transparent 30%
    ),
    rgba(255, 255, 255, 0.035);
}

.lott-footer__age {
  display: grid;
  width: 86px;
  height: 86px;
  border: 3px solid var(--footer-coral);
  border-radius: 50%;
  color: var(--footer-white);
  font-size: 27px;
  font-weight: 850;
  line-height: 1;
  place-items: center;
}

.lott-footer__responsible-copy h3 {
  margin: 0 0 8px;
  color: var(--footer-white);
  font-size: 18px;
  font-weight: 800;
}

.lott-footer__responsible-copy p {
  max-width: 800px;
  margin: 0;
  color: var(--footer-text);
  font-size: 14px;
  line-height: 1.7;
}

.lott-footer__australia {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(201, 240, 68, 0.23);
  border-radius: 999px;
  color: var(--footer-lime);
  background: rgba(201, 240, 68, 0.065);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}


/* Disclaimer
================================================== */

.lott-footer__disclaimer {
  max-width: 1120px;
  margin: 25px auto 0;
  text-align: center;
}

.lott-footer__disclaimer p {
  margin: 0;
  color: var(--footer-muted);
  font-size: 11px;
  line-height: 1.7;
}


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

.lott-footer__bottom {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 25px;
  margin-top: 35px;
  padding-top: 27px;
  border-top: 1px solid var(--footer-border);
}

.lott-footer__bottom p {
  margin: 0;
  color: var(--footer-muted);
  font-size: 12px;
  line-height: 1.5;
}

.lott-footer__bottom-note {
  text-align: center;
}

.lott-footer__back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease;
}

.lott-footer__back-to-top i {
  display: grid;
  width: 37px;
  height: 37px;
  border: 1px solid rgba(201, 240, 68, 0.23);
  border-radius: 12px;
  color: var(--footer-dark, #032b25);
  background: var(--footer-lime);
  place-items: center;
  transition: transform 180ms ease;
}

.lott-footer__back-to-top svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lott-footer__back-to-top:hover {
  color: var(--footer-white);
}

.lott-footer__back-to-top:hover i {
  transform: translateY(-3px);
}

.lott-footer__back-to-top:focus-visible {
  outline: 2px solid var(--footer-lime);
  outline-offset: 5px;
  border-radius: 4px;
}


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

@media (max-width: 1080px) {
  .lott-footer__top {
    grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
    gap: 55px;
  }

  .lott-footer__navigation {
    gap: 28px;
  }

  .lott-footer__information-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 850px) {
  .lott-footer__top {
    grid-template-columns: 1fr;
  }

  .lott-footer__brand {
    max-width: 650px;
  }

  .lott-footer__information {
    grid-template-columns: 1fr;
  }

  .lott-footer__information-item {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 0;
  }

  .lott-footer__responsible {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .lott-footer__age {
    width: 76px;
    height: 76px;
  }

  .lott-footer__australia {
    grid-column: 2;
    width: max-content;
  }

  .lott-footer__bottom {
    grid-template-columns: 1fr auto;
  }

  .lott-footer__bottom-note {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .lott-footer {
    padding: 65px 16px 25px;
  }

  .lott-footer__top {
    gap: 45px;
  }

  .lott-footer__logo img {
    max-width: 190px;
  }

  .lott-footer__description {
    font-size: 15px;
  }

  .lott-footer__navigation {
    grid-template-columns: 1fr 1fr;
    gap: 38px 28px;
  }

  .lott-footer__column:last-child {
    grid-column: 1 / -1;
  }

  .lott-footer__column a i {
    display: none;
  }

  .lott-footer__information {
    border-radius: 20px;
  }

  .lott-footer__information-item {
    padding: 23px 20px;
  }

  .lott-footer__responsible {
    grid-template-columns: 1fr;
    padding: 25px 21px;
    border-radius: 20px;
  }

  .lott-footer__age {
    width: 68px;
    height: 68px;
    font-size: 23px;
  }

  .lott-footer__australia {
    grid-column: auto;
  }

  .lott-footer__bottom {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lott-footer__bottom-note {
    grid-column: auto;
    grid-row: auto;
  }

  .lott-footer__back-to-top {
    justify-content: flex-start;
    width: max-content;
  }
}

@media (max-width: 420px) {
  .lott-footer__navigation {
    grid-template-columns: 1fr;
  }

  .lott-footer__column:last-child {
    grid-column: auto;
  }

  .lott-footer__highlights {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lott-footer__logo,
  .lott-footer__column a,
  .lott-footer__column a i,
  .lott-footer__back-to-top,
  .lott-footer__back-to-top i {
    transition: none;
  }
}

/* ==================================================
                         FOOTER END
================================================== */


/* ==================================================
                    FOOTER LEGAL LINKS
================================================== */

.lott-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 34px 0 0;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.lott-footer__legal > span {
  color: #c9f044;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lott-footer__legal ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.lott-footer__legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease;
}

.lott-footer__legal a:hover,
.lott-footer__legal a[aria-current="page"] {
  color: #ffffff;
}

.lott-footer__legal a:focus-visible {
  outline: 2px solid #c9f044;
  outline-offset: 4px;
}


/* ==================================================
                     LEGAL PAGES
================================================== */

.lmct-legal-page {
  color: #123f37;
  background: #f4f3e9;
}

.lmct-legal {
  min-height: 70vh;
  padding: 150px 24px 90px;
  background:
    radial-gradient(circle at 92% 5%, rgba(201, 240, 68, 0.2), transparent 25%),
    radial-gradient(circle at 5% 75%, rgba(239, 118, 94, 0.1), transparent 25%),
    linear-gradient(145deg, #faf9f1 0%, #eff5e8 100%);
}

.lmct-legal__container {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.lmct-legal__hero {
  max-width: 930px;
  margin: 0 0 54px;
}

.lmct-legal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: #087062;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lmct-legal__eyebrow::before {
  width: 34px;
  height: 2px;
  border-radius: 20px;
  background: #ef765e;
  content: "";
}

.lmct-legal__hero h1 {
  margin: 0 0 20px;
  color: #043d35;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
}

.lmct-legal__summary {
  max-width: 820px;
  margin: 0 0 17px;
  color: #4b6d66;
  font-size: 18px;
  line-height: 1.72;
}

.lmct-legal__updated {
  margin: 0;
  color: #087062;
  font-size: 13px;
  font-weight: 750;
}

.lmct-legal__layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 5vw, 72px);
}

.lmct-legal__contents {
  position: sticky;
  top: 112px;
  padding: 27px;
  border: 1px solid rgba(7, 89, 76, 0.14);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 35px rgba(6, 63, 54, 0.07);
}

.lmct-legal__contents strong {
  display: block;
  margin-bottom: 17px;
  color: #043d35;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lmct-legal__contents ul {
  display: grid;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.lmct-legal__contents a {
  display: block;
  padding: 8px 0;
  color: #58736d;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
  text-decoration: none;
}

.lmct-legal__contents a:hover {
  color: #087062;
}

.lmct-legal__document {
  overflow: hidden;
  border: 1px solid rgba(7, 89, 76, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 50px rgba(6, 63, 54, 0.08);
}

.lmct-legal__section {
  padding: clamp(28px, 4vw, 45px);
  scroll-margin-top: 120px;
}

.lmct-legal__section + .lmct-legal__section {
  border-top: 1px solid rgba(7, 89, 76, 0.1);
}

.lmct-legal__section h2 {
  margin: 0 0 18px;
  color: #043d35;
  font-size: clamp(24px, 2.4vw, 33px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.lmct-legal__section h3 {
  margin: 25px 0 10px;
  color: #07594c;
  font-size: 18px;
  font-weight: 800;
}

.lmct-legal__section p,
.lmct-legal__section li {
  color: #4f6f69;
  font-size: 15px;
  line-height: 1.78;
}

.lmct-legal__section p {
  margin: 0 0 16px;
}

.lmct-legal__section p:last-child {
  margin-bottom: 0;
}

.lmct-legal__section ul,
.lmct-legal__section ol {
  display: grid;
  gap: 9px;
  padding-left: 23px;
  margin: 17px 0;
}

.lmct-legal__section a {
  color: #087062;
  font-weight: 750;
  text-underline-offset: 3px;
}

.lmct-legal__callout {
  margin: 22px 0;
  padding: 20px 22px;
  border-left: 4px solid #c9f044;
  border-radius: 0 15px 15px 0;
  color: #174a41;
  background: #eff6dc;
  line-height: 1.65;
}

.lmct-legal__callout--warning {
  border-left-color: #ef765e;
  background: #fff0eb;
}

.lmct-legal__page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 28px clamp(28px, 4vw, 45px) 36px;
  border-top: 1px solid rgba(7, 89, 76, 0.1);
}

.lmct-legal__page-links a {
  padding: 10px 15px;
  border: 1px solid rgba(7, 89, 76, 0.14);
  border-radius: 999px;
  color: #07594c;
  background: #f3f7ed;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.lmct-legal__page-links a:hover,
.lmct-legal__page-links a[aria-current="page"] {
  border-color: #c9f044;
  background: #c9f044;
}

@media (max-width: 850px) {
  .lmct-legal {
    padding-top: 125px;
  }

  .lmct-legal__layout {
    grid-template-columns: 1fr;
  }

  .lmct-legal__contents {
    position: static;
  }

  .lott-footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .lott-footer__legal ul {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .lmct-legal {
    padding: 110px 16px 65px;
  }

  .lmct-legal__hero {
    margin-bottom: 36px;
  }

  .lmct-legal__hero h1 {
    font-size: clamp(39px, 12vw, 53px);
  }

  .lmct-legal__summary {
    font-size: 16px;
  }

  .lmct-legal__contents,
  .lmct-legal__document {
    border-radius: 20px;
  }

  .lmct-legal__section {
    padding: 26px 21px;
  }

  .lmct-legal__page-links {
    padding: 24px 21px 29px;
  }

  .lott-footer__legal {
    padding: 18px;
  }

  .lott-footer__legal ul {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* ==================================================
                    LEGAL PAGES END
================================================== */
