html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

@font-face {
  font-family: 'Marcellus';
  src: local('Marcellus'),
    url('fonts/Marcellus-Regular.ttf') format('truetype');
  font-display: normal;
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  font-family: "Marcellus", sans-serif;
  font-weight: 400;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}

/* glob */

.list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

.btn-reset {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.flex {
  display: flex;
}

.container {
  max-width: 1240px;
  padding: 0 15px;
  margin: 0 auto;
}

/* ====================
   Updated Luxury Header CSS
   ==================== */

.luxhdr {
  background: #135409;
  color: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
  width: 100%;
  z-index: 100;
  position: fixed;
}

.luxhdr__container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.luxhdr__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.luxhdr__logo-img {
  height: 50px;

  border-radius: 12px;
  margin-right: 12px;
  padding: 2px;
}

.luxhdr__brand {
  font-weight: 700;
  font-size: 1.4rem;
  color: #f80;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.luxhdr__nav {
  flex: 1;
  margin-left: 48px;
}

.luxhdr__nav-list {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.luxhdr__nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 8px 0;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  letter-spacing: 0.5px;
}

.luxhdr__nav-link:hover,
.luxhdr__nav-link--active {
  color: #f80;
  border-bottom: 2.5px solid #f80;
}

.luxhdr__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.luxhdr__drm {
  background: #f80;
  color: #111;
  font-weight: 700;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.02rem;
  transition: background .2s, color .2s;
  box-shadow: 0 2px 14px rgba(255, 136, 0, 0.08);
    animation:
    glow-pulse-const 2s infinite alternate ease-in-out,
    scale-pulse 2s infinite ease-in-out;
}

.luxhdr__drm--login:hover {
  background: #fff;
  color: #f80;
}

.luxhdr__lang-switch {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
  gap: 7px;
  text-decoration: none;
  font-size: 1.01rem;

  border-radius: 7px;
  

  transition: background .2s, color .2s;
}

.luxhdr__lang-switch:hover {
  background: #f80;
  color: #191919;
}

.luxhdr__lang-flag {
height: 36px;
    width: 36px;
    object-fit: cover;
  border-radius: 100%;
  border: 1px solid #444;
}

.luxhdr__burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
  width: 34px;
  height: 34px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: 16px;
}

.luxhdr__burger span {
  display: block;
  height: 4px;
  width: 26px;
  background: #f80;
  border-radius: 2px;
  transition: all .2s;
}

/* Responsive */
@media (max-width: 1020px) {
  .luxhdr__container {
    padding: 0 12px;
  }

  .luxhdr__nav {
    margin-left: 0;
  }

  .luxhdr__nav-list {
    gap: 20px;
  }
}

@media (max-width: 1220px) {
  .luxhdr__nav {
    position: fixed;
    top: 77px;
    left: 0;
    right: 0;
    background: #111;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    max-width: none;
    padding: 26px 0 12px 0;
    transform: translateY(-200%);
    transition: transform .35s cubic-bezier(.5, 0, .1, 1);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.18);
    z-index: 500;
  }

  .luxhdr__nav--open {
    transform: translateY(0);
  }

  .luxhdr__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .luxhdr__burger {
    display: flex;
  }
}

@media (max-width: 500px) {
  .luxhdr__brand {
    font-size: 1rem;
  }


  .luxhdr__btn {
    padding: 8px 13px;
    font-size: .96rem;
  }

  .luxhdr__container {
    height: 58px;
  }

  .luxhdr__lang-flag {
    height: 30px;
    width: 50px;
  }
}


.luxhdr__burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: 16px;
  position: relative;
  z-index: 999;
}

.luxhdr__burger span {
  display: block;
  height: 4px;
  width: 28px;
  background: #f80;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(.4, 2, .6, 1);
  position: relative;
}

.luxhdr__burger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.luxhdr__burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.luxhdr__burger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 1220px) {
  .luxhdr__burger {
    display: flex;
  }

  .luxhdr__nav{
    margin: 0;
  }
}

/* ===== Updated N777 Luxury Hero Section – Green Theme (#135409) ===== */

/* ---- Core Layout ---- */
.n777-promo {
  background-color: #152a00;
  /* keeps deep feel while framing green accents   */
  color: #ffffff;
  padding: 90px 20px;
  overflow: hidden;
}

.n777-promo__container {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* ---- Text ---- */
.n777-promo__title {
  font-size: clamp(1.8rem, 4vw + 1rem, 3.2rem);
  font-weight: 700;

  margin-bottom: 20px;
  text-align: center;
}

.n777-promo__desc {
  font-size: 1.125rem;
  text-align: center;

  margin-bottom: 28px;
  opacity: 0.95;
}

/* ---- Perks list ---- */
.n777-promo__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 32px;
}

.n777-promo__perks li {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.9;
}

.n777-promo__perks i {
  color: #35d252;
  /* lighter tint of #135409 for contrast */
  font-size: 1.1rem;
}

/* ---- Buttons ---- */
.n777-promo__actions {
  display: flex;
  gap: 25px;
  justify-content: center;
  /* desktop centred too */
  flex-wrap: wrap;
}

.n777-btn {
  position: relative;
  overflow: hidden;
  padding: 15px 34px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  border-radius: 48px;
  transition: transform 0.3s ease;
}

/* Primary button – lush green gradient */
.n777-btn--primary {
  background-image: linear-gradient(145deg, #135409, #1d7a0c 60%, #35d252);
  color: #fff;
}

/* Outline button */
.n777-btn--outline {
  background: transparent;
  color: #35d252;
  border-color: #35d252;
}

/* Hover & Active */
.n777-btn:focus-visible,
.n777-btn:hover {
  transform: translateY(-3px);
}

.n777-btn:active {
  transform: translateY(0);
}

/* ---- Button Animations ---- */
@keyframes n777-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(53, 210, 82, 0.55);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(53, 210, 82, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(53, 210, 82, 0);
  }
}

@keyframes n777-shine {
  0% {
    transform: translateX(-110%);
  }

  60% {
    transform: translateX(110%);
  }

  100% {
    transform: translateX(110%);
  }
}

.n777-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n777-pulse 2.4s infinite;
}

.n777-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(-110%) rotate(25deg);
  animation: n777-shine 3.8s infinite 0.8s;
  pointer-events: none;
}

/* ---- Visual ---- */
.n777-promo__image {
  max-width: 480px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

/* ---- Mobile: centre everything (≤767 px) ---- */
@media (max-width: 768px) {
  .n777-promo__container {
    flex-direction: column;
    text-align: center;
  }

  .n777-promo__actions {
    gap: 0;
  }

  .n777-promo__perks {
    justify-content: center;
  }
}

/* ========== Luxury Green Theme – #135409 ========== */
.n777-why {
  background-color: #0b0f05;
  /* deep near-black for luxe contrast   */
  color: #ffffff;
  padding: 90px 20px;
  overflow: hidden;
}

.n777-why__container {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: space-between;

}

/* ---- Headline & Copy ---- */
.n777-why__title {
  font-size: clamp(1.6rem, 4vw + 1rem, 3rem);
  font-weight: 700;

  margin-bottom: 24px;
}

.n777-why__desc {
  font-size: 1.063rem;

  margin-bottom: 22px;
  opacity: 0.94;
}

/* ---- Inline highlight links ---- */
.n777-inline-link {
  color: #35d252;
  /* lighter tint of #135409  */
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.n777-inline-link::after {
  /* bottom-border hover glow */
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.n777-inline-link:hover::after {
  transform: scaleX(1);
}

/* ---- Quick facts strip ---- */
.n777-why__facts {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin: 30px 0 38px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.n777-why__facts i {
  color: #35d252;
  margin-right: 8px;
}

/* ---- CTA Button ---- */
.n777-why__actions {
  display: flex;
  justify-content: center;
  /* desktop centered as requested */
}

.n777-btn {
  position: relative;
  overflow: hidden;
  padding: 16px 38px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 50px;

  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Smart-play style */
.n777-btn--smart {
  background-image: linear-gradient(145deg, #135409, #1a7b0a 55%, #3ee05e);
  color: #fff;
}

/* Hover & Active */
.n777-btn:hover,
.n777-btn:focus-visible {
  transform: translateY(-4px);
}

.n777-btn:active {
  transform: translateY(0);
}

/* ---- Button Animations ---- */
@keyframes smartPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(62, 224, 94, 0.55);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(62, 224, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(62, 224, 94, 0);
  }
}

@keyframes smartShine {
  0% {
    transform: translateX(-110%);
  }

  65% {
    transform: translateX(110%);
  }

  100% {
    transform: translateX(110%);
  }
}

.n777-btn--smart::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: smartPulse 2.7s infinite;
}

.n777-btn--smart::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(-110%) rotate(25deg);
  animation: smartShine 4s infinite 0.9s;
  pointer-events: none;
}

/* ---- Visual ---- */
.n777-why__image {
  max-width: 460px;

  border-radius: 16px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.55);
  object-fit: cover;
}

/* ---- Mobile ≤ 767px: center everything ---- */
@media (max-width: 768px) {
  .n777-why__container {
    flex-direction: column;
    text-align: center;
  }

  .n777-why__facts {
    justify-content: center;
  }
}

/* ========== Luxury Green Theme (Highlights) ========== */
.n777-highlights {
  background: radial-gradient(circle at 30% top, #13220b 0%, #0b0f05 70%);
  color: #fff;
  padding: 100px 20px;
  overflow: hidden;
}

.n777-highlights__container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

/* ---- Visual ---- */
.n777-highlights__image {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
  object-fit: cover;
}

/* ---- Title & Copy ---- */
.n777-highlights__title {
  font-size: clamp(1.8rem, 3.5vw + 1rem, 3rem);
  font-weight: 700;

  margin-bottom: 28px;
}

.n777-highlights__list {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1.05rem;

}

.n777-highlight__label {
  color: #35d252;
  /* accent for labels */
}

.n777-inline-link {
  color: #35d252;
  text-decoration: none;
  position: relative;
}

.n777-inline-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.n777-inline-link:hover::after {
  transform: scaleX(1);
}

/* ---- Footnotes ---- */
.n777-highlights__footnotes {
  counter-reset: n777-notes;
  margin: 0 0 44px;
  padding-left: 18px;
  font-size: 0.85rem;
  opacity: 0.85;
}

.n777-highlights__footnotes li {
  margin-bottom: 6px;
}

/* ---- CTA Button ---- */
.n777-highlights__actions {
  display: flex;
  justify-content: center;
  /* desktop centre */
}

.n777-btn {
  position: relative;
  overflow: hidden;
  padding: 18px 46px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 60px;
  text-transform: uppercase;

  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Unique quote-style CTA */
.n777-btn--experience {
  background-image: linear-gradient(135deg, #135409 0%, #1b7a0c 55%, #3ee05e);
  color: #fff;
}

/* Hover / Active */
.n777-btn:hover,
.n777-btn:focus-visible {
  transform: translateY(-4px);
}

.n777-btn:active {
  transform: translateY(0);
}

/* ---- Button Animations ---- */
@keyframes expPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(62, 224, 94, 0.55);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(62, 224, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(62, 224, 94, 0);
  }
}

@keyframes expShine {
  0% {
    transform: translateX(-110%);
  }

  65% {
    transform: translateX(110%);
  }

  100% {
    transform: translateX(110%);
  }
}

.n777-btn--experience::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: expPulse 2.9s infinite;
}

.n777-btn--experience::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(-110%) rotate(25deg);
  animation: expShine 4.2s infinite 1s;
  pointer-events: none;
}

/* ---- Mobile ≤767px: centre everything ---- */
@media (max-width: 768px) {
  .n777-highlights__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .n777-highlights__footnotes {
    text-align: left;
  }

  /* easier to scan */
}

/* ============ Luxury Emerald Theme (Benefits) ============ */
.n777-benefits {
  background: linear-gradient(135deg, #0b0f05 0%, #13220b 60%);
  color: #ffffff;
  padding: 110px 20px 100px;
  overflow: hidden;
  position: relative;
}

/* dotted overlay for depth */
.n777-benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='6' height='6' fill='%23135409' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle r='1' cx='3' cy='3'/%3E%3C/svg%3E") repeat;
  opacity: 0.25;
  pointer-events: none;
}

.n777-benefits__inner {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
}

/* ---- Header ---- */
.n777-benefits__title {
  font-size: clamp(1.9rem, 4vw + 1rem, 3.1rem);
  font-weight: 700;

  text-align: center;
  margin-bottom: 12px;
}

.n777-benefits__subtitle {
  text-align: center;
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 60px;
}

/* ---- Benefit list (masonry-ish grid) ---- */
.n777-benefit-list {
  display: grid;

  gap: 38px 32px;
  margin-bottom: 60px;
}

.n777-benefit-card {
  background: rgba(11, 15, 5, 0.55);
  padding: 26px 28px 24px;
  border: 1px solid rgba(53, 210, 82, 0.14);
  border-radius: 18px;
  backdrop-filter: blur(6px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.n777-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.4);
}

.n777-benefit-card__label {
  font-weight: 700;
  color: #35d252;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.n777-benefit-card__text {
  font-size: 0.985rem;

  opacity: 0.93;
}

/* ---- Inline links ---- */
.n777-inline-link {
  color: #35d252;
  text-decoration: none;
  position: relative;
}

.n777-inline-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.n777-inline-link:hover::after {
  transform: scaleX(1);
}

/* ---- Quick stats strip ---- */
.n777-benefits__stats {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  margin-bottom: 70px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  opacity: 0.9;
}

.n777-benefits__stats div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.n777-benefits__stats i {
  color: #35d252;
}

/* ---- CTA ---- */
.n777-benefits__cta {
  display: flex;
  justify-content: center;
}

.n777-btn {
  position: relative;
  overflow: hidden;
  padding: 20px 54px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 60px;

  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.33s ease;
}

.n777-btn--advantage {
  background: linear-gradient(145deg, #135409 0%, #1b7a0c 55%, #3ee05e);
  color: #fff;
}

.n777-btn:hover,
.n777-btn:focus-visible {
  transform: translateY(-5px);
}

.n777-btn:active {
  transform: translateY(0);
}

/* ---- Button Animation ---- */
@keyframes advPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(62, 224, 94, 0.55);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(62, 224, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(62, 224, 94, 0);
  }
}

@keyframes advShine {
  0% {
    transform: translateX(-110%);
  }

  60% {
    transform: translateX(110%);
  }

  100% {
    transform: translateX(110%);
  }
}

.n777-btn--advantage::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: advPulse 3.1s infinite;
}

.n777-btn--advantage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: translateX(-110%) rotate(25deg);
  animation: advShine 4.5s infinite 1s;
  pointer-events: none;
}

/* ---- Mobile ≤767 px: centre all text ---- */
@media (max-width: 768px) {
  .n777-benefit-list {
    grid-template-columns: 1fr;
  }

  .n777-benefit-card {
    text-align: center;
  }

  .n777-benefits__stats {
    text-align: center;
  }

  .n777-benefit-card__label {
    display: inline-block;
  }
}

/* ========= Emerald Luxury Theme: Explore Section ========= */
.n777-explore {
  /* angled dark stripes for a fresh, distinct backdrop */
  background:
    repeating-linear-gradient(135deg, #0b0f05 0 12px, #0d1406 12px 24px);
  color: #ffffff;
  padding: 120px 20px 110px;
}

.n777-explore__shell {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.n777-explore__header {
  text-align: center;
  margin-bottom: 70px;
}

.n777-explore__title {
  font-size: clamp(1.9rem, 4vw + 1rem, 3.2rem);
  font-weight: 700;

}

.n777-explore__divider {
  display: block;
  width: 120px;
  height: 4px;
  margin: 22px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #135409 0%, #3ee05e 100%);
}

/* ---- GRID ---- */
.n777-explore__grid {
  display: grid;
  gap: 46px 38px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 80px;
}

/* ---- CARD ---- */
.n777-card {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4);
  background: #0f1509;
}

.n777-card:hover {
  transform: translateY(-8px) rotateX(4deg);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.55);
}

.n777-card__figure {
  margin: 0;
}

.n777-card__img {
  width: 100%;
  display: block;
  height: 180px;
  object-fit: cover;
  object-position: center;
}

.n777-card__body {
  padding: 24px 26px 28px;
}

.n777-card__label {
  font-weight: 700;
  color: #3ee05e;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.n777-card__text {
  font-size: 0.97rem;

  opacity: 0.92;
}

/* ---- Inline hover links ---- */
.n777-inline-link {
  color: #3ee05e;
  text-decoration: none;
  position: relative;
}

.n777-inline-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.n777-inline-link:hover::after {
  transform: scaleX(1);
}

/* ---- CTA Button ---- */
.n777-explore__cta {
  display: flex;
  justify-content: center;
}

.n777-btn {
  position: relative;
  overflow: hidden;
  padding: 22px 60px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 64px;

  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s ease;
}

.n777-btn--explore {
  background: linear-gradient(145deg, #135409 0%, #1b7a0c 55%, #3ee05e);
  color: #fff;
}

.n777-btn:hover,
.n777-btn:focus-visible {
  transform: translateY(-6px);
}

.n777-btn:active {
  transform: translateY(0);
}

/* Button pulse + shine */
@keyframes explorePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(62, 224, 94, 0.55);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(62, 224, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(62, 224, 94, 0);
  }
}

@keyframes exploreShine {
  0% {
    transform: translateX(-110%);
  }

  60% {
    transform: translateX(110%);
  }

  100% {
    transform: translateX(110%);
  }
}

.n777-btn--explore::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: explorePulse 3.2s infinite;
}

.n777-btn--explore::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: translateX(-110%) rotate(25deg);
  animation: exploreShine 4.6s infinite 1.3s;
  pointer-events: none;
}

/* ---- Mobile ≤ 767px: centre everything ---- */
@media (max-width: 768px) {
  .n777-explore__grid {
    grid-template-columns: 1fr;
  }

  .n777-card {
    text-align: center;
  }

  .n777-card__img {
    height: 190px;
  }
}

/* ===== Lingo Section Styles ===== */
.n777-lingo {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  padding: 130px 20px 110px;
}

/* background image + emerald overlay */
.n777-lingo__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 15, 5, 0.92) 0%, rgba(19, 34, 11, 0.88) 100%),
    url("img/bg.png") center/cover no-repeat;
  z-index: -1;
}

/* wrapper limits width */
.n777-lingo__wrap {
  max-width: 1240px;
  margin: 0 auto;
}

/* ---- Header ---- */
.n777-lingo__header {
  text-align: center;
  margin-bottom: 66px;
}

.n777-lingo__title {
  font-size: clamp(2rem, 4.2vw + 1rem, 3.3rem);
  font-weight: 700;

}

.n777-lingo__tagline {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-top: 14px;
}

/* ---- Glossary grid ---- */
.n777-terms {
  display: grid;
  gap: 40px 34px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  margin-bottom: 80px;
}

.n777-term {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(62, 224, 94, 0.17);
  border-radius: 18px;
  padding: 26px 28px 28px;
  backdrop-filter: blur(8px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.n777-term:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
}

.n777-term__key {
  font-weight: 700;
  color: #3ee05e;
  font-size: 1.08rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.n777-term__def {
  font-size: 0.96rem;

  opacity: 0.94;
  margin: 0;
}

/* ---- CTA button ---- */
.n777-lingo__cta {
  display: flex;
  justify-content: center;
}

.n777-btn {
  position: relative;
  overflow: hidden;
  padding: 22px 62px;
  border-radius: 64px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;

  cursor: pointer;
  transition: transform 0.35s ease;
}

.n777-btn--lingo {
  background: linear-gradient(145deg, #135409 0%, #1b7a0c 55%, #3ee05e);
  color: #fff;
}

.n777-btn:hover,
.n777-btn:focus-visible {
  transform: translateY(-6px);
}

.n777-btn:active {
  transform: translateY(0);
}

/* button pulse & shine */
@keyframes lingoPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(62, 224, 94, 0.55);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(62, 224, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(62, 224, 94, 0);
  }
}

@keyframes lingoShine {
  0% {
    transform: translateX(-120%);
  }

  60% {
    transform: translateX(120%);
  }

  100% {
    transform: translateX(120%);
  }
}

.n777-btn--lingo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: lingoPulse 3.4s infinite;
}

.n777-btn--lingo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: translateX(-120%) rotate(25deg);
  animation: lingoShine 4.9s infinite 1.1s;
  pointer-events: none;
}

/* ---- Mobile ≤ 767px ---- */
@media (max-width: 768px) {
  .n777-terms {
    grid-template-columns: 1fr;
  }

  .n777-term {
    text-align: center;
  }

  .n777-term__key {
    justify-content: center;
  }
}

/* ========== Luxury Emerald Theme: Join Section (new classes) ========== */
.n7xp-join {
  background: radial-gradient(circle at 20% 20%, #13220b 0%, #0b0f05 70%);
  color: #fff;
  padding: 120px 20px 110px;
  position: relative;
  overflow: hidden;
}



.n7xp-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}

/* ---- Visual ---- */
.n7xp-visual {
  flex: 1 1 460px;
  margin: 0;
}

.n7xp-img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.55);
}

/* ---- Content ---- */
.n7xp-content {
  flex: 1 1 480px;
}

.n7xp-heading {
  font-size: clamp(2rem, 4.3vw + 1rem, 3.2rem);
  font-weight: 700;
  margin-bottom: 14px;

}

.n7xp-tagline {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 46px;
}

/* ---- Steps ---- */
.n7xp-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 70px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: 0.97rem;

}

.n7xp-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.n7xp-badge {
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, #135409 0%, #1a7b0c 60%, #3ee05e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  animation: n7xpBadgeGlow 4s infinite ease-in-out;
}

@keyframes n7xpBadgeGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(62, 224, 94, 0.5);
  }

  50% {
    box-shadow: 0 0 16px 6px rgba(62, 224, 94, 0.35);
  }
}

/* ---- CTA ---- */
.n7xp-cta {
  text-align: center;
    display: flex;
  align-items: center;
  justify-content: center;
}

.n7xp-btn {
  position: relative;
  overflow: hidden;
  padding: 22px 66px;
  border-radius: 66px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;

  cursor: pointer;
  transition: transform .35s ease;
}

.n7xp-btn--primary {
  background: linear-gradient(145deg, #135409 0%, #1b7a0c 55%, #3ee05e);
  color: #fff;
}

.n7xp-btn:hover,
.n7xp-btn:focus-visible {
  transform: translateY(-6px);
}

.n7xp-btn:active {
  transform: translateY(0);
}

/* Pulse + shine */
.n7xp-btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7xpPulse 3.3s infinite;
}



@keyframes n7xpPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(62, 224, 94, 0.55);
  }

  70% {
    box-shadow: 0 0 0 22px rgba(62, 224, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(62, 224, 94, 0);
  }
}

@keyframes n7xpShine {
  0% {
    transform: translateX(-120%) rotate(25deg);
  }

  60% {
    transform: translateX(120%) rotate(25deg);
  }

  100% {
    transform: translateX(120%) rotate(25deg);
  }
}

/* ---- Mobile ≤ 767px ---- */
@media (max-width: 768px) {
  .n7xp-wrap {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .n7xp-visual {
    max-width: 380px;
    margin: 0 auto;
    flex: none;
  }

  .n7xp-step {
    flex-direction: column;
    align-items: center;
  }
}

/* ============ Lux Emerald Theme – NX7L Hero ============ */
.nx7l-hero {
  background:
    linear-gradient(145deg, #0b0f05 0%, #13220b 100%);
  color: #ffffff;
  padding: 40px 20px 30px;
  overflow: hidden;
  position: relative;
}

/* angled emerald flare */
.nx7l-hero::before {
  content: "";
  position: absolute;
  left: -25%;
  top: -25%;
  width: 140%;
  height: 140%;
  background: conic-gradient(from 210deg at 50% 50%, rgba(62, 224, 94, 0.07), rgba(62, 224, 94, 0.0) 50%);
  animation: nx7lSpin 24s linear infinite;
  pointer-events: none;
}

@keyframes nx7lSpin {
  to {
    transform: rotate(360deg);
  }
}

.nx7l-shell {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: center;
  
}

/* ------- VISUAL ------- */
.nx7l-visual {
  
  margin: 0;
}

.nx7l-img {
  width: 100%;
  display: block;
  border-radius: 26px;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.6);
  object-fit: cover;
  transform: perspective(1000px) rotateY(-6deg);
  transition: transform 0.6s ease;
}

.nx7l-img:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.03);
}

/* ------- CONTENT ------- */
.nx7l-content {
  flex: 1 1 520px;
}

.nx7l-title {
  font-size: clamp(2.2rem, 4.6vw + 1rem, 3.4rem);
  font-weight: 700;

  margin-bottom: 18px;
}

.nx7l-lead {
  font-size: 1.05rem;

  opacity: 0.93;
  margin-bottom: 42px;
}

/* badges */
.nx7l-badges {
  list-style: none;
  padding: 0;
  margin: 0 0 58px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px 34px;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  opacity: 0.88;
}

.nx7l-badges i {
  color: #3ee05e;
  margin-right: 6px;
}

/* ------- BUTTONS ------- */
.nx7l-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  /* desktop center per spec */

}

.nx7l-btn {
  position: relative;
  overflow: hidden;
  padding: 22px 64px;
  border-radius: 68px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;

  cursor: pointer;
  transition: transform .35s ease;
}

.nx7l-btn:hover,
.nx7l-btn:focus-visible {
  transform: translateY(-6px);
}

.nx7l-btn:active {
  transform: translateY(0);
}

/* primary emerald */
.nx7l-btn--primary {
  background: linear-gradient(145deg, #135409 0%, #1b7a0c 55%, #3ee05e);
  color: #fff;
}

/* ghost outline */
.nx7l-btn--ghost {
  background: transparent;
  color: #3ee05e;
  border-color: #3ee05e;
}

/* shared animations */
@keyframes nx7lPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(62, 224, 94, 0.55);
  }

  70% {
    box-shadow: 0 0 0 24px rgba(62, 224, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(62, 224, 94, 0);
  }
}

@keyframes nx7lShine {
  0% {
    transform: translateX(-120%);
  }

  60% {
    transform: translateX(120%);
  }

  100% {
    transform: translateX(120%);
  }
}

.nx7l-btn--primary::before,
.nx7l-btn--primary::after,
.nx7l-btn--ghost::before,
.nx7l-btn--ghost::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.nx7l-btn--primary::before,
.nx7l-btn--ghost::before {
  inset: 0;
  animation: nx7lPulse 3.6s infinite;
}

.nx7l-btn--primary::after,
.nx7l-btn--ghost::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.38);
  transform: translateX(-120%) rotate(25deg);
  animation: nx7lShine 5.2s infinite 1.2s;
}

/* ------- MOBILE ≤767px ------- */
@media (max-width: 768px) {
  .nx7l-shell {
    flex-direction: column-reverse;
    text-align: center;
    gap: 0px;
  }

  .nx7l-visual {
    max-width: 380px;
    margin: 0 auto;
  }

  .nx7l-img {
    transform: none;
  }
}

/* ============ Light Luxury Emerald Style (N7WL) ============ */
.n7wl-welcome {
  background: #101a10 ;
  padding: 40px 20px 30px;
  color: #e9fbe5;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
}

/* --- GRID LAYOUT --- */
.n7wl-grid {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* --- IMAGE --- */
.n7wl-media {
  position: relative;
}

.n7wl-frame {
  margin: 0;
  perspective: 1200px;
}

.n7wl-poster {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  transform: rotateY(-8deg) rotateX(3deg);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.5);
  transition: transform .8s ease;
}

.n7wl-frame:hover .n7wl-poster {
  transform: rotateY(0deg) scale(1.03);
}

.n7wl-chip {
  position: absolute;
  width: 84px;
  right: -28px;
  bottom: -28px;
  animation: n7wlFloat 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes n7wlFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(15deg);
  }
}

/* --- CONTENT --- */
.n7wl-body {
  max-width: 620px;
}

.n7wl-title {
  font-size: clamp(2rem, 4vw + 1rem, 3.1rem);
  font-weight: 700;

  color: #ffffff;
  margin-bottom: 26px;
}

.n7wl-copy p {
  font-size: 1.02rem;

  margin-bottom: 20px;
  opacity: 0.92;
}

.n7wl-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 34px;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  justify-content: center;
  margin: 38px 0 60px;
  padding: 0;
  opacity: 0.88;
}

.n7wl-facts i {
  color: #3ddf6a;
  margin-right: 6px;
}

/* --- BUTTON --- */
.n7wl-cta {
  text-align: center;
    display: flex;
  align-items: center;
  justify-content: center;
}

.n7wl-btn {
  position: relative;
  overflow: hidden;
  padding: 22px 68px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: 70px;
  cursor: pointer;

  transition: transform .35s ease;
}

.n7wl-btn--go {
  background: linear-gradient(145deg, #33af49 0%, #4ff18b 100%);
  color: #0d150d;
}

.n7wl-btn:hover,
.n7wl-btn:focus-visible {
  transform: translateY(-6px);
}

.n7wl-btn:active {
  transform: translateY(0);
}

/* button pulse & shine */
@keyframes n7wlPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 241, 139, 0.45);
  }

  70% {
    box-shadow: 0 0 0 22px rgba(79, 241, 139, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(79, 241, 139, 0);
  }
}

@keyframes n7wlShine {
  0% {
    transform: translateX(-120%) rotate(25deg);
  }

  60% {
    transform: translateX(120%) rotate(25deg);
  }

  100% {
    transform: translateX(120%) rotate(25deg);
  }
}

.n7wl-btn--go::before,
.n7wl-btn--go::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.n7wl-btn--go::before {
  inset: 0;
  animation: n7wlPulse 3.6s infinite;
}

.n7wl-btn--go::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- MOBILE ≤767px --- */
@media (max-width: 768px) {
  .n7wl-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .n7wl-media {
    max-width: 380px;
    margin: 0 auto;
  }

  .n7wl-frame:hover .n7wl-poster {
    transform: scale(1.03);
  }

  /* no tilt on mobile */
  .n7wl-body {
    margin: 0 auto;
  }
}

/* ============ Light Emerald Theme – n7bw Showcase ============ */
.n7bw-showcase {
  background: #f3faf4;
  color: #0b1a0b;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
  position: relative;
}

/* --- TOP IMAGE --- */
.n7bw-banner {
  margin: 0;
  position: relative;
}

.n7bw-banner__img {
  width: 100%;
  display: block;
  max-height: 460px;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.05);
}

.n7bw-spark {
  position: absolute;
  bottom: 16%;
  left: 8%;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(62, 224, 94, 0.45) 0%, transparent 70%);
  border-radius: 50%;
  animation: n7bwPulse 5s infinite;
}

@keyframes n7bwPulse {

  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

/* --- ARTICLE --- */
.n7bw-article {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 22px 100px;
}

.n7bw-heading {
  font-size: clamp(2rem, 4.3vw + 1rem, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 36px;

}

.n7bw-text p {
  font-size: 1.04rem;

  margin-bottom: 22px;
  opacity: 0.9;
}

/* --- CHIPS --- */
.n7bw-chips {
  list-style: none;
  padding: 0;
  margin: 50px 0 70px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  justify-content: center;
  font-size: 0.92rem;
}

.n7bw-chips li {
  background: #e5f9e9;
  color: #0b1a0b;
  border: 1px solid rgba(62, 224, 94, 0.4);
  border-radius: 40px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.n7bw-chips i {
  color: #27b64d;
}

/* --- CTA BUTTON --- */
.n7bw-cta {
  text-align: center;
    display: flex;
  align-items: center;
  justify-content: center;
}

.n7bw-btn {
  position: relative;
  overflow: hidden;
  padding: 22px 70px;
  border-radius: 74px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;

  cursor: pointer;
  transition: transform 0.35s ease;
}

.n7bw-btn--bright {
  background: linear-gradient(135deg, #32b44a 0%, #53f895 100%);
  color: #0b1a0b;
}

.n7bw-btn:hover,
.n7bw-btn:focus-visible {
  transform: translateY(-6px);
}

.n7bw-btn:active {
  transform: translateY(0);
}

/* pulse & shiny sweep */
@keyframes n7bwBtnPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(83, 248, 149, 0.45);
  }

  70% {
    box-shadow: 0 0 0 24px rgba(83, 248, 149, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(83, 248, 149, 0);
  }
}

@keyframes n7bwBtnShine {
  0% {
    left: -130%;
  }

  50% {
    left: 130%;
  }

  100% {
    left: 130%;
  }
}

.n7bw-btn--bright::before,
.n7bw-btn--bright::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.n7bw-btn--bright::before {
  inset: 0;
  animation: n7bwBtnPulse 3.8s infinite;
}

.n7bw-btn--bright::after {
  top: 0;
  width: 120px;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-20deg);
  animation: n7bwBtnShine 5.4s infinite 1.4s;
}

/* --- MOBILE ≤767px --- */
@media (max-width: 768px) {
  .n7bw-article {
    padding: 60px 20px 100px;
    text-align: center;
  }

  .n7bw-text p {
    text-align: center;
  }
}


/* ========= DARK Emerald Theme – n7dk ========= */
.n7dk-matrix {
  position: relative;
  background: #0e0d14;
  color: #e5ffe4;
  overflow: hidden;
  padding: 140px 20px 130px;
  font-family: "Inter", Arial, sans-serif;
}

/* angled accent band */
.n7dk-skew {
  position: absolute;
  top: -110px;
  left: -20%;
  width: 140%;
  height: 420px;
  background: linear-gradient(120deg, transparent 10%, rgba(38, 255, 120, 0.06) 50%, transparent 90%);
  transform: rotate(3deg);
  pointer-events: none;
}

.n7dk-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

/* ---------- IMAGE PILLAR ---------- */
.n7dk-picture {
  position: relative;
}

.n7dk-figure {
  margin: 0;
}

.n7dk-photo {
  width: 100%;

  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.65);
  filter: brightness(0.9);
  transition: transform .6s ease;
}

.n7dk-figure:hover .n7dk-photo {
  transform: scale(1.05);
}



.n7dk-head {
  font-size: clamp(2.1rem, 4vw + 1rem, 3.2rem);
  font-weight: 700;

  margin-bottom: 50px;
}

.n7dk-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 80px;
  display: grid;
  gap: 36px;
  font-size: 1.05rem;

}

.n7dk-grid li {
  position: relative;
  padding-left: 54px;
}

/* icon bubble */
.n7dk-icon {
  position: absolute;
  left: 0;
  top: 4px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle, #30a952 0%, #135409 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 12px rgba(48, 169, 82, 0.55);
  color: #fff;
}

/* highlighted tag before dash */
.n7dk-tag {
  display: inline-block;
  margin: 0 6px 6px 0;
  padding: 3px 14px;
  border: 1px solid rgba(48, 169, 82, 0.5);
  border-radius: 22px;
  font-weight: 700;
  color: #30f47a;
  background: rgba(48, 169, 82, 0.08);
  transition: background .3s ease, transform .3s ease;
}

.n7dk-grid li:hover .n7dk-tag {
  background: rgba(48, 169, 82, 0.25);
  transform: translateY(-2px);
}

/* ---------- CTA BUTTON ---------- */
.n7dk-action {
  text-align: center;
}

.n7dk-btn {
  position: relative;
  overflow: hidden;
  padding: 22px 76px;
  border-radius: 80px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid rgba(48, 169, 82, 0.5);
  color: #ffffff;
  background: transparent;
  transition: transform .35s ease, color .35s ease, background .35s ease;
}

.n7dk-btn--pulse {
  backdrop-filter: blur(8px);
}

.n7dk-btn--pulse:hover,
.n7dk-btn--pulse:focus-visible {
  background: #30f47a;
  color: #0e0d14;
  transform: translateY(-6px);
}

.n7dk-btn--pulse:active {
  transform: translateY(0);
}

/* pulse halo */
@keyframes n7dkHalo {
  0% {
    box-shadow: 0 0 0 0 rgba(48, 169, 82, 0.55);
  }

  70% {
    box-shadow: 0 0 0 28px rgba(48, 169, 82, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(48, 169, 82, 0);
  }
}

.n7dk-btn--pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7dkHalo 4s infinite;
}

/* shiny sweep */
@keyframes n7dkSweep {
  0% {
    left: -140%;
  }

  55% {
    left: 140%;
  }

  100% {
    left: 140%;
  }
}



/* ---------- RESPONSIVE ≤767px ---------- */
@media (max-width: 768px) {
  .n7dk-wrapper {
    grid-template-columns: 1fr;
    gap: 70px;
    text-align: center;
  }

  .n7dk-picture {
    order: -1;
    max-width: 380px;
    margin: 0 auto;
  }

  .n7dk-photo {
    height: 300px;
  }

  .n7dk-panel {
    margin: 0 auto;
  }

  .n7dk-grid li {
    padding-left: 0;
  }

  .n7dk-icon {
    position: static;
    margin: 0 auto 12px;
  }

  .n7dk-tag {
    display: block;
    margin: 0 auto 10px;
  }
}

/* ============ DARK-NAVY & GOLD THEME – n7lp ============ */
.n7lp-section {
  position: relative;
  background: #071f3b;
  color: #e8e8e8;
  padding: 140px 20px 100px;
  overflow: hidden;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ▸ Decorative Top Wave */
.n7lp-wave {
  position: absolute;
  top: -60px;
  left: 0;
  width: 200%;
  height: 180px;
  background: radial-gradient(circle at 50% 0%, rgba(13, 41, 74, 0.6), transparent 70%);
  transform: rotate(3deg) translateX(-20%);
  pointer-events: none;
}

/* ▸ Container Grid */
.n7lp-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ---------- Option Card Styles ---------- */
.n7lp-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.n7lp-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #37d456;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.n7lp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.n7lp-card__icon {
  font-size: 1.6rem;
  background: #37d456;
  color: #071f3b;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.n7lp-card__content {
  font-size: 1rem;

  color: #e8e8e8;
}

.n7lp-card__label {
  display: inline-block;
  background: #37d456;
  color: #071f3b;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 14px;
  margin-right: 6px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.n7lp-card:hover .n7lp-card__label {
  background: #37d456;
  transform: translateY(-2px);
}

/* ---------- Illustration Column ---------- */
.n7lp-image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.n7lp-image {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  transition: transform 0.5s ease;
  object-fit: cover;
}

.n7lp-image-wrapper:hover .n7lp-image {
  transform: scale(1.04);
}

/* Trust Badge on Image */
.n7lp-badge {
  position: absolute;
  bottom: -18px;
  right: 12px;
  background: #37d456;
  color: #071f3b;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* ---------- CTA Button ---------- */
.n7lp-cta {
  margin-top: 60px;
  text-align: center;
    display: flex;
  align-items: center;
  justify-content: center;
}

.n7lp-btn {
  position: relative;
  display: inline-block;
  padding: 18px 66px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #071f3b;
  background: #37d456;
  border: 2px solid transparent;
  border-radius: 50px;
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;
}

.n7lp-btn:hover,
.n7lp-btn:focus-visible {
  transform: translateY(-6px);
  background: #37d456;
}

.n7lp-btn:active {
  transform: translateY(0);
}

/* ▸ Pulse + Shine Animations */
@keyframes n7lpPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.55);
  }

  70% {
    box-shadow: 0 0 0 26px rgba(212, 175, 55, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

@keyframes n7lpShine {
  0% {
    left: -140%;
  }

  60% {
    left: 140%;
  }

  100% {
    left: 140%;
  }
}

.n7lp-btn::before,
.n7lp-btn::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.n7lp-btn::before {
  inset: 0;
  animation: n7lpPulse 4s infinite;
}

.n7lp-btn::after {
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: skewX(-20deg);
  animation: n7lpShine 6s infinite 1.5s;
}

/* ---------- Responsive Styles (≤767px) ---------- */
@media (max-width: 768px) {
  .n7lp-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .n7lp-cards {
    gap: 24px;
  }

  .n7lp-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 20px;
  }

  .n7lp-card__icon {
    margin-bottom: 8px;
  }

  .n7lp-card__content {
    margin: 0 auto;
  }

  .n7lp-card__label {
    margin: 0 0 6px 0;
  }

  .n7lp-image-wrapper {
    margin: 0 auto;
  }

  .n7lp-image {
    max-width: 320px;
  }

  .n7lp-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -28px;
  }
}

/* ============= Neon-Plum Luxury Theme (n7sl) ============= */
.n7sl-slots {
  position: relative;
  background: radial-gradient(circle at 20% 30%, #004909 0%, #071408 80%);
  color: #ffffff;
  padding: 140px 20px 130px;
  overflow: hidden;
  font-family: "Inter", Arial, sans-serif;
}

/* --- floating blurred emoji orbs --- */
.n7sl-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  gap: 80vw;
  animation: n7slDrift 40s linear infinite;
  opacity: 0.07;
  font-size: 5rem;
  filter: blur(10px);
  pointer-events: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

@keyframes n7slDrift {
  100% {
    transform: translateX(-100%);
  }
}

/* --- Layout --- */
.n7sl-flex {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: center;
  flex-wrap: wrap;
}

/* --- Text panel --- */


.n7sl-title {
  font-size: clamp(2.2rem, 4.8vw + 1rem, 3.6rem);
  font-weight: 800;

  background: linear-gradient(90deg, #71ff76 0%, #6efe92 100%);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.n7sl-lead {
  font-size: 1.05rem;

  opacity: 0.92;
  margin-bottom: 36px;
}

.n7sl-perks {
  display: flex;
  gap: 26px 34px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0.88;
  letter-spacing: 0.02em;
}

.n7sl-perks i {
  color: #71ff76;
  margin-right: 6px;
}

/* --- Buttons --- */
.n7sl-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.n7sl-btn {
  position: relative;
  overflow: hidden;
  padding: 22px 68px;
  border-radius: 72px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .35s ease;
}

.n7sl-btn:hover,
.n7sl-btn:focus-visible {
  transform: translateY(-6px);
}

.n7sl-btn:active {
  transform: translateY(0);
}

.n7sl-btn--primary {
  background: linear-gradient(145deg, #71ff71 0%, #6efe86 60%, #5ef4ff);
  color: #0e0714;
}

.n7sl-btn--ghost {
  background: transparent;
  color: #71ff7d;
  border-color: #71ff7d;
}

/* button halo + sweep */
@keyframes n7slPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(113, 255, 125, 0.55);
  }

  70% {
    box-shadow: 0 0 0 26px rgba(255, 113, 230, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 113, 230, 0);
  }
}

@keyframes n7slShine {
  0% {
    left: -140%;
  }

  60% {
    left: 140%;
  }

  100% {
    left: 140%;
  }
}

.n7sl-btn--primary::before,
.n7sl-btn--primary::after,
.n7sl-btn--ghost::before,
.n7sl-btn--ghost::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.n7sl-btn--primary::before,
.n7sl-btn--ghost::before {
  inset: 0;
  animation: n7slPulse 3.6s infinite;
}

.n7sl-btn--primary::after,
.n7sl-btn--ghost::after {
  top: 0;
  height: 100%;
  width: 120px;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-20deg);
  animation: n7slShine 5.2s infinite 1.2s;
}

.n7sl-copy {
  text-align: center;
}

.n7sl-img {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.65);
  transform: perspective(900px) rotateY(10deg);
  transition: transform .6s ease;
}

.n7sl-visual:hover .n7sl-img {
  transform: perspective(900px) rotateY(0deg) scale(1.04);
}

/* --- Mobile ≤ 767px --- */
@media(max-width:767px) {
  .n7sl-flex {
    flex-direction: column;
    gap: 60px;
    text-align: center;
  }

  .n7sl-visual {
    max-width: 360px;
    margin: 0 auto;
  }

  .n7sl-img {
    transform: none;
  }

  .n7sl-actions {
    justify-content: center;
    gap: 0;
  }
}

/* =========== Deep-Emerald Theme – n7gr =========== */
.n7gr-playground {
  position: relative;
  background: radial-gradient(circle at 35% 20%, #063d1b 0%, #03180e 80%);
  color: #ecffee;
  padding: 60px 20px 60px;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
}

/* decorative leaves */
.n7gr-leaf {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(14px);
}

.n7gr-leaf--a {
  width: 260px;
  height: 260px;
  background: rgba(0, 150, 80, 0.18);
  top: -70px;
  right: -60px;
}

.n7gr-leaf--b {
  width: 340px;
  height: 340px;
  background: rgba(0, 255, 140, 0.12);
  bottom: -110px;
  left: -90px;
}

.n7gr-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 90px;
  align-items: center;
}

/* ---------- Illustration ---------- */
.n7gr-figure {
  margin: 0;
}

.n7gr-art {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.7);
  transform: rotateY(10deg);
  transition: transform .7s ease;
}

.n7gr-figure:hover .n7gr-art {
  transform: rotateY(0deg) scale(1.05);
}

/* ---------- Text ---------- */
.n7gr-body {
  max-width: 640px;
}

.n7gr-title {
  font-size: clamp(2.3rem, 4.6vw + 1rem, 3.4rem);
  font-weight: 800;

  margin-bottom: 26px;
  background: linear-gradient(90deg, #00ff9b 0%, #42ff55 50%, #9bff00 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.n7gr-pill {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 28px;
  font-weight: 700;
  color: #03180e;
  background: #00ff9b;
  letter-spacing: 0.02em;
}

.n7gr-promo {
  margin-bottom: 34px;
}

.n7gr-text {
  font-size: 1.05rem;

  opacity: 0.9;
  margin-top: 22px;
}

/* provider labels */
.n7gr-label {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 18px;
  background: rgba(0, 255, 155, 0.18);
  color: #00ff9b;
  font-weight: 600;
  transition: background .3s ease, transform .3s ease;
}

.n7gr-label:hover {
  background: rgba(0, 255, 155, 0.35);
  transform: translateY(-2px);
}

/* icons row */
.n7gr-icons {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 48px 0 70px;
  padding: 0;
  filter: grayscale(100%) brightness(1.4);
  opacity: 0.75;
}

.n7gr-icons img {
  width: 70px;
  height: auto;
}

/* ---------- CTA ---------- */
.n7gr-cta {
  text-align: center;
    display: flex;
  align-items: center;
  justify-content: center;
}

.n7gr-btn {
  position: relative;
  overflow: hidden;
  padding: 22px 78px;
  border-radius: 84px;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  color: #03180e;
  background: linear-gradient(145deg, #00ff9b 0%, #42ff55 60%, #9bff00);
  transition: transform .35s ease;
}

.n7gr-btn:hover,
.n7gr-btn:focus-visible {
  transform: translateY(-6px);
}

.n7gr-btn:active {
  transform: translateY(0);
}

/* pulse + sweep */
@keyframes n7grPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 155, 0.55);
  }

  70% {
    box-shadow: 0 0 0 28px rgba(0, 255, 155, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 155, 0);
  }
}

@keyframes n7grSweep {
  0% {
    left: -140%;
  }

  55% {
    left: 140%;
  }

  100% {
    left: 140%;
  }
}

.n7gr-btn::before,
.n7gr-btn::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.n7gr-btn::before {
  inset: 0;
  animation: n7grPulse 4s infinite;
}


/* ---------- Mobile ≤767px ---------- */
@media(max-width:767px) {
  .n7gr-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .n7gr-figure {
    order: -1;
    max-width: 340px;
    margin: 0 auto;
  }

  .n7gr-art {
    transform: none;
  }

  .n7gr-icons {
    justify-content: center;
  }
}

/* ========== Emerald Neon “n7ct” ========== */
.n7ct-categories {
  position: relative;
  background: linear-gradient(120deg, #04220f 0%, #062d1a 100%);
  color: #e9ffee;
  padding: 70px 20px 60px;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
}

/* animated grid background */
.n7ct-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    repeating-linear-gradient(120deg, rgba(34, 255, 162, 0.09) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(210deg, rgba(34, 255, 162, 0.08) 0 1px, transparent 1px 80px);
  animation: n7ctGridMove 18s linear infinite;
}

@keyframes n7ctGridMove {
  100% {
    background-position: 120px 80px, 160px 100px;
  }
}

.n7ct-wrap {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  z-index: 1;
  position: relative;
}

.n7ct-art {
  margin: 0;
}

.n7ct-img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  transition: transform .5s cubic-bezier(.66, .07, .37, .93);
}

.n7ct-art:hover .n7ct-img {
  transform: scale(1.045);
}


.n7ct-title {
  font-size: clamp(2.2rem, 4.3vw + 1rem, 3.3rem);
  font-weight: 800;

  background: linear-gradient(90deg, #48ffd9 0%, #1df46a 50%, #1acb87 100%);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}

.n7ct-pill {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 22px;
  background: rgba(34, 255, 162, 0.18);
  color: #28ff8b;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1.06rem;
}

.n7ct-promo {
  margin-bottom: 20px;
}

.n7ct-desc {
  font-size: 1.05rem;

  opacity: 0.92;
  margin-bottom: 36px;
}

/* categories list */
.n7ct-list {
  list-style: none;
  padding: 0;
  margin: 0 0 56px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.n7ct-ico {
  font-size: 1.6rem;
  margin-right: 8px;
  vertical-align: middle;
}

.n7ct-list li {
  font-size: 1.01rem;

}

/* custom chips */
.n7ct-chip {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 15px;
  font-weight: 600;
  margin-left: 5px;
  font-size: 0.97em;
  letter-spacing: 0.01em;
  vertical-align: middle;
}

.n7ct-chip--wins {
  background: #1df46a;
  color: #062d1a;
}

.n7ct-chip--wild {
  background: #10d7a2;
  color: #062d1a;
}

.n7ct-chip--jackpot {
  background: #13ffea;
  color: #052015;
}

.n7ct-chip--reward {
  background: #24ad7e;
  color: #fff;
}

/* ---- CTA Button ---- */
.n7ct-cta {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.n7ct-btn {
  position: relative;
  overflow: hidden;
  padding: 22px 68px;
  border-radius: 60px;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  color: #062d1a;
  background: linear-gradient(145deg, #21ffa5 0%, #2cfd85 60%, #13ffea);
  transition: transform .32s cubic-bezier(.66, .07, .37, .93);
}

.n7ct-btn:hover,
.n7ct-btn:focus-visible {
  transform: translateY(-6px);
}

.n7ct-btn:active {
  transform: translateY(0);
}

/* halo + sweep */
@keyframes n7ctPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 255, 162, 0.55);
  }

  70% {
    box-shadow: 0 0 0 22px rgba(34, 255, 162, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 255, 162, 0);
  }
}

@keyframes n7ctSweep {
  0% {
    left: -140%;
  }

  55% {
    left: 140%;
  }

  100% {
    left: 140%;
  }
}

.n7ct-btn::before,
.n7ct-btn::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.n7ct-btn::before {
  inset: 0;
  animation: n7ctPulse 4s infinite;
}


/* --- Mobile ≤ 767px --- */
@media(max-width:767px) {
  .n7ct-wrap {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
  }

  .n7ct-art {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }

  .n7ct-img {
    transform: none;
  }
}


/* ========== n7sm – Emerald Glow, Smart Player Focus ========== */
.n7sm-smartslots {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #0d3c26 0%, #02150c 80%);
  color: #eafff1;
  padding: 140px 20px 130px;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
}

/* floating animated glow, sparkle */
.n7sm-bg {
  position: absolute;
  top: 0; left: 60%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(26,255,178,0.13) 0%, transparent 70%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}
.n7sm-sparkle {
  position: absolute;
  top: 80px; left: 30px;
  width: 56px; height: 56px;
  background: radial-gradient(circle, #48ffe7 0%, transparent 80%);
  opacity: 0.23;
  filter: blur(3px);
  border-radius: 50%;
  animation: n7smSparkleMove 7s infinite ease-in-out;
  z-index: 1;
}
@keyframes n7smSparkleMove {
  0%,100% { transform: translateY(0);}
  50%     { transform: translateY(18px) scale(1.1);}
}

.n7sm-shell {
  max-width: 1280px;
  margin: 0 auto;
  
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

/* --- Art --- */
.n7sm-art { flex: 1 1 420px; position: relative; margin: 0; }
.n7sm-img {
  width: 100%; border-radius: 22px; object-fit: cover;
  box-shadow: 0 20px 66px rgba(0,0,0,0.62);
  filter: brightness(0.97) saturate(1.05);
  transition: transform .55s cubic-bezier(.7,.07,.33,.91);
}
.n7sm-art:hover .n7sm-img { transform: scale(1.03); }
.n7sm-badge {
  position: absolute; left: 20px; bottom: 16px;
  background: rgba(24,230,174,0.97);
  color: #02150c; font-weight: 600; font-size: .92rem;
  border-radius: 20px; padding: 8px 18px 8px 12px;
  box-shadow: 0 2px 16px rgba(24,230,174,0.12);
  display: flex; align-items: center; gap: 6px;
}

/* --- Content --- */
.n7sm-content { text-align: center; }

.n7sm-title {
  font-size: clamp(2.15rem, 4.5vw + 1rem, 3.3rem);
  font-weight: 800;

  background: linear-gradient(90deg, #33ffbb 0%, #1ed675 90%);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.n7sm-topline {
  margin-bottom: 30px;
  text-align: center;
}
.n7sm-pill {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(100deg, #34e8ad 20%, #0fe7c3 100%);
  color: #02150c;
  border-radius: 28px;
  font-weight: 800;
  font-size: 1.06rem;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 0 #1ed675;
  transition: box-shadow 0.3s;
  animation: n7smPulse 3.2s infinite;
}
@keyframes n7smPulse {
  0%, 100% { box-shadow: 0 0 0 0 #1ed67544; }
  50% { box-shadow: 0 0 16px 5px #1ed67522; }
}

.n7sm-desc p {
  font-size: 1.06rem;
  opacity: 0.92;
  margin-bottom: 18px;
}

/* quick stats */
.n7sm-quickstats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  justify-content: center;
  margin: 36px 0 60px 0;
  list-style: none;
  font-size: 0.97rem;
  opacity: 0.82;
  padding: 0;
}
.n7sm-quickstats i { color: #20f7a8; margin-right: 7px; }

/* --- CTA Button --- */
.n7sm-cta { text-align: center;display: flex;
align-items: center;
justify-content: center; }
.n7sm-btn {
  position: relative;
  overflow: hidden;
  padding: 22px 72px;
  border-radius: 70px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  border: none;
  background: linear-gradient(120deg, #34e8ad 0%, #1ed675 80%);
  color: #02150c;
  cursor: pointer;
  transition: transform .35s;
}
.n7sm-btn--claim:hover,
.n7sm-btn--claim:focus-visible { transform: translateY(-6px); }
.n7sm-btn--claim:active { transform: translateY(0); }

/* pulse halo + sweep */
@keyframes n7smBtnPulse {0%{box-shadow:0 0 0 0 #20f7a888;}70%{box-shadow:0 0 0 22px #20f7a800;}100%{box-shadow:0 0 0 0 #20f7a800;}}
@keyframes n7smBtnSweep {0%{left:-140%;}60%{left:140%;}100%{left:140%;}}


.n7sm-btn--claim::before { inset:0; animation:n7smBtnPulse 3.7s infinite;}
.n7sm-btn--claim::after {
  top:0; left:0; width:120px; height:100%;
  background:rgba(255,255,255,0.38);
  transform:skewX(-20deg); animation:n7smBtnSweep 5.1s infinite 1.2s;
}

/* ========== Responsive: ≤767px ========== */
@media(max-width:767px){
  .n7sm-shell { flex-direction: column; gap: 54px; text-align: center; }
  .n7sm-art { max-width: 340px; margin: 0 auto; }
  .n7sm-content { margin: 0 auto; }
  .n7sm-topline { text-align: center; }
  .n7sm-badge { left: 50%; transform: translateX(-50%); }
}

/* ========== n7gm-gameshero: Emerald + Black Luxury ========== */
.n7gm-gameshero {
  position: relative;
  min-height: 580px;
  background: #061914;
  overflow: hidden;
  padding: 0;
  font-family: "Inter", Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.n7gm-bg {
  position: absolute; inset: 0; z-index: 0;
  background:  linear-gradient(120deg,#03180e 70%,#0fa46b 100%);
  opacity: 0.27;
  filter: blur(1.5px) brightness(1.08);
  pointer-events: none;
  transition: opacity .5s;
}

.n7gm-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 120px 20px 90px;
  display: flex;
  justify-content: center;
}

.n7gm-content {
  
  border-radius: 40px;
  padding: 54px 42px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.n7gm-title {
  font-size: clamp(2.2rem, 5vw + 1rem, 3.2rem);
  font-weight: 800;

  letter-spacing: .01em;
  color: #00e218;
  margin-bottom: 22px;
}
.n7gm-hot {
  color: #16ffa1;
  text-shadow: 0 0 14px #16ffa19c;
  font-weight: 700;
}

.n7gm-lead {
  font-size: 1.09rem;

  color: #d7fff0;
  opacity: 0.91;
  margin-bottom: 38px;
}

.n7gm-strip {
  display: flex;
  gap: 30px 36px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  color: #48ffa6;
  margin: 0 0 54px 0;
  padding: 0;
}
.n7gm-strip i { margin-right: 6px; color: #1cff99; }

.n7gm-cta {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.n7gm-btn {
  position: relative;
  overflow: hidden;
  padding: 22px 68px;
  border-radius: 54px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform .32s cubic-bezier(.66,.07,.37,.93), background .25s;
  cursor: pointer;
}

.n7gm-btn--primary {
  background: linear-gradient(145deg, #16ffa1 0%, #12cf69 65%, #032e1d 100%);
  color: #03180e;
}
.n7gm-btn--ghost {
  background: transparent;
  color: #16ffa1;
  border: 2px solid #16ffa1;
}

.n7gm-btn:hover, .n7gm-btn:focus-visible { transform: translateY(-6px);}
.n7gm-btn:active { transform: translateY(0); }

/* button pulse + sweep */
@keyframes n7gmPulse { 0% { box-shadow: 0 0 0 0 #16ffa177; } 70% { box-shadow: 0 0 0 22px #16ffa100; } 100% { box-shadow: 0 0 0 0 #16ffa100; } }
@keyframes n7gmSweep { 0% { left: -140%; } 55% { left: 140%; } 100% { left: 140%; } }
.n7gm-btn--primary::before,
.n7gm-btn--primary::after,
.n7gm-btn--ghost::before,
.n7gm-btn--ghost::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}
.n7gm-btn--primary::before,
.n7gm-btn--ghost::before {
  inset: 0;
  animation: n7gmPulse 4s infinite;
}
.n7gm-btn--primary::after,
.n7gm-btn--ghost::after {
  top: 0; left: 0; width: 120px; height: 100%;
  background: rgba(255,255,255,0.3);
  transform: skewX(-20deg);
  animation: n7gmSweep 5.1s infinite 1.2s;
}

/* ========== Responsive ≤ 767px ========== */
@media (max-width: 768px) {
  .n7gm-inner { padding: 0; }
  .n7gm-content { padding: 38px 10px; text-align: center; }
  .n7gm-cta { flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
}

/* ========== Emerald Night “n7ex” Section ========== */
.n7ex-casinoaction {
  position: relative;
  background: linear-gradient(120deg, #082d1a 0%, #02130b 100%);
  color: #eaffec;
  padding: 70px 20px 60px;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
}
.n7ex-glow {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(15px);
}
.n7ex-glow--a { width: 200px; height: 200px; top: -50px; left: -60px; background: rgba(43,255,170,0.13);}
.n7ex-glow--b { width: 300px; height: 300px; bottom: -110px; right: -70px; background: rgba(23,240,255,0.11);}

.n7ex-shell {
  max-width: 1320px; margin: 0 auto;
  display: flex; gap: 80px; align-items: center; flex-wrap: wrap;
}

/* ---- Image ---- */
.n7ex-visual { flex: 1 1 420px; position: relative; margin: 0; }
.n7ex-img {
  width: 100%; border-radius: 26px; object-fit: cover;
  box-shadow: 0 24px 70px rgba(0,0,0,0.62);
  transition: transform .55s cubic-bezier(.68,.09,.33,.89);
}
.n7ex-visual:hover .n7ex-img { transform: scale(1.04);}
.n7ex-badge {
  position: absolute; left: 22px; bottom: 18px;
  background: rgba(43,255,170,0.93);
  color: #042d1b; font-weight: 700; font-size: .98rem;
  border-radius: 24px; padding: 9px 19px 9px 13px;
  box-shadow: 0 2px 16px rgba(23,240,255,0.08);
  display: flex; align-items: center; gap: 7px;
}

/* ---- Content ---- */
.n7ex-main { flex: 1 1 560px; max-width: 620px; }

.n7ex-title {
  font-size: clamp(2.18rem, 4.8vw + 1rem, 3.3rem);
  font-weight: 800;

  background: linear-gradient(90deg, #1aff7a 0%, #12d5e7 85%);
  -webkit-background-clip: text; color: transparent;
  margin-bottom: 22px;
}

.n7ex-lead {
  font-size: 1.06rem; line-height: 1.7; opacity: 0.92; margin-bottom: 18px;
}

.n7ex-features {
  display: flex; flex-wrap: wrap; gap: 22px 28px; justify-content: center; margin: 38px 0 56px 0;
  list-style: none; font-size: .98rem; opacity: .86; padding: 0;
}
.n7ex-features i { color: #1aff7a; margin-right: 7px;}

/* ---- CTA ---- */
.n7ex-cta { text-align: center;  display: flex;
  align-items: center;
  justify-content: center; }
.n7ex-btn {
  position: relative; overflow: hidden;
  padding: 22px 72px; border-radius: 60px; border: none;
  font-size: 1rem; font-weight: 700; letter-spacing: .03em;
  text-transform: uppercase; cursor: pointer;
  color: #02130b;
  background: linear-gradient(145deg, #1aff7a 0%, #12d5e7 60%, #19ffb0);
  transition: transform .35s;
}


/* Pulse + sweep effect */
@keyframes n7exPulse { 0% { box-shadow: 0 0 0 0 #1aff7a66;} 70% { box-shadow: 0 0 0 22px #1aff7a00;} 100% { box-shadow: 0 0 0 0 #1aff7a00;} }
@keyframes n7exSweep { 0% { left: -140%; } 60% { left: 140%; } 100% { left: 140%; } }


.n7ex-btn::before { inset: 0; animation: n7exPulse 3.9s infinite;}
.n7ex-btn::after {
  top: 0; left: 0; width: 120px; height: 100%;
  background: rgba(255,255,255,0.38);
  transform: skewX(-20deg); animation: n7exSweep 5.5s infinite 1.4s;
}

/* --- Responsive ≤ 767px --- */
@media (max-width: 768px) {
  .n7ex-shell { flex-direction: column; gap: 54px; text-align: center;}
  .n7ex-visual { max-width: 340px; margin: 0 auto;}
  .n7ex-badge { left: 50%; transform: translateX(-50%);}
}

/* ========== n7tp – Luxury Gold & Emerald ========== */
.n7tp-whychoose {
  position: relative;
  background: linear-gradient(115deg, #061914 70%, #242403 100%);
  color: #fffbe8;
  padding: 150px 20px 140px;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
}

/* Floating sparkles & coin deco */
.n7tp-spark {
  position: absolute; border-radius: 50%; pointer-events: none;
  z-index: 1; opacity: 0.13; filter: blur(10px);
}
.n7tp-spark--left { width: 180px; height: 180px; top: 28px; left: -70px; background: #ffe46b;}
.n7tp-spark--right { width: 220px; height: 220px; bottom: -60px; right: -80px; background: #16ffa1;}
.n7tp-coin {
  position: absolute;
  width: 78px; height: 78px;
  top: 60px; right: 18%; z-index: 1;
  background: radial-gradient(circle, #ffe46b 75%, #e4bf3b 100%);
  box-shadow: 0 0 32px 4px #ffe46b66;
  border-radius: 50%;
  border: 3px solid #fffbe8;
  animation: n7tpCoinSpin 6s linear infinite;
  opacity: 0.56;
}
@keyframes n7tpCoinSpin {
  0% { transform: rotate(0deg) scale(1);}
  55% { transform: rotate(180deg) scale(1.13);}
  100% { transform: rotate(360deg) scale(1);}
}

/* --- Layout --- */
.n7tp-wrap {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 80px; flex-wrap: wrap;
  position: relative; z-index: 3;
}

/* --- Image --- */
.n7tp-art { flex: 1 1 420px; position: relative; margin: 0;}
.n7tp-img {
  width: 100%; border-radius: 28px; object-fit: cover;
  box-shadow: 0 30px 80px rgba(0,0,0,0.66);
  transition: transform .55s cubic-bezier(.66,.07,.37,.93);
}
.n7tp-art:hover .n7tp-img { transform: scale(1.045);}
.n7tp-badge {
  position: absolute; left: 28px; bottom: 18px;
  background: rgba(255,228,107,0.96);
  color: #242403; font-weight: 800; font-size: .99rem;
  border-radius: 23px; padding: 9px 20px 9px 13px;
  box-shadow: 0 3px 16px rgba(255,228,107,0.18);
  display: flex; align-items: center; gap: 7px;
}

/* --- Content --- */
.n7tp-content { flex: 1 1 560px; max-width: 630px;}

.n7tp-title {
  font-size: clamp(2.24rem, 4.9vw + 1rem, 3.35rem);
  font-weight: 900;
  background: linear-gradient(90deg, #ffe46b 0%, #16ffa1 60%);
  -webkit-background-clip: text; color: transparent;
  margin-bottom: 28px;
  text-shadow: 0 2px 8px #1e1e1e2f;
}
.n7tp-leadbox { margin-bottom: 30px; }
.n7tp-lead {
  font-size: 1.08rem;
  margin-bottom: 13px;
  color: #fffde4;
  opacity: 0.93;
}

/* --- Stat bar --- */
.n7tp-stats {
  display: flex; flex-wrap: wrap; gap: 32px; margin: 0 0 56px 0;
  justify-content: center;
}
.n7tp-stat {
  background: rgba(22,255,161,0.08);
  border-radius: 18px;
  padding: 18px 30px 13px;
  min-width: 110px;
  text-align: center;
  box-shadow: 0 3px 12px #16ffa12a;
  display: flex; flex-direction: column; align-items: center;
  border: 1.5px solid #ffe46b66;
}
.n7tp-stat-num {
  font-size: 1.5rem; font-weight: 900; color: #ffe46b; line-height: 1.1; letter-spacing: 0.01em;
  margin-bottom: 3px; text-shadow: 0 0 8px #ffe46b99;
}
.n7tp-stat-label {
  font-size: .95rem; color: #caffd8; font-weight: 700; letter-spacing: 0.02em;
}

/* --- CTA Button --- */
.n7tp-cta { text-align: center; margin-top: 20px;  display: flex;
  align-items: center;
  justify-content: center;}
.n7tp-btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 13px;
  padding: 22px 66px; border-radius: 70px; border: none;
  font-size: 1rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.04em; cursor: pointer;
  background: linear-gradient(120deg, #ffe46b 0%, #16ffa1 90%);
  color: #242403;
  box-shadow: 0 4px 22px #ffe46b13;
  transition: transform .36s cubic-bezier(.68,.07,.37,.91);
}
.n7tp-btn--trophy .n7tp-btn-icon { font-size: 1.32em; color: #ffd700;}
.n7tp-btn:hover, .n7tp-btn:focus-visible { transform: translateY(-6px);}
.n7tp-btn:active { transform: translateY(0); }

/* button pulse + shine */
@keyframes n7tpPulse { 0% { box-shadow: 0 0 0 0 #ffe46b88;} 70% { box-shadow: 0 0 0 24px #ffe46b00;} 100% { box-shadow: 0 0 0 0 #ffe46b00;} }
@keyframes n7tpSweep { 0% { left: -140%; } 60% { left: 140%; } 100% { left: 140%; } }
.n7tp-btn::before, .n7tp-btn::after {
  content: ""; position: absolute; border-radius: inherit; pointer-events: none;
}
.n7tp-btn::before { inset: 0; animation: n7tpPulse 3.6s infinite;}
.n7tp-btn::after {
  top: 0; left: 0; width: 120px; height: 100%;
  background: rgba(255,255,255,0.29);
  transform: skewX(-20deg); animation: n7tpSweep 5.5s infinite 1.1s;
}

/* ========== Responsive ≤ 767px ========== */
@media (max-width: 768px) {
  .n7tp-wrap { flex-direction: column; gap: 48px; text-align: center;}
  .n7tp-art { max-width: 330px; margin: 0 auto;}
  .n7tp-badge { left: 50%; transform: translateX(-50%);}
  .n7tp-stats { gap: 19px; }
}



/* ========== n7gp 深绿奢华风格 ========== */
.n7gp-zones {
  display: flex;
  align-items: flex-start;
  background: #04160e; /* 深墨绿色背景 */
  padding: 80px 20px 100px;
  overflow: hidden;
  font-family: "Inter", Arial, sans-serif;
}

/* 主图 */
.n7gp-image {
  flex: 1 1 420px;
  margin: 0;
  position: relative;
}
.n7gp-img {
  width: 100%;
      max-width: 66%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  object-fit: cover;
  transition: transform 0.6s ease;
}
.n7gp-image:hover .n7gp-img {
  transform: scale(1.03);
}

/* 内容区 */
.n7gp-content {
  flex: 1 1 580px;
  margin-left: 60px;
  color: #eefcea;
}
.n7gp-heading {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  font-weight: 800;

  background: linear-gradient(90deg, #16ffa1 0%, #ffe46b 80%);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 28px;
  text-shadow: 0 1px 6px #16ffa144;
}

/* 卡片容器：垂直堆叠，中间留白 */
.n7gp-cards {
  display: flex;
  flex-direction: column;
  margin-bottom: 46px;
}

/* 通用卡片样式 */
.n7gp-card {
  background: rgba(8, 30, 19, 0.75);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 22px 26px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.n7gp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
}
.n7gp-card-t {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

/* 每个游戏名称不同样式 */
.n7gp-accent-slots {
  background: linear-gradient(135deg, #16ffa1 0%, #00d374 100%);
  padding: 2px 8px;
  border-radius: 12px;
  color: #04160e;
}
.n7gp-accent-crash {
  text-shadow: 0 0 8px #ff4f4f;
  color: #ff6b6b;
  font-style: italic;
}
.n7gp-accent-live {
  border-bottom: 2px solid #ffe46b;
  color: #ffe46b;
}
.n7gp-accent-jackpot {
  background: #ffe46b;
  color: #04160e;
  padding: 2px 8px;
  border-radius: 12px;
}
.n7gp-accent-excl {
  background: linear-gradient(145deg, #00d374 0%, #16ffa1 100%);
  color: #04160e;
  padding: 2px 8px;
  border-radius: 12px;
}

/* 卡片正文 */
.n7gp-card-text {
  font-size: 0.98rem;

  opacity: 0.88;
  margin: 0;
}

/* CTA 按钮 */
.n7gp-cta {
  text-align: center; /* 桌面也居中按钮 */
  display: flex;
  align-items: center;
  justify-content: center;
}
.n7gp-btn {
  position: relative;
  overflow: hidden;
  padding: 20px 64px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(145deg, #16ffa1 0%, #00d374 60%, #ffe46b 100%);
  color: #04160e;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(22, 255, 161, 0.3);
}
.n7gp-btn:hover,
.n7gp-btn:focus-visible {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 28px rgba(22, 255, 161, 0.5);
}
.n7gp-btn:active {
  transform: translateY(0) scale(1);
}

/* 按钮脉冲效果 */
@keyframes n7gp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(22,255,161,0.55); }
  70% { box-shadow: 0 0 0 20px rgba(22,255,161,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,255,161,0); }
}
.n7gp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7gp-pulse 3.5s infinite;
}

/* 移动端：全部居中堆叠 */
@media (max-width: 768px) {
  .n7gp-zones {
    flex-direction: column;
    align-items: center;
    padding: 60px 12px 80px;
  }
  .n7gp-image {
    flex: none;
    margin-bottom: 28px;
  }
  .n7gp-content {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  .n7gp-cards {
    gap: 20px;
    align-items: center;
  }
  .n7gp-card {
    max-width: 92vw;
  }
  .n7gp-cta {
    margin-top: 24px;
  }
}
/* ========== n7bt – Dark-Green Bet Hero with Background Image ========== */
.n7bt-bet {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Arial, sans-serif;
}

/* Фоновое изображение с наложением */
.n7bt-bg {
  position: absolute;
  inset: 0;
  background: darkgreen;
  filter: brightness(0.45);
  z-index: 0;
}

/* Основной контейнер */
.n7bt-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 60px 20px;
}

/* Изображение слева */
.n7bt-imgcol {
  flex: 1 1 440px;
  position: relative;
}
.n7bt-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  transform: perspective(900px) rotateY(-8deg);
  transition: transform 0.6s ease;
}
.n7bt-imgcol:hover .n7bt-img {
  transform: perspective(900px) rotateY(0deg) scale(1.04);
}

/* Мигающая блик-иконка */
.n7bt-flare {
  position: absolute;
  top: 12%;
  left: 88%;
  width: 36px;
  height: 36px;
  background: radial-gradient(circle, #16ffa1 0%, transparent 70%);
  border-radius: 50%;
  animation: n7btFlare 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes n7btFlare {
  0%,100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 1; }
}

/* Контент справа */
.n7bt-content {
  flex: 1 1 620px;
  color: #eefce8;
}

/* Заголовок */
.n7bt-title {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  font-weight: 800;

  background: linear-gradient(90deg, #16ffa1 0%, #ffe46b 75%);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}
.n7bt-highlight {
  color: #16ffa1;
  text-shadow: 0 0 12px #16ffa188;
}

/* Лид-абзац */
.n7bt-lead {
  font-size: 1.05rem;

  opacity: 0.92;
  margin-bottom: 28px;
}

/* Бегущая строка live-коэффициентов */
.n7bt-ticker {
  position: relative;
  background: rgba(3, 48, 29, 0.85);
  border-left: 4px solid #16ffa1;
  border-radius: 12px;
  padding: 12px 16px;
  overflow: hidden;
  margin-bottom: 36px;
}
.n7bt-ticker__item {
  white-space: nowrap;
  color: #d7ffef;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  padding-right: 80px;
  animation: n7bt-scroll 12s linear infinite;
}
@keyframes n7bt-scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Кнопки */
.n7bt-actions {
  display: flex;
  gap: 28px;
  justify-content: center; /* кнопки по центру на десктопе и мобильном */
}

.n7bt-btn {
  position: relative;
  overflow: hidden;
  padding: 20px 64px;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Основная кнопка */
.n7bt-btn--primary {
  background: linear-gradient(145deg, #16ffa1 0%, #00d374 65%, #ffe46b 100%);
  color: #04160e;
}
.n7bt-btn--primary:hover,
.n7bt-btn--primary:focus-visible {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 28px rgba(22, 255, 161, 0.5);
}
.n7bt-btn--primary:active {
  transform: translateY(0) scale(1);
}

/* Второстепенная кнопка */
.n7bt-btn--secondary {
  background: transparent;
  border-color: #16ffa1;
  color: #16ffa1;
}
.n7bt-btn--secondary:hover,
.n7bt-btn--secondary:focus-visible {
  transform: translateY(-6px);
  background: rgba(22, 255, 161, 0.12);
  box-shadow: 0 6px 22px rgba(22, 255, 161, 0.4);
}
.n7bt-btn--secondary:active {
  transform: translateY(0);
}

/* Пульсация кнопки */
@keyframes n7bt-btn-pulse {
  0% { box-shadow: 0 0 0 0 rgba(22,255,161,0.55); }
  70% { box-shadow: 0 0 0 20px rgba(22,255,161,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,255,161,0); }
}
.n7bt-btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7bt-btn-pulse 3.5s infinite;
}

/* Адаптив ≤ 768px: все центрируется */
@media (max-width: 768px) {
  .n7bt-inner {
    flex-direction: column;
    padding: 40px 12px;
    text-align: center;
  }
  .n7bt-imgcol {
    max-width: 88vw;
    margin: 0 auto 24px auto;
  }
  .n7bt-content {
    margin-left: 0;
  }
  .n7bt-ticker { margin: 0 auto 28px auto; width: 96%; }
  .n7bt-actions { flex-direction: column; gap: 0; }
  .n7bt-btn { width: 80%; max-width: 280px; margin: 0 auto; }
}
/* ========== n7bt2 “Bet Hero” Styles ========== */
.n7bt2-section {
  background: #011f13;
  color: #e9fbed;
  font-family: "Inter", Arial, sans-serif;
  padding: 0;
}

/* --- Image Top --- */
.n7bt2-image {
  position: relative;
  overflow: hidden;
  max-height: 320px;
  margin: 0;
}
.n7bt2-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.6s ease;
}
.n7bt2-image:hover .n7bt2-img {
  transform: scale(1.04);
}

/* Flare accent */
.n7bt2-flare {
  position: absolute;
  top: 16%;
  left: 84%;
  width: 32px;
  height: 32px;
  background: radial-gradient(circle, #16ffa1 0%, transparent 70%);
  border-radius: 50%;
  animation: n7bt2-flare 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes n7bt2-flare {
  0%,100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 1; }
}

/* --- Content Bottom --- */
.n7bt2-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px 60px;
}

/* Title */
.n7bt2-title {
  font-size: clamp(1.9rem, 4vw + 1rem, 2.8rem);
  font-weight: 800;

  margin-bottom: 16px;
  background: linear-gradient(90deg, #16ffa1 0%, #ffe46b 80%);
  -webkit-background-clip: text;
  color: transparent;
}
.n7bt2-divider {
  color: #16ffa1;
  text-shadow: 0 0 12px #16ffa188;
  margin: 0 8px;
}

/* Text */
.n7bt2-text {
  font-size: 1rem;

  opacity: 0.92;
  margin-bottom: 32px;
  color: #d7ffed;
}

/* Buttons Container */
.n7bt2-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Common button style */
.n7bt2-btn {
  position: relative;
  overflow: hidden;
  padding: 18px 56px;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Primary button */
.n7bt2-btn--primary {
  background: linear-gradient(145deg, #16ffa1 0%, #00d374 65%, #ffe46b 100%);
  color: #04160e;
  border: none;
}
.n7bt2-btn--primary:hover,
.n7bt2-btn--primary:focus-visible {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 28px rgba(22, 255, 161, 0.5);
}
.n7bt2-btn--primary:active {
  transform: translateY(0) scale(1);
}

/* Secondary button */
.n7bt2-btn--secondary {
  background: transparent;
  color: #16ffa1;
  border: 2px solid #16ffa1;
}
.n7bt2-btn--secondary:hover,
.n7bt2-btn--secondary:focus-visible {
  transform: translateY(-6px);
  background: rgba(22, 255, 161, 0.12);
  box-shadow: 0 6px 22px rgba(22, 255, 161, 0.4);
}
.n7bt2-btn--secondary:active {
  transform: translateY(0);
}

/* Pulse animation for primary */
@keyframes n7bt2-btnpulse {
  0% { box-shadow: 0 0 0 0 rgba(22,255,161,0.55); }
  70% { box-shadow: 0 0 0 20px rgba(22,255,161,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,255,161,0); }
}
.n7bt2-btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7bt2-btnpulse 3.5s infinite;
}

/* Mobile: center all content */
@media (max-width: 768px) {
  .n7bt2-content {
    padding: 30px 12px 50px;
  }
  .n7bt2-actions {
    flex-direction: column;
    gap: 16px;
  }
  .n7bt2-btn {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ========== n7bm – Betting Markets Section ========== */
.n7bm-markets {
  position: relative;
  background: url('img/bg1.avif') center/cover no-repeat;
  min-height: 800px;
  overflow: hidden;
  padding: 0;
  font-family: "Inter", Arial, sans-serif;
  color: #f0ffee;
}

/* Полупрозрачный тёмный оверлей */
.n7bm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 31, 22, 0.75);
  z-index: 0;
}

.n7bm-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  text-align: center;
}

/* Заголовок */
.n7bm-title {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  font-weight: 900;

  margin-bottom: 16px;
  background: linear-gradient(90deg, #16ffa1 0%, #ffe46b 85%);
  -webkit-background-clip: text;
  color: transparent;
}

/* Подзаголовок: особый стиль */
.n7bm-subtitle {
  margin-bottom: 40px;
  font-size: 1.05rem;

  opacity: 0.9;
}
.n7bm-highlight {
  display: inline-block;
  font-weight: bold;
  padding-left: 15px;
  border-left: 3px solid #16ffa1;
  color: #16ffa1;
}

/* Сетка карточек рынков */
.n7bm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px 24px;
  margin-bottom: 48px;
}

/* Карточка */
.n7bm-card {
  background: rgba(12, 40, 32, 0.85);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}
.n7bm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.7);
}

/* Изображение в карточке */
.n7bm-card__imgwrapper {
  height: 140px;
  overflow: hidden;
}
.n7bm-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.n7bm-card:hover .n7bm-card__img {
  transform: scale(1.05);
}

/* Контент карточки */
.n7bm-card__content {
  padding: 18px 14px 22px;
  text-align: center;
}
.n7bm-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #00e492;
}
.n7bm-card__text {
  font-size: 0.95rem;

  opacity: 0.88;
  color: #d7ffec;
  margin: 0;
}

/* Дополнительные примечания */
.n7bm-note {
  font-size: 0.98rem;

  opacity: 0.9;
  margin: 16px 0;
  color: #e8ffe8;
}
.n7bm-note__highlight {
  display: inline-block;
  font-weight: bold;
  padding-left: 15px;
  border-left: 2px solid #16ffa1;
  color: #16ffa1;
}

/* CTA кнопка */
.n7bm-cta {
  margin-top: 36px;
    display: flex;
  align-items: center;
  justify-content: center;
}
.n7bm-btn {
  position: relative;
  overflow: hidden;
  padding: 20px 60px;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(145deg, #16ffa1 0%, #00d374 65%, #ffe46b 100%);
  color: #04160e;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 24px rgba(22, 255, 161, 0.4);
}
.n7bm-btn:hover,
.n7bm-btn:focus-visible {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 36px rgba(22, 255, 161, 0.6);
}
.n7bm-btn:active {
  transform: translateY(0) scale(1);
}
/* Пульс кнопки */
@keyframes n7bm-pulse {
  0% { box-shadow: 0 0 0 0 rgba(22,255,161,0.55); }
  70% { box-shadow: 0 0 0 24px rgba(22,255,161,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,255,161,0); }
}
.n7bm-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7bm-pulse 4s infinite;
}

/* ========== Responsive ≤ 767px ========== */
@media (max-width: 768px) {
  .n7bm-container {
    padding: 40px 12px 60px;
    text-align: center;
  }
  .n7bm-title {
    font-size: 1.9rem;
  }
  .n7bm-subtitle {
    margin-bottom: 32px;
  }
  .n7bm-grid {
    gap: 20px;
  }
  .n7bm-card {
    margin: 0 auto;
    max-width: 92vw;
  }
  .n7bm-note {
    margin: 12px auto;
    max-width: 90vw;
  }
  .n7bm-cta {
    margin-top: 28px;
  }
  .n7bm-btn {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
  }
}
/* ========== n7bm2: Modern Luxury Betting Markets ========== */
.n7bm2-markets {
  position: relative;
  background: #031310;
  color: #e4f9e4;
  font-family: "Inter", Arial, sans-serif;
  padding: 80px 20px 100px;
  overflow: hidden;
}

/* Background image and dark overlay */
.n7bm2-bg {
  position: absolute;
  inset: 0;
  background: url('img/bg.png') center/cover no-repeat;
  filter: brightness(0.35);
  z-index: 0;
}

/* Wrapper to center content */
.n7bm2-wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Header */
.n7bm2-header {
  margin-bottom: 48px;
}
.n7bm2-title {
  font-size: clamp(2rem, 4vw + 1rem, 3.2rem);
  font-weight: 900;

  margin-bottom: 12px;
  background: linear-gradient(90deg, #16ffa1 0%, #00d374 60%, #ffe46b 100%);
  -webkit-background-clip: text;
  color: transparent;
}
.n7bm2-tagline {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.n7bm2-tagline__highlight {
  display: inline-block;
  font-weight: bold;
  font-style: italic;
  color: #16ffa1;
  padding: 4px 12px;
  border: 2px solid #16ffa1;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(22, 255, 161, 0.2);
}
.n7bm2-subtitle {
  font-size: 1rem;

  opacity: 0.9;
}

/* Grid of market cards */
.n7bm2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px 24px;
  margin-bottom: 40px;
}

/* Individual card */
.n7bm2-card {
  background: rgba(4, 31, 20, 0.85);
  border-radius: 20px;
  padding: 22px 16px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  position: relative;
}
.n7bm2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.75);
}

/* Icon at top of card */
.n7bm2-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}
.n7bm2-card__icon img {
  width: 100%;
  height: auto;
  display: block;
}

/* Card title */
.n7bm2-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #00e492;
  margin-bottom: 8px;
}

/* Card text */
.n7bm2-card__text {
  font-size: 0.95rem;

  color: #d7ffec;
  margin: 0;
}

/* Footer note */
.n7bm2-note {
  font-size: 0.98rem;

  opacity: 0.9;
  margin: 24px 0 36px;
}
.n7bm2-note__highlight {
  display: inline-block;
  font-weight: bold;
  color: #16ffa1;
  padding-left: 12px;
  border-left: 3px solid #16ffa1;
}

/* CTA button */
.n7bm2-cta {
  text-align: center;
}
.n7bm2-btn {
  position: relative;
  display: inline-block;
  padding: 18px 64px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #04160e;
  background: linear-gradient(145deg, #16ffa1 0%, #00d374 65%, #ffe46b 100%);
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 24px rgba(22, 255, 161, 0.4);
}
.n7bm2-btn:hover,
.n7bm2-btn:focus-visible {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 36px rgba(22, 255, 161, 0.6);
}
.n7bm2-btn:active {
  transform: translateY(0) scale(1);
}
/* Pulse animation */
@keyframes n7bm2-pulse {
  0% { box-shadow: 0 0 0 0 rgba(22,255,161,0.55); }
  70% { box-shadow: 0 0 0 24px rgba(22,255,161,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,255,161,0); }
}
.n7bm2-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7bm2-pulse 4s infinite;
}

/* Mobile: center content under 768px */
@media (max-width: 768px) {
  .n7bm2-wrap {
    padding: 40px 12px 60px;
    text-align: center;
  }
  .n7bm2-title {
    font-size: 1.9rem;
  }
  .n7bm2-tagline {
    margin-bottom: 16px;
  }
  .n7bm2-grid {
    gap: 20px;
  }
  .n7bm2-card {
    margin: 0 auto;
    max-width: 92vw;
    text-align: center;
  }
  .n7bm2-card__icon {
    margin: 0 auto 12px;
  }
  .n7bm2-card__title {
    margin-bottom: 6px;
  }
  .n7bm2-note {
    margin: 16px auto;
    max-width: 90vw;
  }
  .n7bm2-cta {
    margin-top: 28px;
  }
  .n7bm2-btn {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ========== n7tb – “Why Thousands Choose” Lux Split ========== */
.n7tb-section {
  position: relative;
  background: #021613;
  overflow: hidden;
  font-family: "Inter", Arial, sans-serif;
  padding: 0;
}

/* Slanted background via clip-path */
.n7tb-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #043a27 0%, #021613 85%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  z-index: 0;
}

/* Grid layout */
.n7tb-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 100px;
}

/* Image on right */
.n7tb-image {
  position: relative;
  margin: 0;
  align-self: center;
}
.n7tb-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  transform: perspective(900px) rotateY(8deg);
  transition: transform 0.6s ease;
}
.n7tb-image:hover .n7tb-img {
  transform: perspective(900px) rotateY(0deg) scale(1.03);
}
.n7tb-accent-dot {
  position: absolute;
  bottom: 12%;
  left: 8%;
  width: 28px;
  height: 28px;
  background: radial-gradient(circle, #16ffa1 0%, transparent 70%);
  border-radius: 50%;
  animation: n7tb-dotpulse 3s infinite ease-in-out;
  pointer-events: none;
}
@keyframes n7tb-dotpulse {
  0%,100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.4); opacity: 0.8; }
}

/* CONTENT on left */
.n7tb-content {
  color: #e4fef0;
  max-width: 580px;
}

/* Title */
.n7tb-title {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  font-weight: 900;

  background: linear-gradient(90deg, #16ffa1 0%, #ffe46b 70%);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}

/* Tagline with special style */
.n7tb-tagline {
  margin-bottom: 24px;
}
.n7tb-tagline__highlight {
  display: inline-block;
  font-weight: 700;
  padding-left: 12px;
  border-left: 3px solid #16ffa1;
  color: #16ffa1;
  font-size: 1.05rem;
  background: rgba(22, 255, 161, 0.08);
  border-radius: 6px 0 0 6px;
  box-shadow: 0 2px 12px rgba(22, 255, 161, 0.2);
}

/* Text paragraphs */
.n7tb-text {
  font-size: 1rem;

  opacity: 0.9;
  margin-bottom: 18px;
  color: #d7fff0;
}

/* Trust badges row */
.n7tb-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin: 30px 0 46px 0;
  list-style: none;
  padding: 0;
  justify-content: start;
  color: #b7ffcb;
  font-size: 0.95rem;
}
.n7tb-badges li {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(3, 58, 43, 0.5);
  padding: 8px 14px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(22, 255, 161, 0.1);
}
.n7tb-badges i {
  color: #16ffa1;
  font-size: 1.1rem;
}

/* CTA button */
.n7tb-cta {
  text-align: center; /* center on both desktop & mobile */
}
.n7tb-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 18px 64px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(145deg, #16ffa1 0%, #00d374 60%, #ffe46b 100%);
  color: #04160e;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  box-shadow: 0 4px 20px rgba(22, 255, 161, 0.3);
}
.n7tb-btn:hover,
.n7tb-btn:focus-visible {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(22, 255, 161, 0.6);
}
.n7tb-btn:active {
  transform: translateY(0) scale(1);
}
/* Pulse animation */
@keyframes n7tb-btnpulse {
  0% { box-shadow: 0 0 0 0 rgba(22,255,161,0.55); }
  70% { box-shadow: 0 0 0 24px rgba(22,255,161,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,255,161,0); }
}
.n7tb-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7tb-btnpulse 3.8s infinite;
}

/* Mobile view (<768px) */
@media (max-width: 768px) {
  .n7tb-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
    padding: 40px 12px 60px;
  }
  .n7tb-image {
    max-width: 90vw;
    margin: 0 auto;
  }
  .n7tb-img {
    transform: none;
  }
  .n7tb-content {
    margin: 0 auto;
  }
  .n7tb-badges {
    justify-content: center;
    margin: 24px auto 40px;
  }
  .n7tb-btn {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ========== n7li – “Login Unlocks” Lux Section ========== */
.n7li-unlock {
  position: relative;
  background: #1a081c;
  color: #f0f7f3;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
  padding: 60px 20px 40px;
}

/* Gradient rings */
.n7li-ring {
  position: absolute;
  border: 2px solid transparent;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.3), transparent 70%);
  pointer-events: none;
  animation: n7li-ringpulse 6s infinite ease-in-out;
}
.n7li-ring--large {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -60px;
}
.n7li-ring--small {
  width: 180px;
  height: 180px;
  bottom: -50px;
  right: -40px;
  animation-duration: 5s;
}
@keyframes n7li-ringpulse {
  0%,100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.6; }
}

/* CONTENT */
.n7li-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.n7li-title {
  font-size: clamp(1.9rem, 4vw + 1rem, 2.8rem);
  font-weight: 900;

  margin-bottom: 16px;
  background: linear-gradient(90deg, #ffd700 0%, #16ffa1 80%);
  -webkit-background-clip: text;
  color: transparent;
}

/* Text blocks */
.n7li-text {
  font-size: 1rem;

  opacity: 0.92;
  margin-bottom: 18px;
  color: #d7f0e8;
}

/* Feature highlights */
.n7li-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin: 28px 0 40px;
  list-style: none;
  padding: 0;
}
.n7li-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 255, 161, 0.1);
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.95rem;
  color: #bfffe1;
  box-shadow: 0 2px 12px rgba(22,255,161,0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}
.n7li-highlights li:hover {
  transform: translateY(-3px);
  background: rgba(22, 255, 161, 0.2);
}
.n7li-highlights i {
  color: #ffd700;
  font-size: 1.1rem;
}

/* CTA button */
.n7li-cta {
  text-align: center; /* center on both desktop & mobile */
}
.n7li-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 18px 64px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(145deg, #ffd700 0%, #16ffa1 70%);
  color: #1a081c;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 18px rgba(255,215,0,0.4);
}
.n7li-btn:hover,
.n7li-btn:focus-visible {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 32px rgba(22,255,161,0.6);
}
.n7li-btn:active {
  transform: translateY(0) scale(1);
}
/* Pulse animation */
@keyframes n7li-btnpulse {
  0% { box-shadow: 0 0 0 0 rgba(22,255,161,0.55); }
  70% { box-shadow: 0 0 0 24px rgba(22,255,161,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,255,161,0); }
}
.n7li-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7li-btnpulse 3.8s infinite;
}

/* Illustration below content */
.n7li-illustration {
  margin-top: 40px;
  text-align: center;
}
.n7li-img {
  width: 100%;
  max-width: 720px;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.9);
}
.n7li-img:hover {
  transform: scale(1.03);
  filter: brightness(1);
}

/* Mobile (<768px): center all content */
@media (max-width: 768px) {
  .n7li-content {
    text-align: center;
    padding: 20px 12px;
  }
  .n7li-title {
    font-size: 1.8rem;
  }
  .n7li-highlights {
    justify-content: center;
    margin: 24px auto 32px;
  }
  .n7li-btn {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
  }
  .n7li-illustration {
    margin-top: 32px;
  }
  .n7li-img {
    max-width: 90vw;
    margin: 0 auto;
  }
}

/* ========== n7li2 – “What You Get After Logging In” Lux Section ========== */
.n7li2-rewards {
  position: relative;
  background: #041f16;
  color: #eafbeb;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
  padding: 80px 20px 60px;
}

/* Background pattern and overlay */
.n7li2-bg {
  position: absolute;
  inset: 0;
  background: url('img/bg1.avif') center/cover no-repeat;
  filter: brightness(0.2) contrast(1.1);
  z-index: 0;
}

/* Container centers all content */
.n7li2-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.n7li2-title {
  font-size: clamp(1.9rem, 4vw + 1rem, 2.8rem);
  font-weight: 900;

  margin-bottom: 32px;
  background: linear-gradient(90deg, #00e89f 0%, #93ffb8 70%);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 2px 8px rgba(0, 232, 159, 0.3);
}

/* Benefits list */
.n7li2-list {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  text-align: left;
}
.n7li2-list li {
  font-size: 1rem;

  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
  color: #cdfbe0;
}
.n7li2-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #00e89f;
  font-weight: 700;
}

/* Highlight styles for key phrases */
.n7li2-highlight-speedy {
  font-weight: 700;
  color: #00e89f;
  border-bottom: 2px dotted #00e89f;
}
.n7li2-highlight-wait {
  font-style: italic;
  color: #93ffb8;
}
.n7li2-highlight-active {
  font-weight: 700;
  color: #ffe46b;
  background: rgba(255, 228, 107, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}
.n7li2-highlight-payments {
  font-weight: 700;
  color: #00e8c2;
  text-decoration: underline dotted #00e8c2;
}
.n7li2-highlight-games {
  font-weight: 700;
  color: #ffb857;
  border-left: 3px solid #ffb857;
  padding-left: 6px;
}
.n7li2-highlight-live {
  font-weight: 700;
  color: #16ffa1;
  background: rgba(22, 255, 161, 0.08);
  padding: 2px 8px;
  border-radius: 6px;
}

/* Illustration styling */
.n7li2-illustration {
  margin-bottom: 48px;
  text-align: center;
}
.n7li2-img {
  width: 100%;
  max-width: 760px;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.9);
}
.n7li2-img:hover {
  transform: scale(1.03);
  filter: brightness(1);
}

/* CTA Button */
.n7li2-cta {
  text-align: center;
}
.n7li2-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 18px 62px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(145deg, #00e89f 0%, #00ffc8 60%, #ffe46b 100%);
  color: #041f16;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  box-shadow: 0 4px 20px rgba(0, 232, 159, 0.4);
}
.n7li2-btn:hover,
.n7li2-btn:focus-visible {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 232, 159, 0.6);
}
.n7li2-btn:active {
  transform: translateY(0) scale(1);
}
/* Button pulse effect */
@keyframes n7li2-btnpulse {
  0% { box-shadow: 0 0 0 0 rgba(0,232,159,0.55); }
  70% { box-shadow: 0 0 0 24px rgba(0,232,159,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,232,159,0); }
}
.n7li2-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7li2-btnpulse 4s infinite;
}

/* Mobile view (<768px): center all content */
@media (max-width: 768px) {
  .n7li2-container {
    padding: 40px 12px 30px;
  }
  .n7li2-title {
    font-size: 1.8rem;
  }
  .n7li2-list {
    text-align: center;
    padding: 0;
  }
  .n7li2-list li {
    display: block;
    margin: 12px auto;
    padding-left: 0;
  }
  .n7li2-list li::before {
    display: none;
  }
  .n7li2-illustration {
    margin-bottom: 32px;
  }
  .n7li2-img {
    max-width: 90vw;
    margin: 0 auto;
  }
  .n7li2-btn {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ========== n7app – “N777 App” Lux Mobile Promo ========== */
.n7app-section {
  position: relative;
  background: #021711;
  overflow: hidden;
  font-family: "Inter", Arial, sans-serif;
  color: #e8ffed;
  padding: 0;
}

/* Background image with dark overlay */
.n7app-bg {
  position: absolute;
  inset: 0;
  background: url('img/bg.png') center/cover no-repeat;
  filter: brightness(0.3) contrast(1.2);
  z-index: 0;
}

/* Main container: 2-column on desktop, stacked on mobile */
.n7app-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  align-items: center;
  padding: 40px 20px 40px;
}

/* ---- Phone Mockup ---- */
.n7app-phone {
  position: relative;
  margin: 0;
  justify-self: center;
  align-self: center;
}
.n7app-phone__img {
  width: 100%;
  max-width: 360px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  transform: perspective(800px) rotateY(8deg);
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.9);
}
.n7app-phone:hover .n7app-phone__img {
  transform: perspective(800px) rotateY(0deg) scale(1.05);
  filter: brightness(1);
}

/* Rating badge */
.n7app-rating {
  position: absolute;
  bottom: -12px;
  right: 8%;
  background: rgba(22, 255, 161, 0.9);
  color: #021711;
  padding: 6px 12px;
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  box-shadow: 0 2px 12px rgba(22, 255, 161, 0.4);
}
.n7app-rating i {
  color: #ffffff;
  text-shadow: 0 0 4px #16ffa1;
}

/* ---- Copy Section ---- */
.n7app-copy {
  color: #e8ffed;
  text-align: center;
}

/* Title */
.n7app-title {
  font-size: clamp(2rem, 4vw + 1rem, 3.2rem);
  font-weight: 900;

  margin-bottom: 16px;
  background: linear-gradient(90deg, #00e89f 0%, #93ffb8 70%);
  -webkit-background-clip: text;
  color: transparent;
}

/* Main text */
.n7app-text {
  font-size: 1rem;

  opacity: 0.9;
  margin-bottom: 28px;
  color: #d7f0e8;
}

/* Feature highlights */
.n7app-features {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-bottom: 40px;
  justify-content: center;
  list-style: none;
  padding: 0;
  color: #bfffe1;
  font-size: 0.95rem;
}
.n7app-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 255, 161, 0.08);
  padding: 10px 14px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(22,255,161,0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}
.n7app-features li:hover {
  transform: translateY(-3px);
  background: rgba(22, 255, 161, 0.18);
}
.n7app-features i {
  color: #00e89f;
  font-size: 1.1rem;
}

/* ---- CTA Buttons ---- */
.n7app-cta {
  display: flex;
  gap: 25px;
  justify-content: center; /* Center on desktop and mobile */
  flex-wrap: wrap;
}
.n7app-btn {
  position: relative;
  overflow: hidden;
  padding: 18px 62px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 60px;
  border: none;
  box-shadow: 0 4px 18px rgba(22, 255, 161, 0.4);
}
.n7app-btn--download {
  background: linear-gradient(145deg, #00e89f 0%, #00ffc8 65%, #93ffb8 100%);
  color: #021711;
}
.n7app-btn--apk {
  background: transparent;
  color: #00e89f;
  border: 2px solid #00e89f;
}
.n7app-btn:hover,
.n7app-btn:focus-visible {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 32px rgba(22, 255, 161, 0.6);
}
.n7app-btn:active {
  transform: translateY(0) scale(1);
}

/* Button pulse effect */
@keyframes n7app-btnpulse {
  0% { box-shadow: 0 0 0 0 rgba(22,255,161,0.55); }
  70% { box-shadow: 0 0 0 24px rgba(22,255,161,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,255,161,0); }
}
.n7app-btn--download::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7app-btnpulse 3.5s infinite;
}

/* Mobile view (<768px): stack & center all */
@media (max-width: 768px) {
  .n7app-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px 12px 50px;
    text-align: center;
  }

.n7app-cta {
  gap: 0;
}

  .n7app-phone {
    max-width: 90vw;
    margin: 0 auto;
  }
  .n7app-phone__img {
    transform: none;
    max-width: 100%;
  }
  .n7app-rating {
    bottom: -10px;
    right: 10%;
  }
  .n7app-copy {
    margin: 0 auto;
  }
  .n7app-features {
    justify-content: center;
    margin: 24px auto 32px;
  }
  .n7app-btn {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ========== n7app3 – Dark-Green “Play Anytime” Section ========== */
.n7app3-section {
  position: relative;
  background: #135409; /* rich dark-green */
  color: #e8ffe8;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
  padding: 80px 20px 60px;
}

/* Subtle diagonal stripes overlay */
.n7app3-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.05) 0,
    rgba(0, 0, 0, 0.05) 2px,
    transparent 2px,
    transparent 6px
  );
  pointer-events: none;
  z-index: 0;
}

.n7app3-content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ========== Text Block ========== */
.n7app3-text {
  color: #e8ffe8;
}

.n7app3-title {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  font-weight: 900;

  margin-bottom: 20px;
  background: linear-gradient(90deg, #b0ff97 0%, #63c457 60%, #0af03f 100%);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.n7app3-paragraph {
  font-size: 1rem;

  opacity: 0.92;
  margin-bottom: 18px;
  color: #d0f4d0;
}

/* Highlighted sentence with unique style */
.n7app3-highlight {
  font-size: 1.05rem;
  font-weight: 700;

  margin: 28px 0;
  color: #f4ff8a;
  background: rgba(244, 255, 138, 0.15);
  padding: 12px 16px;
  border-left: 4px solid #f4ff8a;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(244, 255, 138, 0.3);
}

/* CTA Button */
.n7app3-cta {
  text-align: center; /* center on all screens */
  margin-top: 16px;
}
.n7app3-btn {
  position: relative;
  display: inline-block;
  padding: 18px 62px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(145deg, #b0ff97 0%, #63c457 65%, #0af03f 100%);
  color: #135409;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  box-shadow: 0 4px 18px rgba(180, 255, 170, 0.4);
}
.n7app3-btn:hover,
.n7app3-btn:focus-visible {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 32px rgba(180, 255, 170, 0.6);
}
.n7app3-btn:active {
  transform: translateY(0) scale(1);
}
/* Button pulse effect */
@keyframes n7app3-btnpulse {
  0% { box-shadow: 0 0 0 0 rgba(180,255,170,0.55); }
  70% { box-shadow: 0 0 0 24px rgba(180,255,170,0); }
  100% { box-shadow: 0 0 0 0 rgba(180,255,170,0); }
}
.n7app3-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7app3-btnpulse 4s infinite;
}

/* ========== Image Block ========== */
.n7app3-image {
  position: relative;
  justify-self: center;
  align-self: center;
}
.n7app3-phone {
  width: 100%;
  max-width: 380px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  transform: perspective(800px) rotateY(-6deg);
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.9);
}
.n7app3-image:hover .n7app3-phone {
  transform: perspective(800px) rotateY(0deg) scale(1.05);
  filter: brightness(1);
}

/* Floating sparkles */
.n7app3-spark {
  position: absolute;
  width: 28px;
  height: 28px;
  background: radial-gradient(circle, #b0ff97 0%, transparent 70%);
  border-radius: 50%;
  animation: n7app3-sparkmove 3.5s infinite ease-in-out;
  opacity: 0.7;
  pointer-events: none;
}
.n7app3-spark--a {
  top: 10%;
  right: 15%;
  animation-duration: 4s;
}
.n7app3-spark--b {
  bottom: 12%;
  left: 18%;
  animation-duration: 5s;
}
@keyframes n7app3-sparkmove {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.1); }
  100% { transform: translateY(0) scale(1); }
}

/* ========== Responsive (<768px) ========== */
@media (max-width: 768px) {
  .n7app3-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .n7app3-image {
    max-width: 90vw;
    margin: 0 auto;
  }
  .n7app3-phone {
    transform: none;
    max-width: 100%;
  }
  .n7app3-spark--a {
    top: 6%;
    right: 12%;
  }
  .n7app3-spark--b {
    bottom: 8%;
    left: 12%;
  }
  .n7app3-text {
    margin: 0 auto;
  }
  .n7app3-paragraph {
    margin: 0 auto 16px;
    max-width: 90vw;
  }
  .n7app3-highlight {
    margin: 24px auto;
    max-width: 90vw;
  }
  .n7app3-btn {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ========== n7app4 – Luxurious Dark-Green Section ========== */
.n7app4-section {
  position: relative;
  background: #0f2e1c; /* deep dark green */
  overflow: hidden;
  font-family: "Inter", Arial, sans-serif;
  color: #e0ffee;
  padding: 80px 20px 60px;
}

/* Diagonal pattern overlay */
.n7app4-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.05) 0,
    rgba(0, 0, 0, 0.05) 1px,
    transparent 1px,
    transparent 5px
  );
  pointer-events: none;
  z-index: 0;
}

/* Container: two-column on desktop, stacked on mobile */
.n7app4-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ---- IMAGE BLOCK ---- */
.n7app4-image {
  position: relative;
  justify-self: center;
  align-self: center;
  margin: 0;
}
.n7app4-phone {
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  transform: perspective(800px) rotateY(6deg);
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.9);
}
.n7app4-image:hover .n7app4-phone {
  transform: perspective(800px) rotateY(0deg) scale(1.05);
  filter: brightness(1);
}
/* Badge on phone */
.n7app4-badge {
  position: absolute;
  top: 10%;
  left: 12%;
  background: linear-gradient(145deg, #00d17a 0%, #00b362 70%);
  color: #0f2e1c;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 12px rgba(0, 209, 122, 0.4);
  animation: n7app4-badgepulse 4s infinite;
}
@keyframes n7app4-badgepulse {
  0%,100% { box-shadow: 0 2px 12px rgba(0, 209, 122, 0.4); }
  50% { box-shadow: 0 6px 24px rgba(0, 209, 122, 0.7); }
}

/* ---- CONTENT BLOCK ---- */
.n7app4-content {
  color: #e0ffee;
}

/* Title */
.n7app4-title {
  font-size: 2.5rem;
  font-weight: 900;

  margin-bottom: 16px;
  background: linear-gradient(90deg, #63c457 0%, #93ffb8 70%, #c4ffdc 100%);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.n7app4-accent {
  color: #00d17a;
  text-shadow: 0 0 8px #00d17a88;
}

/* Paragraph text */
.n7app4-text {
  font-size: 1rem;

  opacity: 0.92;
  margin-bottom: 18px;
  color: #c8ffdd;
}

/* Highlighted sentence */
.n7app4-highlight {
  font-size: 1.05rem;
  font-weight: 700;

  margin: 28px 0;
  color: #ffe46b;
  background: rgba(255, 228, 107, 0.15);
  padding: 12px 16px;
  border-left: 4px solid #ffe46b;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(255, 228, 107, 0.3);
}

/* ---- CTA BUTTON ---- */
.n7app4-cta {
  text-align: center; /* center on all screens */
  margin-top: 12px;
}
.n7app4-btn {
  position: relative;
  display: inline-block;
  padding: 18px 64px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(145deg, #63c457 0%, #3ea647 65%, #00d17a 100%);
  color: #0f2e1c;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  box-shadow: 0 4px 18px rgba(60, 200, 120, 0.4);
}
.n7app4-btn:hover,
.n7app4-btn:focus-visible {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 32px rgba(60, 200, 120, 0.6);
}
.n7app4-btn:active {
  transform: translateY(0) scale(1);
}
/* Pulse effect */
@keyframes n7app4-btnpulse {
  0% { box-shadow: 0 0 0 0 rgba(60,200,120,0.55); }
  70% { box-shadow: 0 0 0 24px rgba(60,200,120,0); }
  100% { box-shadow: 0 0 0 0 rgba(60,200,120,0); }
}
.n7app4-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7app4-btnpulse 4s infinite;
}

/* ========== Responsive (<768px) ========== */
@media (max-width: 768px) {
  .n7app4-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .n7app4-image {
    max-width: 90vw;
    margin: 0 auto;
  }
  .n7app4-phone {
    transform: none;
    max-width: 100%;
  }
  .n7app4-badge {
    top: 8%;
    left: 8%;
  }
  .n7app4-content {
    margin: 0 auto;
  }
  .n7app4-pattern {
    display: none;
  }
  .n7app4-text {
    margin: 0 auto 16px;
    max-width: 90vw;
  }
  .n7app4-highlight {
    margin: 24px auto;
    max-width: 90vw;
  }
  .n7app4-btn {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
  }
}
/* ========== n7app5 – Dark-Green “Smarter Way” Section ========== */
.n7app5-section {
  position: relative;
  background: #0f2e1c; /* rich dark green */
  color: #e0ffee;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
  padding: 80px 20px 60px;
}

/* Subtle diagonal stripes overlay */
.n7app5-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.05) 0,
    rgba(0, 0, 0, 0.05) 1px,
    transparent 1px,
    transparent 5px
  );
  pointer-events: none;
  z-index: 0;
}

/* Container: two columns on desktop, stacked on mobile */
.n7app5-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ---- IMAGE BLOCK ---- */
.n7app5-image {
  position: relative;
  justify-self: center;
  align-self: center;
  margin: 0;
}
.n7app5-phone {
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  transform: perspective(800px) rotateY(6deg);
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.9);
}
.n7app5-image:hover .n7app5-phone {
  transform: perspective(800px) rotateY(0deg) scale(1.05);
  filter: brightness(1);
}
/* Badge on phone */
.n7app5-badge {
  position: absolute;
  top: 10%;
  left: 12%;
  background: linear-gradient(145deg, #ffd700 0%, #fffa8a 70%);
  color: #0f2e1c;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 12px rgba(255, 215, 0, 0.4);
  animation: n7app5-badgepulse 4s infinite;
}
@keyframes n7app5-badgepulse {
  0%,100% { box-shadow: 0 2px 12px rgba(255, 215, 0, 0.4); }
  50% { box-shadow: 0 6px 24px rgba(255, 215, 0, 0.7); }
}

/* ---- CONTENT BLOCK ---- */
.n7app5-content {
  color: #e0ffee;
}

/* Title */
.n7app5-title {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  font-weight: 900;

  margin-bottom: 16px;
  background: linear-gradient(90deg, #63c457 0%, #93ffb8 70%, #c4ffdc 100%);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Paragraph text */
.n7app5-text {
  font-size: 1rem;

  opacity: 0.92;
  margin-bottom: 18px;
  color: #c8ffdd;
}

/* Highlighted sentence */
.n7app5-highlight {
  font-size: 1.05rem;
  font-weight: 700;

  margin: 28px 0;
  color: #ffe46b;
  background: rgba(255, 228, 107, 0.15);
  padding: 12px 16px;
  border-left: 4px solid #ffe46b;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(255, 228, 107, 0.3);
}

/* ---- CTA BUTTON ---- */
.n7app5-cta {
  text-align: center; /* center on all screens */
  margin-top: 16px;
}
.n7app5-btn {
  position: relative;
  display: inline-block;
  padding: 18px 64px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(145deg, #ffd700 0%, #fffa8a 65%, #93ffb8 100%);
  color: #0f2e1c;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  box-shadow: 0 4px 18px rgba(255, 215, 0, 0.4);
}
.n7app5-btn:hover,
.n7app5-btn:focus-visible {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.6);
}
.n7app5-btn:active {
  transform: translateY(0) scale(1);
}
/* Pulse effect */
@keyframes n7app5-btnpulse {
  0% { box-shadow: 0 0 0 0 rgba(255,215,0,0.55); }
  70% { box-shadow: 0 0 0 24px rgba(255,215,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,215,0,0); }
}
.n7app5-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7app5-btnpulse 4s infinite;
}

/* ========== Responsive (<768px) ========== */
@media (max-width: 768px) {
  .n7app5-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .n7app5-image {
    max-width: 90vw;
    margin: 0 auto;
  }
  .n7app5-phone {
    transform: none;
    max-width: 100%;
  }
  .n7app5-badge {
    top: 8%;
    left: 8%;
  }
  .n7app5-content {
    margin: 0 auto;
  }
  .n7app5-text {
    margin: 0 auto 16px;
    max-width: 90vw;
  }
  .n7app5-highlight {
    margin: 24px auto;
    max-width: 90vw;
  }
  .n7app5-btn {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
  }
}


/* ========== n7h – Dark-Green “App Highlights” Section ========== */
.n7h-highlights {
  position: relative;
  background: #0f2e1c;
  color: #e0ffee;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
  padding: 80px 20px 60px;
}

/* Subtle diagonal pattern overlay */
.n7h-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.04) 0,
    rgba(0, 0, 0, 0.04) 2px,
    transparent 2px,
    transparent 6px
  );
  pointer-events: none;
  z-index: 0;
}

.n7h-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  
  gap: 20px;
  align-items: center;
  text-align: center;
}

/* ---- IMAGE BLOCK ---- */
.n7h-image {
  position: relative;
  justify-self: center;
  align-self: center;
  margin: 0;
}
.n7h-img {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  transform: perspective(800px) rotateY(6deg);
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.9);
}
.n7h-image:hover .n7h-img {
  transform: perspective(800px) rotateY(0deg) scale(1.04);
  filter: brightness(1);
}
/* Badge on image */
.n7h-badge {
  position: absolute;
  top: 14%;
  left: 10%;
  background: linear-gradient(145deg, #00d17a 0%, #63c457 80%);
  color: #0f2e1c;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 12px rgba(0, 209, 122, 0.4);
  animation: n7h-badgepulse 4s infinite;
}
@keyframes n7h-badgepulse {
  0%,100% { box-shadow: 0 2px 12px rgba(0, 209, 122, 0.4); }
  50% { box-shadow: 0 6px 24px rgba(0, 209, 122, 0.7); }
}

/* ---- CONTENT BLOCK ---- */
.n7h-content {
  color: #e0ffee;
  text-align: center;
}

/* Title */
.n7h-title {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  font-weight: 900;

  margin-bottom: 20px;
  background: linear-gradient(90deg, #63c457 0%, #93ffb8 70%, #c4ffdc 100%);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.n7h-accent {
  color: #00d17a;
  text-shadow: 0 0 6px #00d17a88;
}

/* List of features */
.n7h-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
.n7h-list li {
  font-size: 1rem;

  margin-bottom: 20px;
  padding-left: 36px;
  position: relative;
  color: #c8ffe0;
}



/* Feature title styles */
.n7h-feature {
  font-weight: 700;
  display: inline-block;
  margin-right: 4px;
}
.n7h-feature--fast {
  color: #ffd700;
  border-bottom: 2px dotted #ffd700;
}
.n7h-feature--secure {
  color: #00e8c2;
  background: rgba(0, 232, 194, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}
.n7h-feature--rewards {
  color: #ffb857;
  border-left: 3px solid #ffb857;
  padding-left: 6px;
}
.n7h-feature--live {
  color: #00e79a;
  text-decoration: underline dotted #00e79a;
}
.n7h-feature--crash {
  color: #ff4f4f;
  background: rgba(255, 79, 79, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ---- CTA BUTTON ---- */
.n7h-cta {
  text-align: center; /* center on all screens */
}
.n7h-btn {
  position: relative;
  display: inline-block;
  padding: 18px 64px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(145deg, #63c457 0%, #3ea647 65%, #00d17a 100%);
  color: #0f2e1c;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  box-shadow: 0 4px 18px rgba(60, 200, 120, 0.4);
}
.n7h-btn:hover,
.n7h-btn:focus-visible {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 32px rgba(60, 200, 120, 0.6);
}
.n7h-btn:active {
  transform: translateY(0) scale(1);
}
/* Button pulse effect */
@keyframes n7h-btnpulse {
  0% { box-shadow: 0 0 0 0 rgba(60,200,120,0.55); }
  70% { box-shadow: 0 0 0 24px rgba(60,200,120,0); }
  100% { box-shadow: 0 0 0 0 rgba(60,200,120,0); }
}
.n7h-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7h-btnpulse 4s infinite;
}

/* ========== Responsive (<768px) ========== */
@media (max-width: 768px) {
  .n7h-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .n7h-image {
    max-width: 90vw;
    margin: 0 auto;
  }
  .n7h-img {
    transform: none;
    max-width: 100%;
  }
  .n7h-badge {
    top: 8%;
    left: 8%;
  }
  .n7h-content {
    margin: 0 auto;
  }
  .n7h-text {
    margin: 0 auto 16px;
    max-width: 90vw;
  }
  .n7h-list li {
    margin-bottom: 16px;
    padding-left: 0;
  }
  .n7h-list li::before {
    display: none;
  }
  .n7h-btn {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
  }
}
/* ========== n7promo – Hero Section ==========
   Full-screen background with overlay, gradient text, and animated buttons.
   Mobile (<768px): all content centered.
*/
.n7promo-hero {
  position: relative;
  
  background: url('img/bg1.avif') center/cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Arial, sans-serif;
}

/* Dark overlay to ensure text legibility */
.n7promo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 40, 20, 0.65);
  z-index: 0;
}

/* Content wrapper */
.n7promo-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  padding: 30px;
  text-align: center; /* Center on desktop and mobile */
}

/* Gradient heading */
.n7promo-title {
  font-size: clamp(2rem, 5vw + 1rem, 4rem);
  font-weight: 900;

  margin-bottom: 40px;
  background: linear-gradient(90deg, #00e79a 0%, #ffd700 60%, #93ffb8 100%);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Button container */
.n7promo-buttons {
  display: flex;
  gap: 24px;
  justify-content: center; /* Always center */
  flex-wrap: wrap;
}

/* Common button style */
.n7promo-btn {
  position: relative;
  display: inline-block;
  padding: 18px 56px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

/* Primary button: bright gradient with pulse */
.n7promo-btn--primary {
  background: linear-gradient(145deg, #00e79a 0%, #00b362 70%, #63c457 100%);
  color: #01210d;
  box-shadow: 0 4px 16px rgba(0, 231, 154, 0.4);
}
.n7promo-btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7promo-pulse 3.8s infinite;
}
.n7promo-btn--primary:hover,
.n7promo-btn--primary:focus-visible {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0, 231, 154, 0.6);
}
.n7promo-btn--primary:active {
  transform: translateY(0) scale(1);
}

/* Secondary button: outlined style */
.n7promo-btn--secondary {
  background: transparent;
  color: #00e79a;
  border: 2px solid #00e79a;
  box-shadow: 0 4px 16px rgba(0, 231, 154, 0.3);
}
.n7promo-btn--secondary:hover,
.n7promo-btn--secondary:focus-visible {
  transform: translateY(-5px);
  background: rgba(0, 231, 154, 0.1);
  box-shadow: 0 8px 28px rgba(0, 231, 154, 0.5);
}
.n7promo-btn--secondary:active {
  transform: translateY(0);
}

/* Pulse animation for primary button */
@keyframes n7promo-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 231, 154, 0.55);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(0, 231, 154, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 231, 154, 0);
  }
}

/* Mobile responsive: center everything (already centered by default) */
@media (max-width: 768px) {
  .n7promo-content {
    padding: 0 12px;
  }
  .n7promo-title {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
  .n7promo-buttons {
    gap: 0;
  }
  .n7promo-btn {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ========== n7h2 – “Custom Bonuses” Section ========== */
.n7h2-bonuses {
  position: relative;
  background: #002b1c; /* rich dark green */
  overflow: hidden;
  font-family: "Inter", Arial, sans-serif;
  color: #e0ffee;
  padding: 80px 20px 60px;
}

/* Subtle diagonal stripes overlay */
.n7h2-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.05) 0,
    rgba(0, 0, 0, 0.05) 1px,
    transparent 1px,
    transparent 5px
  );
  pointer-events: none;
  z-index: 0;
}

.n7h2-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* ---- CONTENT BLOCK ---- */
.n7h2-content {
  color: #e0ffee;
}

/* Title */
.n7h2-title {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  font-weight: 900;

  margin-bottom: 28px;
  background: linear-gradient(90deg, #00e79a 0%, #ffd700 60%, #93ffb8 100%);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Cards container */
.n7h2-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

/* Individual card */
.n7h2-card {
  display: flex;
  gap: 16px;
  background: rgba(0, 100, 70, 0.3);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background 0.3s ease;
}
.n7h2-card:hover {
  transform: translateY(-4px);
  background: rgba(0, 100, 70, 0.5);
}

/* Icon on card */
.n7h2-card-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

/* Card text */
.n7h2-card-text {
  flex: 1;
}
.n7h2-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #b0ffd4;
}
.n7h2-card-text p {
  margin: 0;
  font-size: 0.96rem;

  color: #cfffe0;
}

/* Jackpot highlight */
.n7h2-jackpot-highlight {
  font-weight: 700;
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

/* Telegram invite */
.n7h2-telegram {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  padding: 10px;
  border-left: 2px solid lightgray;
  background: green;

  margin-bottom: 36px;
  color: #fff;
}
.n7h2-telegram-icon {
  font-size: 1.35rem;
  color: #00e79a;
}
.n7h2-telegram-text {
  opacity: 0.88;
}

/* CTA Button */
.n7h2-cta {
  text-align: center; /* center on desktop and mobile */
}
.n7h2-btn {
  position: relative;
  display: inline-block;
  padding: 18px 64px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(145deg, #00e79a 0%, #00b362 65%, #63c457 100%);
  color: #002b1c;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  box-shadow: 0 4px 18px rgba(60, 200, 120, 0.4);
}
.n7h2-btn:hover,
.n7h2-btn:focus-visible {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(60, 200, 120, 0.6);
}
.n7h2-btn:active {
  transform: translateY(0) scale(1);
}
/* Pulse effect */
@keyframes n7h2-btnpulse {
  0% { box-shadow: 0 0 0 0 rgba(60,200,120,0.55); }
  70% { box-shadow: 0 0 0 24px rgba(60,200,120,0); }
  100% { box-shadow: 0 0 0 0 rgba(60,200,120,0); }
}
.n7h2-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7h2-btnpulse 4s infinite;
}

/* ---- IMAGE BLOCK ---- */
.n7h2-image {
  position: relative;
  justify-self: center;
  align-self: center;
  margin: 0;
}
.n7h2-img {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  transform: perspective(800px) rotateY(-6deg);
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.9);
}
.n7h2-image:hover .n7h2-img {
  transform: perspective(800px) rotateY(0deg) scale(1.05);
  filter: brightness(1);
}

/* ========== Responsive (<768px) ========== */
@media (max-width: 768px) {
  .n7h2-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .n7h2-image {
    max-width: 90vw;
    margin: 0 auto;
  }
  .n7h2-img {
    transform: none;
    max-width: 100%;
  }
  .n7h2-content {
    margin: 0 auto;
  }
  .n7h2-cards {
    gap: 16px;
  }
  .n7h2-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .n7h2-card-icon {
    margin-bottom: 8px;
  }
  .n7h2-card-text {
    width: 100%;
  }
  .n7h2-list li {
    padding-left: 0;
  }
  .n7h2-telegram {
    justify-content: center;
  }
  .n7h2-btn {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ========== n7h3 – “Slot Promotions” Lux Section ========== */
.n7h3-promotions {
  position: relative;
  background: #0b301f; /* deep dark green */
  overflow: hidden;
  font-family: "Inter", Arial, sans-serif;
  color: #e0ffee;
  padding: 80px 20px 60px;
}

/* Textured diagonal overlay */
.n7h3-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.05) 0,
    rgba(0, 0, 0, 0.05) 2px,
    transparent 2px,
    transparent 6px
  );
  pointer-events: none;
  z-index: 0;
}

.n7h3-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* ---- IMAGE BLOCK ---- */
.n7h3-image {
  position: relative;
  justify-self: center;
  align-self: center;
  margin: 0;
}
.n7h3-img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  transform: perspective(800px) rotateY(-6deg);
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.9);
}
.n7h3-image:hover .n7h3-img {
  transform: perspective(800px) rotateY(0deg) scale(1.04);
  filter: brightness(1);
}

/* ---- CONTENT BLOCK ---- */
.n7h3-content {
  color: #e0ffee;
}

/* Title */
.n7h3-title {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  font-weight: 900;

  margin-bottom: 32px;
  background: linear-gradient(90deg, #00e79a 0%, #ffd700 60%, #93ffb8 100%);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Cards container */
.n7h3-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

/* Individual card */
.n7h3-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 80, 50, 0.3);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background 0.3s ease;
}
.n7h3-card:hover {
  transform: translateY(-4px);
  background: rgba(0, 80, 50, 0.5);
}

/* Card icon */
.n7h3-card-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

/* Card body */
.n7h3-card-body {
  flex: 1;
}
.n7h3-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #b0ffd4;
}
.n7h3-card-body p {
  margin: 0;
  font-size: 0.96rem;

  color: #cfffe0;
}

/* Highlight within card */
.n7h3-jackpot-highlight {
  font-weight: 700;
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

/* Telegram invite */
.n7h3-telegram {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  margin-bottom: 36px;
  color: #b0ffd4;
}
.n7h3-telegram-icon {
  font-size: 1.35rem;
  color: #ffd700;
}
.n7h3-telegram-text {
  opacity: 0.88;
  font-style: italic;
}

/* ---- CTA BUTTON ---- */
.n7h3-cta {
  text-align: center; /* center on desktop and mobile */
}
.n7h3-btn {
  position: relative;
  display: inline-block;
  padding: 18px 64px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(145deg, #00e79a 0%, #00b362 65%, #63c457 100%);
  color: #0b301f;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  box-shadow: 0 4px 18px rgba(60, 200, 120, 0.4);
}
.n7h3-btn:hover,
.n7h3-btn:focus-visible {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(60, 200, 120, 0.6);
}
.n7h3-btn:active {
  transform: translateY(0) scale(1);
}
/* Pulse effect */
@keyframes n7h3-btnpulse {
  0% { box-shadow: 0 0 0 0 rgba(60,200,120,0.55); }
  70% { box-shadow: 0 0 0 24px rgba(60,200,120,0); }
  100% { box-shadow: 0 0 0 0 rgba(60,200,120,0); }
}
.n7h3-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7h3-btnpulse 4s infinite;
}

/* ========== Responsive (<768px) ========== */
@media (max-width: 768px) {
  .n7h3-wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
    text-align: center;
  }
  .n7h3-image {
    max-width: 90vw;
    margin: 0 auto;
  }
  .n7h3-img {
    transform: none;
    max-width: 100%;
  }
  .n7h3-content {
    margin: 0 auto;
  }
  .n7h3-cards {
    gap: 16px;
  }
  .n7h3-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .n7h3-card-icon {
    margin-bottom: 8px;
  }
  .n7h3-card-body {
    width: 100%;
  }
  .n7h3-btn {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ========== n7h4 – Game-Wide Promotions Section ========== */
.n7h4-promos {
  position: relative;
  background: #141c2b;
  overflow: hidden;
  font-family: "Inter", Arial, sans-serif;
  color: #e5fff7;
  padding: 80px 20px 60px;
}

/* Decorative, animated background */
.n7h4-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 35%, #00e79a22 0, #00e79a05 40%, transparent 80%),
              linear-gradient(120deg, #141c2b 60%, #002b1c 100%);
  z-index: 0;
  pointer-events: none;
}

/* Flex (desktop), Column (mobile) */
.n7h4-wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.n7h4-visual {
  position: relative;
  justify-self: center;
  align-self: center;
  margin: 0;
}
.n7h4-img {
  width: 100%;
  max-width: 450px;
  border-radius: 22px;
  
  filter: brightness(0.95);
  transition: filter 0.5s, transform 0.5s;
}
.n7h4-visual:hover .n7h4-img {
  filter: brightness(1.05) saturate(1.2);
  transform: scale(1.04) rotateY(1.5deg);
}

/* Content */
.n7h4-main {
  color: #e5fff7;
}

/* Title */
.n7h4-title {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  font-weight: 900;

  margin-bottom: 32px;
  background: linear-gradient(90deg, #00e79a 0%, #93ffb8 55%, #ffd700 100%);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 2px 6px #00180d80;
}

.n7h4-promos-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 28px;
}

/* Individual promo */
.n7h4-promo {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(30, 55, 30, 0.3);
  border-radius: 14px;
  padding: 14px 20px 14px 16px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.26);
  transition: background 0.3s, box-shadow 0.3s;
  position: relative;
}
.n7h4-promo:hover {
  background: rgba(30, 55, 30, 0.6);
  box-shadow: 0 8px 32px rgba(0, 231, 154, 0.14);
}
.n7h4-promo-icon {
  font-size: 1.7rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.n7h4-promo-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffd700;
  display: block;
}
.n7h4-promo-desc {
  font-size: 0.97rem;
  color: #c0ffe1;
  display: block;
}
.n7h4-highlight-bg {
  
  font-weight: 700;
  color: #00e79a;
  background: rgba(0, 231, 154, 0.13);
  border-radius: 6px;
  padding: 4px 8px;
  margin-top: 3px;
  font-size: 1rem;
  box-shadow: 0 2px 12px #00e79a40;
}

/* Special info row */
.n7h4-info-row {
  margin: 28px 0 34px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.n7h4-info--special {
  background: linear-gradient(90deg, #ffd70022 0%, #00e79a33 100%);
  color: #ffd700;
  font-size: 1.03rem;
  font-weight: 700;
  border-radius: 6px;
  padding: 10px 20px;
  box-shadow: 0 2px 18px #ffd70025;
}

/* CTA Button */
.n7h4-cta {
  text-align: center;
}
.n7h4-btn {
  position: relative;
  display: inline-block;
  padding: 18px 62px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 60px;
  background: linear-gradient(145deg, #00e79a 0%, #00b362 60%, #ffd700 100%);
  color: #141c2b;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(60, 200, 120, 0.25);
  transition: transform 0.32s, box-shadow 0.32s;
}
.n7h4-btn:hover,
.n7h4-btn:focus-visible {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.22);
}
.n7h4-btn:active {
  transform: translateY(0) scale(1);
}
@keyframes n7h4-btnpulse {
  0% { box-shadow: 0 0 0 0 rgba(255,215,0,0.4);}
  70% { box-shadow: 0 0 0 20px rgba(255,215,0,0);}
  100% { box-shadow: 0 0 0 0 rgba(255,215,0,0);}
}
.n7h4-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7h4-btnpulse 4s infinite;
}

/* ========== Responsive (<768px) ========== */
@media (max-width: 768px) {
  .n7h4-wrap {
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .n7h4-visual {
    max-width: 90vw;
    margin: 0 auto;
  }
  .n7h4-img {
    max-width: 100%;
    transform: none;
  }
  .n7h4-main {
    margin: 0 auto;
  }
  .n7h4-promos-list {
    gap: 14px;
  }
  .n7h4-promo {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 12px;
  }
  .n7h4-promo-icon {
    margin-bottom: 5px;
  }
  .n7h4-info-row {
    justify-content: center;
    margin: 18px 0 28px;
  }
  .n7h4-btn {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ========== n7h5 – Boosted Bets Section ========== */
.n7h5-bets {
  position: relative;
  background: #132c1d;
  color: #e0ffee;
  font-family: "Inter", Arial, sans-serif;
  padding: 82px 20px 60px;
  overflow: hidden;
}

/* Glowing radial and gradient background */
.n7h5-gradient-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 40% 20%, #00e79a2e 0 45%, transparent 80%),
    radial-gradient(circle at 80% 80%, #ffd70026 0 34%, transparent 90%),
    linear-gradient(120deg, #132c1d 80%, #18252b 100%);
  z-index: 0;
  pointer-events: none;
}

.n7h5-flex {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* --- IMAGE BLOCK --- */
.n7h5-imgbox {
  position: relative;
  justify-self: center;
  align-self: center;
  margin: 0;
}
.n7h5-img {
  width: 100%;
  max-width: 410px;
  border-radius: 21px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.75);
  filter: brightness(0.93);
  transition: filter 0.4s, transform 0.5s;
}
.n7h5-imgbox:hover .n7h5-img {
  filter: brightness(1.06) saturate(1.1);
  transform: scale(1.04) rotateY(-1.5deg);
}

/* --- CONTENT --- */
.n7h5-main {
  color: #e0ffee;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Title */
.n7h5-title {
  font-size: clamp(2rem, 4vw + 1rem, 2.7rem);
  font-weight: 900;
  margin-bottom: 36px;
  background: linear-gradient(90deg, #00e79a 0%, #ffd700 60%, #b9ffc1 100%);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 2px 9px #00180d69;
}

/* List of promos */
.n7h5-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 30px;
}
.n7h5-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  background: rgba(0, 75, 40, 0.18);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 2px 12px rgba(0, 231, 154, 0.09);
  position: relative;
  transition: background 0.32s, box-shadow 0.32s;
}
.n7h5-row:hover {
  background: rgba(0, 75, 40, 0.28);
  box-shadow: 0 8px 30px rgba(0, 231, 154, 0.10);
}
.n7h5-icon {
  font-size: 1.5rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.n7h5-label {
  font-weight: 700;
  color: #ffd700;
  min-width: 150px;
}
.n7h5-desc {
  color: #d7ffe3;
  font-size: 0.98rem;
}
.n7h5-highlight-bg {
  display: inline-block;
  font-weight: 700;
  color: #00e79a;
  background: rgba(0, 231, 154, 0.13);
  border-radius: 7px;
  padding: 4px 12px;
  margin-top: 3px;
  font-size: 1.01rem;
  box-shadow: 0 2px 14px #00e79a41;
}

/* Info row */
.n7h5-info {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 35px;
}
.n7h5-info-icon {
  font-size: 1.32rem;
  color: #ffd700;
}
.n7h5-info-special {
  font-size: 1.02rem;
  font-weight: 700;
  color: #ffd700;
  background: linear-gradient(90deg, #ffd70022 0%, #00e79a33 100%);
  border-radius: 7px;
  padding: 10px 20px;
  box-shadow: 0 2px 16px #ffd70019;
}

/* CTA Button */
.n7h5-cta {
  text-align: center;
}
.n7h5-btn {
  position: relative;
  display: inline-block;
  padding: 18px 58px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 60px;
  background: linear-gradient(145deg, #00e79a 0%, #00b362 60%, #ffd700 100%);
  color: #0d1c14;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(60, 200, 120, 0.22);
  transition: transform 0.32s, box-shadow 0.32s;
}
.n7h5-btn:hover,
.n7h5-btn:focus-visible {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.22);
}
.n7h5-btn:active {
  transform: translateY(0) scale(1);
}
@keyframes n7h5-btnpulse {
  0% { box-shadow: 0 0 0 0 rgba(255,215,0,0.42);}
  70% { box-shadow: 0 0 0 18px rgba(255,215,0,0);}
  100% { box-shadow: 0 0 0 0 rgba(255,215,0,0);}
}
.n7h5-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7h5-btnpulse 4s infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .n7h5-flex {
    display: flex;
    flex-direction: column-reverse;
    gap: 28px;
    text-align: center;
  }
  .n7h5-imgbox {
    max-width: 92vw;
    margin: 0 auto;
  }
  .n7h5-img {
    max-width: 100%;
    transform: none;
  }
  .n7h5-main {
    margin: 0 auto;
  }
  .n7h5-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 12px;
    gap: 7px;
  }
  .n7h5-label {
    min-width: 0;
  }
  .n7h5-btn {
    width: 80%;
    max-width: 260px;
    margin: 0 auto;
  }
}




















/* ===== base ===== */
.zfooter {
  background: #003d05;
  color: #d9d7e5;
  font-size: .95rem;
    padding: 60px 6vw 149px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

/* 1 ▸ logo + nav */
.zfooter__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 28px
}

.zfooter__logo img {
  width: 160px
}

.zfooter__links {
  display: flex;
  gap: 24px;
  list-style: none;
  justify-content: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap
}

.zfooter__links a {
  color: #ffb866;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s
}

.zfooter__links a:hover {
  color: #fff
}

.zfooter__care {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 2 ▸ legal */
.zfooter__legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center
}

.zfooter__age {
  font-weight: 900;
  color: #ff8540;
  display: flex;
  align-items: center;
  gap: 6px
}

.zfooter__age-text {
  margin: 0;
  font-size: .9rem;
  color: #bcb8d2
}

.zfooter__care a {
  color: #6aa8ff;
  margin-right: 18px;
  width: 130px;
  text-decoration: none
}

.zfooter__care a:hover {
  color: #fff
}

/* 3 ▸ payments */
.zfooter__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center
}

.zfooter__payments i,
.zfooter__payments img,
.zfooter__crypto {
  font-size: 1.5rem;
  color: #ffb866;
  height: 32px;
  background-color: white;
  padding: 2px;
  display: flex;
  align-items: center;
  width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 2rem;
}

.zfooter__crypto {
  font-size: .85rem;
  font-weight: 800;
  padding: 6px 10px;
  border: 1px solid #ffb866;
  border-radius: 6px
}

/* divider (mobile only) */
.zfooter__divider {
  border: none;
  border-top: 1px solid #242235;
  display: none;
  margin: 16px 0
}

/* 4 ▸ socials */
.zfooter__social {
  display: flex;
  gap: 18px;
  justify-content: center
}

.zfooter__social a {
  color: #bcb8d2;
  font-size: 1.9rem;
  transition: color .2s
}

.zfooter__social a:hover {
  color: #ffb866
}

/* 5 ▸ closing */
.zfooter__closing {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.zfooter__closing-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffb866;
  margin: 0
}

.zfooter__closing-text {
  margin: 0;
  color: #bcb8d2;
}

/* ===== responsive ===== */
@media(max-width:900px) {
  .zfooter__top, .n7gp-zones {
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .zfooter__legal {
    align-items: center;
    text-align: center
  }
}

@media(max-width:768px) {

  /* center everything */
  .zfooter__payments,
  .zfooter__care {
    justify-content: center
  }

  .zfooter__divider {
    display: block
  }
}

/* ========== n7lg – “Login Hero” Luxury Section ========== */
.n7lg-login {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  font-family: "Inter", Arial, sans-serif;
  color: #e6ffec;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background image with dark overlay */
.n7lg-bg {
  position: absolute;
  inset: 0;
  background: url('img/bg.png') center/cover no-repeat;
  filter: brightness(0.15);
  z-index: 0;
}

/* Main container grid */
.n7lg-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  
  align-items: center;
  padding: 60px 20px 80px;
}

/* Illustration */
.n7lg-visual {
  position: relative;
  margin: 0;
  align-self: center;
}
.n7lg-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  transform: perspective(900px) rotateY(8deg);
  transition: transform 0.6s ease;
}

.n7h4-info-rows {
  text-align: center;
}

.n7lg-visual:hover .n7lg-img {
  transform: perspective(900px) rotateY(0deg) scale(1.03);
}
/* Subtle glowing accent */
.n7lg-glow {
  position: absolute;
  bottom: 12%;
  left: 10%;
  width: 36px;
  height: 36px;
  background: radial-gradient(circle, #16ffa1 0%, transparent 70%);
  border-radius: 50%;
  animation: n7lg-glowpulse 3s infinite ease-in-out;
  pointer-events: none;
}
@keyframes n7lg-glowpulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.4); opacity: 0.8; }
}

/* Content */
.n7lg-content {
  align-self: center;
  text-align: center;
}

/* Title */
.n7lg-title {
  font-size:  2rem;
  font-weight: 900;

  margin-bottom: 16px;
  background: linear-gradient(90deg, #16ffa1 0%, #ffe46b 80%);
  -webkit-background-clip: text;
  color: transparent;
}
.n7lg-divider {
  color: #16ffa1;
  text-shadow: 0 0 12px #16ffa188;
  margin: 0 8px;
}

/* Main text */
.n7lg-text {
  font-size: 1rem;

  opacity: 0.9;
  margin-bottom: 24px;
  color: #d7ffee;
}

/* Security & Support icons */
.n7lg-features {
  display: flex;
  gap: 20px 30px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  justify-content: center;
  margin: 20px 0 40px;
  font-size: 0.95rem;
  color: #b7ffcc;
}
.n7lg-features li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.n7lg-features i {
  color: #16ffa1;
  font-size: 1.1rem;
}

/* CTA Buttons */
.n7lg-actions {
  display: flex;
  gap: 28px;
  justify-content: center; /* Center on desktop */
}
.n7lg-btn {
  position: relative;
  overflow: hidden;
  padding: 18px 60px;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

/* Primary button */
.n7lg-btn--primary {
  background: linear-gradient(145deg, #16ffa1 0%, #00d374 65%, #ffe46b 100%);
  color: #04160e;
  border: none;
}
.n7lg-btn--primary:hover,
.n7lg-btn--primary:focus-visible {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 32px rgba(22, 255, 161, 0.6);
}
.n7lg-btn--primary:active {
  transform: translateY(0) scale(1);
}
/* Primary pulse */
@keyframes n7lg-btnpulse {
  0% { box-shadow: 0 0 0 0 rgba(22,255,161,0.55); }
  70% { box-shadow: 0 0 0 24px rgba(22,255,161,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,255,161,0); }
}
.n7lg-btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7lg-btnpulse 3.8s infinite;
}

/* Secondary button */
.n7lg-btn--secondary {
  background: transparent;
  color: #16ffa1;
  border: 2px solid #16ffa1;
}
.n7lg-btn--secondary:hover,
.n7lg-btn--secondary:focus-visible {
  transform: translateY(-6px);
  background: rgba(22, 255, 161, 0.12);
  box-shadow: 0 6px 22px rgba(22, 255, 161, 0.4);
}
.n7lg-btn--secondary:active {
  transform: translateY(0);
}

/* Mobile (<768px): stack and center */
@media (max-width: 768px) {
  .n7lg-container {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding: 40px 12px 60px;
    text-align: center;
  }
  .n7lg-image {
    max-width: 90vw;
    margin: 0 auto;
  }
  .n7lg-img {
    transform: none;
  }
  .n7lg-content {
    margin: 0 auto;
  }
  .n7lg-features {
    justify-content: center;
    margin: 20px auto 36px;
  }
  .n7lg-actions {
    flex-direction: column;
    gap: 0;
  }
  .n7lg-btn {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ========== n7wb – “Welcome Back” Lux Section ========== */
.n7wb-welcome {
  position: relative;
  background: #0a1e0f;
  overflow: hidden;
  font-family: "Inter", Arial, sans-serif;
  color: #e5ffe5;
  padding: 0;
}

/* Top and Bottom Gradient Bars */
.n7wb-gradient-bar {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 140px;
  background: linear-gradient(120deg, #135409, #16ffa1, #93ffb8);
  mix-blend-mode: screen;
  opacity: 0.12;
  transform: skewY(-6deg);
}
.n7wb-gradient-bar--top {
  top: -60px;
}
.n7wb-gradient-bar--bottom {
  bottom: -60px;
}

/* Grid Layout */
.n7wb-layout {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 20px 100px;
}

/* Image (right) */
.n7wb-visual {
  position: relative;
  margin: 0;
}
.n7wb-img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.7);
  transform: perspective(900px) rotateY(8deg);
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.9);
}
.n7wb-visual:hover .n7wb-img {
  transform: perspective(900px) rotateY(0deg) scale(1.03);
  filter: brightness(1);
}
/* Floating Badge */
.n7wb-floating-badge {
  position: absolute;
  top: 14%;
  right: 8%;
  background: #16ffa1;
  color: #0a1e0f;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(22, 255, 161, 0.4);
  animation: n7wb-badgepulse 4s infinite;
  display: flex;
  align-items: center;
  gap: 6px;
}
@keyframes n7wb-badgepulse {
  0%,100% { box-shadow: 0 4px 18px rgba(22, 255, 161, 0.4); }
  50%    { box-shadow: 0 8px 28px rgba(22, 255, 161, 0.7); }
}

/* Content (left) */
.n7wb-content {
  color: #e5ffe5;
}

/* Title */
.n7wb-title {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  font-weight: 900;

  margin-bottom: 16px;
  background: linear-gradient(90deg, #16ffa1 0%, #93ffb8 60%, #e5ffe5 100%);
  -webkit-background-clip: text;
  color: transparent;
}
.n7wb-highlight {
  color: #16ffa1;
  text-shadow: 0 0 12px #16ffa188;
  margin: 0 8px;
}

/* Paragraph text */
.n7wb-text {
  font-size: 1rem;

  opacity: 0.92;
  margin-bottom: 18px;
  color: #d7ffee;
}

/* Chips */
.n7wb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 28px 0 44px;
  list-style: none;
  padding: 0;
}
.n7wb-chips li {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(22, 255, 161, 0.08);
  color: #bfffe1;
  padding: 10px 16px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 2px 14px rgba(22,255,161,0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}
.n7wb-chips li:hover {
  transform: translateY(-3px);
  background: rgba(22, 255, 161, 0.2);
}
.n7wb-chips i {
  color: #16ffa1;
  font-size: 1.1rem;
}

/* CTA Button */
.n7wb-cta {
  text-align: center; /* center on both desktop & mobile */
}
.n7wb-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 20px 68px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(145deg, #16ffa1 0%, #00d374 60%, #e5ffe5 100%);
  color: #0a1e0f;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  box-shadow: 0 6px 24px rgba(22, 255, 161, 0.4);
}
.n7wb-btn:hover,
.n7wb-btn:focus-visible {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 36px rgba(22, 255, 161, 0.6);
}
.n7wb-btn:active {
  transform: translateY(0) scale(1);
}
/* Button pulse */
@keyframes n7wb-btnpulse {
  0% { box-shadow: 0 0 0 0 rgba(22,255,161,0.55); }
  70% { box-shadow: 0 0 0 24px rgba(22,255,161,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,255,161,0); }
}
.n7wb-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7wb-btnpulse 4s infinite;
}

/* Mobile (<768px): stack and center */
@media (max-width: 768px) {
  .n7wb-layout {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding: 40px 12px 60px;
    text-align: center;
  }
  .n7wb-visual {
    max-width: 90vw;
    margin: 0 auto;
  }
  .n7wb-img {
    transform: none;
    max-width: 100%;
  }
  .n7wb-content {
    margin: 0 auto;
  }
  .n7wb-chips {
    justify-content: center;
    margin: 24px auto 40px;
  }
  .n7wb-btn {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
  }
}
/* ========== n7h6 – Login Rewards (Top Image) Section ========== */
.n7h6-login-rewards {
  background: linear-gradient(180deg, #111d13 0%, #132c1d 100%);
  padding: 0 0 60px 0;
  font-family: "Inter", Arial, sans-serif;
  color: #e8fff2;
  overflow: hidden;
  position: relative;
  text-align: center;
}

/* --- IMAGE ON TOP --- */
.n7h6-img-wrap {
  position: relative;
  width: 100%;
  
  margin: 0 auto -26px auto;
  z-index: 1;
}
.n7h6-img {
  width: 100%;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 10px 60px #00e79a36, 0 4px 24px #0009;
  display: block;
  position: relative;
  z-index: 2;
}
.n7h6-img-glow {
  position: absolute;
  left: 50%;
  top: 86%;
  width: 85%;
  height: 42px;
  transform: translate(-50%, 0);
  border-radius: 50%;
  background: radial-gradient(circle, #00e79a44 0 80%, transparent 100%);
  z-index: 1;
  filter: blur(6px);
  pointer-events: none;
}

/* --- CONTENT --- */
.n7h6-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 46px 18px 0 18px;
  z-index: 2;
  position: relative;
}

/* Title */
.n7h6-title {
  font-size: clamp(2rem, 4vw + 1rem, 2.7rem);
  font-weight: 900;
  margin-bottom: 34px;
  background: linear-gradient(90deg, #ffd700 0%, #00e79a 100%);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 2px 14px #00180d60;
}

/* --- Rewards List --- */
.n7h6-rewards-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.n7h6-reward {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 15px;
  background: rgba(24, 44, 30, 0.48);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 2px 12px #00e79a14;
  font-size: 1.08rem;
  transition: background 0.28s, box-shadow 0.28s;
  position: relative;
}
.n7h6-reward-icon {
  font-size: 1.6rem;
  color: #ffd700;
  flex-shrink: 0;
}
.n7h6-reward-title {
  font-weight: 800;
  color: #b2ffc8;
  margin-right: 2px;
}
.n7h6-reward-desc {
  color: #d6ffe9;
  font-size: 0.99rem;
}
.n7h6-highlight-bg {
  background: linear-gradient(90deg, #00e79a 20%, #ffd700 100%);
  color: #132c1d;
  padding: 3px 9px;
  border-radius: 6px;
  font-weight: 800;
  box-shadow: 0 1px 8px #ffd70041;
}
.n7h6-birthday-title {
  color: #ff99c8;
  text-shadow: 0 1px 7px #ff99c82e;
  background: none;
}
.n7h6-birthday-bg {
  background: linear-gradient(90deg, #ffd6e7 0, #fffd 80%);
  color: #702e44;
  padding: 3px 11px;
  border-radius: 7px;
  font-weight: 700;
  box-shadow: 0 2px 10px #ffd6e74d;
}

/* Info note */
.n7h6-info-row {
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.n7h6-info-icon {
  font-size: 1.38rem;
  color: #ffd700;
}
.n7h6-info-note {
  font-size: 1.07rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00e79a11 0, #ffd70055 70%);
  color: #ffd700;
  border-radius: 8px;
  padding: 8px 20px;
  box-shadow: 0 2px 12px #ffd70015;
}

/* CTA Button */
.n7h6-cta {
  text-align: center;
}
.n7h6-btn {
  position: relative;
  display: inline-block;
  padding: 19px 54px;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 60px;
  background: linear-gradient(145deg, #ffd700 0%, #00e79a 65%, #b2ffc8 100%);
  color: #132c1d;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px #ffd70042;
  transition: transform 0.32s, box-shadow 0.32s;
}
.n7h6-btn:hover,
.n7h6-btn:focus-visible {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px #ffd70030;
}
.n7h6-btn:active {
  transform: translateY(0) scale(1);
}
@keyframes n7h6-btnpulse {
  0% { box-shadow: 0 0 0 0 #ffd70088;}
  70% { box-shadow: 0 0 0 22px #ffd70000;}
  100% { box-shadow: 0 0 0 0 #ffd70000;}
}
.n7h6-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7h6-btnpulse 4s infinite;
}

/* Responsive: center all and reduce gaps */
@media (max-width: 768px) {
  .n7h6-img-wrap {
    max-width: 99vw;
    margin-bottom: -17px;
  }
  .n7h6-content {
    padding-top: 36px;
  }
  .n7h6-rewards-list {
    gap: 13px;
  }
  .n7h6-reward {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 9px;
    font-size: 1.01rem;
  }
  .n7h6-info-row {
    margin-bottom: 21px;
  }
  .n7h6-btn {
    width: 85%;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ========== n7h7 – Mobile-Exclusive Bonuses Section ========== */
.n7h7-mobile-bonus {
  background: linear-gradient(135deg, #101a17 0%, #13462c 100%);
  padding: 82px 12px 70px 12px;
  color: #e8fff7;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
  position: relative;
}

/* Grid 3 columns for desktop */
.n7h7-shell {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 30px 38px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

/* Left and Right Content Columns */
.n7h7-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 38px;
}
.n7h7-col--left {
  align-items: flex-end;
  text-align: right;
  gap: 32px;
  padding-right: 18px;
}
.n7h7-col--right {
  align-items: flex-start;
  text-align: left;
  gap: 32px;
  padding-left: 18px;
}
.n7h7-col--center {
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 220px;
}

/* Title */
.n7h7-title {
  font-size: clamp(2rem, 3vw + 1rem, 2.5rem);
  font-weight: 900;

  text-align: center;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #ffd700 0%, #00e79a 70%, #a9ffd4 100%);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 2px 12px #00180d60;
}

/* List Items */
.n7h7-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.n7h7-item {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(23, 85, 44, 0.16);
  border-radius: 13px;
  padding: 12px 18px;
  box-shadow: 0 2px 14px #00e79a13;
  font-size: 1.02rem;
  position: relative;
  transition: background 0.24s, box-shadow 0.24s;
}
.n7h7-item:hover {
  background: rgba(23, 85, 44, 0.33);
  box-shadow: 0 6px 30px #00e79a17;
}
.n7h7-ico {
  font-size: 1.3rem;
  color: #ffd700;
  flex-shrink: 0;
}
.n7h7-label {
  font-weight: 800;
  color: #b2ffc8;
  margin-right: 2px;
}
.n7h7-desc {
  color: #d6ffe9;
  font-size: 0.97rem;
}
.n7h7-highlight-bg {
  font-weight: 800;
  color: #00e79a;
  background: linear-gradient(90deg, #00e79a44 0%, #ffd70033 100%);
  border-radius: 7px;
  padding: 5px 11px;
  font-size: 1rem;
  box-shadow: 0 2px 10px #ffd70022;
}

/* Center Image */
.n7h7-imgbox {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 180px;
  position: relative;
}
.n7h7-img {
  width: 100%;
  max-width: 260px;
  border-radius: 32px;
  box-shadow: 0 12px 36px #00e79a36, 0 4px 18px #0007;
  position: relative;
  z-index: 2;
}
.n7h7-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82%;
  height: 62%;
  transform: translate(-50%, -48%);
  border-radius: 38% 62% 57% 43% / 51% 53% 47% 49%;
  background: radial-gradient(circle, #00e79a33 0 68%, transparent 100%);
  filter: blur(10px);
  z-index: 1;
  pointer-events: none;
}

/* Info block */
.n7h7-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  margin-bottom: 30px;
}
.n7h7-info-icon {
  font-size: 1.25rem;
  color: #00e79a;
}
.n7h7-info-special {
  font-size: 1.02rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00e79a11 0, #ffd70044 90%);
  color: #ffd700;
  border-radius: 8px;
  padding: 9px 22px;
  box-shadow: 0 2px 16px #ffd70016;
}

/* CTA Button */
.n7h7-cta {
  text-align: center;
  margin-top: 14px;
}
.n7h7-btn {
  position: relative;
  display: inline-block;
  padding: 18px 54px;
  font-size: 1.07rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 60px;
  background: linear-gradient(145deg, #ffd700 0%, #00e79a 80%, #b2ffc8 100%);
  color: #132c1d;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px #ffd70041;
  transition: transform 0.32s, box-shadow 0.32s;
}
.n7h7-btn:hover,
.n7h7-btn:focus-visible {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px #ffd70032;
}
.n7h7-btn:active {
  transform: translateY(0) scale(1);
}
@keyframes n7h7-btnpulse {
  0% { box-shadow: 0 0 0 0 #ffd70088;}
  70% { box-shadow: 0 0 0 22px #ffd70000;}
  100% { box-shadow: 0 0 0 0 #ffd70000;}
}
.n7h7-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: n7h7-btnpulse 4s infinite;
}

/* Responsive: Mobile (all columns stack, content center) */
@media (max-width: 991px) {
  .n7h7-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .n7h7-col--left, .n7h7-col--right {
    align-items: center !important;
    text-align: center !important;
    padding: 0;
  }
  .n7h7-imgbox {
    margin-bottom: 22px;
    min-width: 0;
    min-height: 0;
  }
  .n7h7-img {
    max-width: 210px;
  }
  .n7h7-info {
    justify-content: center;
  }
  .n7h7-btn {
    width: 85%;
    max-width: 300px;
    margin: 0 auto;
  }
}


.banner {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* ========== n7fixed-bonus-banner ========== */
.n7fixed-bonus-banner {
  position: fixed;
  
  bottom: 0;
  width: 100%;
  z-index: 1010;
  background: rgb(0 178 27 / 18%); /* полупрозрачный dark green */
  color: #ffd700;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 30px 30px;
  border: none;
  outline: none;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 -2px 16px #00e79a33, 0 2px 20px #0009;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
  cursor: pointer;
  user-select: none;
  margin-bottom: 0 !important;
  
  /* Disable highlight on tap in mobile */
  -webkit-tap-highlight-color: transparent;
}

.n7fixed-bonus-banner:hover,
.n7fixed-bonus-banner:focus-visible {
  background: rgba(0, 231, 154, 0.96);
  color: #181a10;
  transform: scale(1.01);
  box-shadow: 0 -4px 24px #ffd70055, 0 2px 30px #00e79a22;
}

@media (max-width: 767px) {
  .n7fixed-bonus-banner {
    font-size: 1.08rem;
    padding: 17px 0 15px 0;
  }
}

.n7xp-step strong {
  display: flex;
  align-items: center;
  gap: 10px;
}




















.gam a img {
  max-width: 70px;
}

.cirle {
  border-radius: 100%;
  background-color: red;
  color: white;
  font-size: 30px;
  padding: 12px;
}

.dnone {
  display: none;
}




[class*="btn"]:not([class*="wrap"]),
[class*="button"]:not([class*="buttons"]) {
  padding: 20px 30px;
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px;
  animation:
    glow-pulse-const 2s infinite alternate ease-in-out,
    scale-pulse 2s infinite ease-in-out;
}

@keyframes scale-pulse {
  0% {
    transform: scale(1) ;
  }

  50% {
    transform: scale(1.06) ;
  }

  100% {
    transform: scale(1) ;
  }
}

@keyframes glow-pulse-const {
  0% {
    box-shadow:
      0 0 6px rgba(26, 115, 232, 0.5),
      0 0 12px rgba(26, 115, 232, 0.3);
  }

  50% {
    box-shadow:
      0 0 12px rgba(26, 115, 232, 0.8),
      0 0 24px rgba(26, 115, 232, 0.6);
  }

  100% {
    box-shadow:
      0 0 8px rgba(26, 115, 232, 0.6),
      0 0 16px rgba(26, 115, 232, 0.4);
  }
}

.ze77-appfocus__subtitle {
  color: white;
}

  [class*="title"]:not([class*="subtitle"]) {
    font-size: 2.25em !important;
    line-height: 40px;

  }

@media (max-width: 768px) {

  [class*="title"]:not([class*="subtitle"]) {
    font-size: 2.25em !important;
  }

  [class*="btn"]:not([class*="wrap"]),
  [class*="button"]:not([class*="buttons"]) {
    padding: 20px;
    width: 100%;
    max-width: 100%;
    font-size: 20px;
    animation:
      glow-pulse-const 1.8s infinite alternate ease-in-out,
      scale-pulse 2.5s infinite ease-in-out;
  }

}



@media (max-width: 768px) {}

@media (max-width: 768px) {

  section {
    padding: 20px !important;
  }

  .lux-header__login-btn {
    width: auto !important;
  }

  .ze77-tools__bubbles {
    justify-content: center
  }

  .ze77-focusedgames__img {
    max-width: 100%;
  }

  .n7bt-imgcol, .n7bt-content {
    flex: none;
    max-width: 100%;
  }

  .nx7l-actions {
    gap: 0;
  }

  .cv666-luxehero__cta-row,.n777-why__container,.n777-highlights__container,
  .ze77-applite__actions,.n7wl-grid,.n7dk-wrapper,.n7lp-container,.n7gr-grid,.n7ct-wrap,
  .ze77-hero__actions,.n7bt-inner,.nx7l-actions,
  .ze77-games__actions,
  .ze77-slots__actions {
    display: flex;
    flex-direction: column;

    
  }

  .n7bt-inner {
    flex-direction: column-reverse;
  }
}

@media (max-width: 505px) {}






html,
body {
  height: 100%;

  display: flex;
  flex-direction: column;
}

/* Основной контейнер, который растягивается */
main {
  flex: 1;
  /* Этот блок занимает всё доступное пространство */
  padding-top: 57px;
}

/* Футер всегда внизу */
footer {


  text-align: center;
  padding: 20px;
  font-size: 16px;
}

.lux-btn--login {
  padding: 14px;
  padding: 8px 18px;
}