/* Reset styles */

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  background-color: transparent;
  outline: none;
  border: none;
}

img {
  display: block;
  max-width: 100%;
}

.proline-advisory {
  background: linear-gradient(180deg, #0b1220 0%, #0a1020 60%, #0b1220 100%);
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.proline-advisory__wrap {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: start;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  isolation: isolate;
  animation: proline-fade-in 420ms ease-out both;
}

.proline-advisory__wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 80px at 20% 0%, rgba(94,132,255,0.12) 0%, rgba(94,132,255,0) 70%) no-repeat;
  pointer-events: none;
  z-index: -1;
  animation: proline-sheen 6s linear infinite;
  opacity: 0.9;
}

.proline-advisory__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(58,93,255,0.18), rgba(58,93,255,0.06));
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 6px 18px rgba(32,56,140,0.25);
  transform: translateZ(0);
}

.proline-advisory__svg {
  fill: #cfe0ff;
  width: 22px;
  height: 22px;
  transition: transform 220ms ease;
}

.proline-advisory__icon:focus-visible .proline-advisory__svg,
.proline-advisory__wrap:hover .proline-advisory__svg {
  transform: scale(1.06);
}

.proline-advisory__content {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.proline-advisory__title {
  margin: 0;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: #d5e2ff;
  text-transform: uppercase;
}

.proline-advisory__text {
  margin: 0;
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  text-wrap: pretty;
}

.proline-advisory__accent {
  color: #ffffff;
  background: linear-gradient(90deg, rgba(90,130,255,0.22), rgba(90,130,255,0.0));
  box-decoration-break: clone;
  padding: 0 3px;
  border-radius: 4px;
}

@media (max-width: 1280px) {
  .proline-advisory__wrap {
    gap: 14px;
    padding: 12px 0;
  }
  .proline-advisory__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .proline-advisory__svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 768px) {
  .proline-advisory__wrap {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }
  .proline-advisory__title {
    font-size: 13px;
  }
  .proline-advisory__text {
    font-size: 12px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .proline-advisory__wrap {
    grid-template-columns: 28px 1fr;
    padding: 10px 0;
  }
  .proline-advisory__text {
    font-size: 12px;
  }
}

@keyframes proline-fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes proline-sheen {
  0% { background-position: -20% 0; }
  50% { background-position: 50% 0; }
  100% { background-position: 120% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .proline-advisory__wrap { animation: none; }
  .proline-advisory__wrap::before { animation: none; }
  .proline-advisory__svg { transition: none; }
}

.proline-advisory,
.proline-advisory * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.proline-advisory a {
  color: #bcd0ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.proline-advisory a:hover {
  color: #e6edff;
}

.masthead-aurelius {
  position: sticky;
  top: 0;
  z-index: 900;
  background: linear-gradient(180deg, #0f1628 0%, #0b1220 100%);
  box-shadow: 0 6px 28px rgba(0,0,0,0.28);
  color: #ffffff;
}

.masthead-aurelius__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 10px 16px;
}

.brand-capsule {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-capsule__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  background: radial-gradient(circle at 30% 30%, rgba(91,131,255,0.25), rgba(91,131,255,0.05));
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 10px 26px rgba(34,58,150,0.38);
}

.brand-capsule__name {
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 16px;
  color: #e6eeff;
}

.deskbar-primus {
  display: none;
}

.deskbar-primus__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
}

.deskbar-primus__item {
  list-style: none;
  position: relative;
}

.deskbar-primus__link {
  display: inline-block;
  padding: 10px 2px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: #dbe6ff;
  transition: transform 220ms ease;
}

.deskbar-primus__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #5b83ff, #a3c2ff);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 340ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.deskbar-primus__link:hover::after,
.deskbar-primus__link:focus::after {
  transform: scaleX(1);
}

.menutrigger-helix {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 6px 20px rgba(0,0,0,0.25);
  cursor: pointer;
}

.menutrigger-helix__line {
  display: block;
  width: 22px;
  height: 2px;
  background: #eef3ff;
  margin: 3px 0;
  transition: transform 260ms ease, opacity 220ms ease;
}

.pane-flyover {
  position: fixed;
  inset: 0;
  top: -100vh;
  height: 100vh;
  background: linear-gradient(180deg, rgba(16,24,44,0.96) 0%, rgba(11,18,32,0.96) 100%);
  backdrop-filter: blur(2px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  transition: top 360ms ease, opacity 260ms ease;
}

.pane-flyover.is-open {
  top: 0;
  opacity: 1;
  pointer-events: auto;
}

.pane-flyover__inner {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  padding: 14px 16px 24px;
}

.pane-flyover__close {
  justify-self: end;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  position: relative;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 200ms ease;
}

.pane-flyover__close:active { transform: scale(0.98); }

.pane-flyover__x {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #eef3ff;
  transform-origin: center;
}

.pane-flyover__x:first-child { transform: translate(-50%, -50%) rotate(45deg); }

.pane-flyover__x:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.pane-flyover__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 12px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.pane-flyover__link {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 12px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: #f2f6ff;
  background: linear-gradient(135deg, rgba(91,131,255,0.18), rgba(91,131,255,0.06));
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 10px 28px rgba(32,56,140,0.32);
  transform: translateY(6px);
  opacity: 0;
  animation: pane-stagger 420ms ease forwards;
}

.header-nav-mobile.is-open .pane-flyover__link:nth-child(1) { animation-delay: 80ms; }

.header-nav-mobile.is-open .pane-flyover__link:nth-child(2) { animation-delay: 140ms; }

.header-nav-mobile.is-open .pane-flyover__link:nth-child(3) { animation-delay: 200ms; }

.header-nav-mobile.is-open .pane-flyover__link:nth-child(4) { animation-delay: 260ms; }

@keyframes pane-stagger {
  to { transform: translateY(0); opacity: 1; }
}

@media (min-width: 1200px) {
  .deskbar-primus { display: block; }
  .menutrigger-helix { display: none; }
}

@media (min-width: 1440px) {
  .masthead-aurelius__grid { padding: 14px 108px; }
  .deskbar-primus__link { font-size: 16px; }
}

@media (max-width: 359px) {
  .brand-capsule__name { display: none; }
}

.masthead-aurelius,
.masthead-aurelius * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.prime-hero {
  position: relative;
  background-image: linear-gradient(180deg, rgba(10,16,30,0.85), rgba(9,14,28,0.9)), url('./assets/hero-bg.jpg');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  color: #ffffff;
  overflow: hidden;
  z-index: 1;
}

.prime-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 200px at 10% 0%, rgba(94,132,255,0.18) 0%, rgba(94,132,255,0) 60%) no-repeat, radial-gradient(1000px 260px at 90% 100%, rgba(255,184,0,0.12) 0%, rgba(255,184,0,0) 70%) no-repeat;
  pointer-events: none;
  z-index: -1;
  animation: prime-sheen 9s linear infinite;
}

.prime-hero__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 36px;
  padding: 32px 16px 42px;
  align-items: center;
}

.prime-hero__content {
  display: grid;
  gap: 16px;
  min-width: 0;
  animation: prime-fade 480ms ease-out both;
}

.prime-hero__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #f7f9ff;
  text-wrap: balance;
  background: linear-gradient(90deg, #ffffff 0%, #e7efff 60%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 26px rgba(0,0,0,0.35));
  border-bottom: 2px solid rgba(255,184,0,0.8);
  padding-bottom: 8px;
}

.prime-hero__title span {
  color: #ffb800;
  -webkit-text-fill-color: initial;
  background: none;
  text-shadow: 0 0 18px rgba(255,184,0,0.35);
}

.prime-hero__subtitle {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
  font-weight: 500;
  color: rgba(245,248,255,0.95);
  max-width: 980px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}

.cta-royal {
  display: inline-block;
  min-width: 220px;
  text-align: center;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0c1323;
  background: linear-gradient(180deg, #ffd166, #ffb703);
  box-shadow: 0 6px 20px rgba(255,183,3,0.35), 0 1px 0 rgba(255,255,255,0.5) inset;
  transition: transform 180ms ease, box-shadow 220ms ease;
}

.cta-royal:hover,
.cta-royal:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(255,183,3,0.45), 0 1px 0 rgba(255,255,255,0.6) inset;
}

@keyframes prime-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes prime-rise {
  to { transform: translateY(0); opacity: 1; }
}

@keyframes prime-sheen {
  0% { background-position: -10% 0, 120% 100%; }
  50% { background-position: 40% 0, 60% 100%; }
  100% { background-position: 110% 0, -10% 100%; }
}

@media (max-width: 1200px) {
  .prime-hero__container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

}

@media (max-width: 640px) {
  .prime-hero__container {
    padding: 22px 16px 28px;
  }
  .prime-hero__title {
    font-size: clamp(24px, 7vw, 36px);
  }
  .prime-hero__subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

}

@media (prefers-reduced-motion: reduce) {
  .prime-hero::before { animation: none; }
  .prime-hero__content { animation: none; }

}

.suite-ledger {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #0f1524 0%, #0b1220 100%);
  color: #f6f9ff;
}

.suite-ledger__container {
  padding: 28px 16px 40px;
}

.suite-ledger__title {
  margin: 0 0 18px 0;
  text-align: center;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #eaf0ff;
  text-transform: uppercase;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.35));
}

.suite-ledger__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ≥1280px: три колонки */

@media (min-width: 1280px) {
  .suite-ledger__grid {
    flex-direction: row;
  }
}

.suite-ledger__cell {
  display: block;
  width: 100%;
}

.suite-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(18,26,46,0.94), rgba(13,20,36,0.96));
  box-shadow: 0 14px 34px rgba(0,0,0,0.35), 0 1px 0 rgba(255,255,255,0.06) inset;
  transform: translateY(8px);
  animation: sl-elevate 520ms ease-out both;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
}

.suite-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 220px at 10% 0%, rgba(94,132,255,0.16) 0%, rgba(94,132,255,0) 60%) no-repeat,
              radial-gradient(1000px 260px at 90% 100%, rgba(255,184,0,0.12) 0%, rgba(255,184,0,0) 70%) no-repeat;
  pointer-events: none;
  z-index: -1;
  animation: sl-sheen 8s linear infinite;
  opacity: 0.9;
}

.suite-card__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  align-items: center;
}

.suite-card__logo {
  display: block;
  width: 100%;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(91,131,255,0.18), rgba(91,131,255,0.06));
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 10px 26px rgba(35,58,140,0.35);
  transition: transform 200ms ease;
}

.suite-card__logo:hover { transform: translateY(-2px); }

.suite-card__logo-img {
  width: 90%;
  height: 100%;
  object-fit: contain;
}

.suite-card__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.suite-card__votes-label {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #cfdcff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.suite-card__votes-value {
  margin: 3px 0 0 0;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

.suite-card__stars {
  justify-self: end;
}

.suite-card__stars-svg {
  width: 120px;
  height: 24px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(255,183,0,0.25));
}

.suite-card__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.suite-card__row {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset;
}

.suite-card__tick {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,184,0,0.18), rgba(255,184,0,0.06));
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 6px 18px rgba(255,184,0,0.25);
}

.suite-card__tick svg {
  width: 16px;
  height: 16px;
  fill: #ffcc4d;
}

.suite-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(245,248,255,0.96);
  font-weight: 600;
}

.suite-card__cta {
  display: grid;
  place-items: center;
  padding-top: 6px;
}

.suite-button {
  display: inline-block;
  min-width: 220px;
  text-align: center;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0c1323;
  background: linear-gradient(180deg, #ffd166, #ffb703);
  box-shadow: 0 6px 20px rgba(255,183,3,0.35), 0 1px 0 rgba(255,255,255,0.5) inset;
  transition: transform 160ms ease, box-shadow 200ms ease;
  animation: sl-pulse 3s ease-in-out infinite;
}

.suite-button:hover,
.suite-button:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(255,183,3,0.45), 0 1px 0 rgba(255,255,255,0.6) inset;
  animation: none;
}

@keyframes sl-elevate {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes sl-sheen {
  0% { background-position: -10% 0, 120% 100%; }
  50% { background-position: 40% 0, 60% 100%; }
  100% { background-position: 110% 0, -10% 100%; }
}

@keyframes sl-pulse {
  0% { box-shadow: 0 6px 20px rgba(255,183,3,0.35), 0 1px 0 rgba(255,255,255,0.5) inset; }
  50% { box-shadow: 0 8px 26px rgba(255,183,3,0.5), 0 1px 0 rgba(255,255,255,0.6) inset; }
  100% { box-shadow: 0 6px 20px rgba(255,183,3,0.35), 0 1px 0 rgba(255,255,255,0.5) inset; }
}

@media (max-width: 1024px) {
  .suite-card__head { grid-template-columns: 84px 1fr; }
}

@media (max-width: 640px) {
  .suite-ledger__container { padding: 22px 16px 28px; }
  .suite-card__row { grid-template-columns: 26px 1fr; }
  .suite-card__row p:last-child { justify-self: end; }
}

@media (prefers-reduced-motion: reduce) {
  .suite-card { animation: none; }
  .suite-card::before { animation: none; }
  .suite-button { animation: none; }
}

.faq-summit {
  position: relative;
  background: linear-gradient(180deg, #0f1524 0%, #0b1220 100%);
  color: #eef3ff;
  overflow: hidden;
  z-index: 1;
}

.faq-summit::before {
  content: "";
  position: absolute;
  inset: -20% -10% -30% -10%;
  background:
    radial-gradient(900px 220px at 12% 0%, rgba(96,132,255,0.16) 0%, rgba(96,132,255,0) 60%) no-repeat,
    radial-gradient(1200px 320px at 88% 100%, rgba(255,188,66,0.14) 0%, rgba(255,188,66,0) 70%) no-repeat;
  animation: faqAurora 10s linear infinite;
  pointer-events: none;
  opacity: 0.9;
}

.faq-summit__container {
  padding: 34px 16px 44px;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.faq-summit__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: start; /* ✅ элементы не растягиваются */
}

@media (min-width: 1280px) {
  .faq-summit__list {
    grid-template-columns: 1fr 1fr;
    align-items: start; /* ✅ каждый блок сам регулирует высоту */
  }
}

.faq-summit__item {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(18,26,46,0.94), rgba(13,20,36,0.96));
  box-shadow: 0 14px 34px rgba(0,0,0,0.35), 0 1px 0 rgba(255,255,255,0.06) inset;
  overflow: hidden;
  isolation: isolate;
  /* ❌ убрать height: 100% и align-self: stretch */
  display: block; /* вместо grid */
  animation: faqRise 520ms ease-out both;
}

.faq-summit__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 140% at 0% 0%, rgba(92,130,255,0.12), rgba(92,130,255,0) 60%);
  pointer-events: none;
  opacity: 0.8;
}

.faq-summit__question {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 32px;
  align-items: center;
  gap: 12px;
  padding: 18px 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-summit__qtext {
  font-size: clamp(18px, 1.8vw, 20px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #eaf0ff;
}

.faq-summit__icon {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.faq-summit__icon::before,
.faq-summit__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #eaf0ff;
  transform: translate(-50%, -50%);
}

.faq-summit__icon::before {
  width: 14px;
  height: 2px;
  border-radius: 2px;
}

.faq-summit__icon::after {
  width: 2px;
  height: 14px;
  border-radius: 2px;
  transition: opacity 220ms ease, transform 240ms ease;
}

.faq-summit__answer {
  margin: 0;
  max-height: 0;
  opacity: 0;
  padding: 0 18px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(245,248,255,0.96);
  transition: max-height 420ms ease, padding 420ms ease, opacity 420ms ease;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  align-self: stretch;
  overflow: hidden;
}

.faq-summit__answer.open {
  max-height: 1000px;
  padding: 0 18px 18px;
  opacity: 1;
}

.faq-summit__item:has(.faq-summit__answer.open) .faq-summit__icon {
  transform: rotate(180deg) scale(0.98);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 10px 26px rgba(0,0,0,0.28);
}

.faq-summit__item:has(.faq-summit__answer.open) .faq-summit__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-summit__item:has(.faq-summit__answer.open)::before {
  background: radial-gradient(70% 160% at 100% 0%, rgba(255,184,0,0.12), rgba(255,184,0,0) 60%);
}

@keyframes faqAurora {
  0% { background-position: -10% 0, 120% 100%; }
  50% { background-position: 40% 0, 60% 100%; }
  100% { background-position: 110% 0, -10% 100%; }
}

@keyframes faqRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 1280px) {
  .faq-summit__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .faq-summit__container {
    padding: 26px 16px 34px;
  }
  .faq-summit__question {
    padding: 16px;
  }
  .faq-summit__answer.open {
    padding: 0 16px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-summit::before { animation: none; }
  .faq-summit__item { animation: none; }
  .faq-summit__answer { transition: none; }
}

.critique-luxe {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #0f1524 0%, #0b1220 100%);
  color: #f5f8ff;
  overflow: hidden;
}

.critique-luxe::before {
  content: "";
  position: absolute;
  inset: -20% -10% -30% -10%;
  background:
    radial-gradient(900px 220px at 12% 0%, rgba(96,132,255,0.16) 0%, rgba(96,132,255,0) 60%) no-repeat,
    radial-gradient(1200px 320px at 88% 100%, rgba(255,188,66,0.14) 0%, rgba(255,188,66,0) 70%) no-repeat;
  pointer-events: none;
  animation: luxe-sheen 10s linear infinite;
  opacity: 0.9;
}

.critique-luxe__wrap {
  padding: 36px 16px 44px;
  display: grid;
  gap: 22px;
}

.critique-luxe__header {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
}

.critique-luxe__badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(91,131,255,0.22), rgba(91,131,255,0.06));
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 12px 28px rgba(38,63,160,0.35);
  transform: translateZ(0);
}

.critique-luxe__badge svg {
  width: 22px;
  height: 22px;
  fill: #dbe6ff;
  transition: transform 240ms ease;
}

.critique-luxe__header:hover .critique-luxe__badge svg { transform: scale(1.07); }

.critique-luxe__heading {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #eaf0ff;
  text-transform: uppercase;
  line-height: 1.2;
  position: relative;
  padding-bottom: 8px;
}

.critique-luxe__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 92px;
  border-radius: 3px;
  background: linear-gradient(90deg, #5b83ff, #a6c2ff);
}

.critique-luxe__panel {
  background: linear-gradient(160deg, rgba(18,26,46,0.94), rgba(13,20,36,0.96));
  border-radius: 18px;
  padding: 18px 18px 6px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.35), 0 1px 0 rgba(255,255,255,0.06) inset;
  display: grid;
  gap: 12px;
  transform: translateY(8px);
  animation: luxe-rise 520ms ease-out both;
}

.critique-luxe__text {
  margin: 0;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: rgba(245,248,255,0.96);
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.critique-luxe__checks {
  display: grid;
  gap: 14px;
}

.critique-luxe__subheading {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #eaf0ff;
  text-transform: uppercase;
  line-height: 1.2;
}

.critique-luxe__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.critique-luxe__point {
  margin: 0;
  padding: 12px 12px 12px 44px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.65;
  color: rgba(245,248,255,0.96);
  position: relative;
  transform: translateY(8px);
  opacity: 0;
  animation: luxe-fade-in 540ms ease-out forwards;
}

.critique-luxe__point:nth-child(1) { animation-delay: 60ms; }

.critique-luxe__point:nth-child(2) { animation-delay: 120ms; }

.critique-luxe__point:nth-child(3) { animation-delay: 180ms; }

.critique-luxe__point:nth-child(4) { animation-delay: 240ms; }

.critique-luxe__point:nth-child(5) { animation-delay: 300ms; }

.critique-luxe__point[data-checkmark]::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,184,0,0.22), rgba(255,184,0,0.08));
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 6px 18px rgba(255,184,0,0.25);
  -webkit-mask-image: none;
}

.critique-luxe__point[data-checkmark]::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ffcc4d" viewBox="0 0 24 24"><path d="M9 16.2L4.8 12 3.4 13.4 9 19l12-12-1.4-1.4z"/></svg>') no-repeat center/contain;
}

@keyframes luxe-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes luxe-fade-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes luxe-sheen {
  0% { background-position: -10% 0, 120% 100%; }
  50% { background-position: 40% 0, 60% 100%; }
  100% { background-position: 110% 0, -10% 100%; }
}

@media (max-width: 1024px) {
  .critique-luxe__wrap { padding: 28px 16px 34px; }
  .critique-luxe__panel { padding: 16px 16px 6px; }
}

@media (max-width: 640px) {
  .critique-luxe__header { grid-template-columns: 40px 1fr; }
  .critique-luxe__badge { width: 40px; height: 40px; border-radius: 12px; }
  .critique-luxe__point { padding-left: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .critique-luxe::before { animation: none; }
  .critique-luxe__panel { animation: none; }
  .critique-luxe__point { animation: none; opacity: 1; transform: none; }
}

.cookies-section {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #f8f9fc 0%, #e9effa 100%);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.cookies-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.cookies-container {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (min-width: 1440px) {
  .cookies-container {
    padding: 20px 40px;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }
}

.cookies-text {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a2d5a;
  text-align: center;
  max-width: 800px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards 0.3s;
}

@media screen and (min-width: 1440px) {
  .cookies-text {
    text-align: left;
  }
}

.cookies-text a {
  color: #4f7cff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.cookies-text a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4f7cff;
  transition: width 0.3s ease;
}

.cookies-text a:hover {
  color: #1a2d5a;
}

.cookies-text a:hover::after {
  width: 100%;
}

.cookies-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

@media screen and (min-width: 1440px) {
  .cookies-buttons {
    flex-direction: row;
    gap: 20px;
    width: auto;
  }
}

.btn-1 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards 0.5s;
}

.cookies-accept-js {
  background-color: #4f7cff;
  color: #ffffff;
}

.cookies-accept-js:hover {
  background-color: #3b5fd1;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(79, 124, 255, 0.3);
}

.cookies-decline-js {
  background-color: #e5e7eb;
  color: #1a2d5a;
}

.cookies-decline-js:hover {
  background-color: #d1d5db;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lumina-footer {
  position: relative;
  background: linear-gradient(180deg, #0f1628 0%, #0b1220 100%);
  color: #eef3ff;
  overflow: hidden;
  z-index: 1;
}

.lumina-footer::before {
  content: "";
  position: absolute;
  inset: -20% -10% -30% -10%;
  background:
    radial-gradient(900px 220px at 12% 0%, rgba(96,132,255,0.16) 0%, rgba(96,132,255,0) 60%) no-repeat,
    radial-gradient(1200px 320px at 88% 100%, rgba(255,188,66,0.14) 0%, rgba(255,188,66,0) 70%) no-repeat;
  pointer-events: none;
  animation: lumina-aurora 12s linear infinite;
  opacity: 0.9;
}

.lumina-footer__container {
  padding: 34px 16px 38px;
  display: grid;
  gap: 22px;
}

.u-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.lumina-notices {
  background: linear-gradient(160deg, rgba(18,26,46,0.94), rgba(13,20,36,0.96));
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.35), 0 1px 0 rgba(255,255,255,0.06) inset;
  display: grid;
  gap: 10px;
  transform: translateY(8px);
  animation: lumina-rise 520ms ease-out both;
  isolation: isolate;
}

.lumina-notices::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 140% at 0% 0%, rgba(92,130,255,0.10), rgba(92,130,255,0) 60%);
  pointer-events: none;
  opacity: 0.8;
}

.lumina-notices__header {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 6px;
}

.lumina-notices__emblem {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(91,131,255,0.22), rgba(91,131,255,0.06));
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 10px 26px rgba(38,63,160,0.35);
  transform: translateZ(0);
}

.lumina-notices__emblem svg {
  width: 20px;
  height: 20px;
  fill: #dbe6ff;
  transition: transform 220ms ease;
}

.lumina-notices__header:hover .lumina-notices__emblem svg {
  transform: scale(1.06);
}

.lumina-notices__title {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #eaf0ff;
  text-transform: uppercase;
  line-height: 1.2;
  position: relative;
  padding-bottom: 6px;
}

.lumina-notices__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 88px;
  border-radius: 2px;
  background: linear-gradient(90deg, #5b83ff, #a6c2ff);
}

.lumina-notices__text {
  margin: 0 0 6px 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245,248,255,0.92);
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  animation: lumina-fade 560ms ease-out both;
}

.lumina-footer__copy {
  margin: 4px 0 0 0;
  text-align: center;
  font-size: 14px;
  color: rgba(230,236,255,0.8);
  letter-spacing: 0.01em;
  animation: lumina-fade 560ms ease-out 80ms both;
}

@keyframes lumina-aurora {
  0% { background-position: -10% 0, 120% 100%; }
  50% { background-position: 40% 0, 60% 100%; }
  100% { background-position: 110% 0, -10% 100%; }
}

@keyframes lumina-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lumina-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .lumina-footer__container { padding: 26px 16px 30px; }
  .lumina-notices { padding: 16px; }
  .lumina-notices__header { grid-template-columns: 40px 1fr; }
  .lumina-notices__emblem { width: 40px; height: 40px; border-radius: 10px; }
}

.prestige-responsible-gaming-panel {
  background-color: #666666;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.elite-banner-assembly {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.affluent-icon-holder,
.refined-link-portal {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.affluent-icon-holder:hover,
.refined-link-portal:hover {
  transform: scale(1.05);
}

.affluent-icon-holder img,
.refined-link-portal img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .elite-banner-assembly {
    flex-direction: column;
    gap: 20px;
  }

  .affluent-icon-holder,
  .refined-link-portal {
    width: 100%;
    max-width: 300px;
    height: 80px;
  }

  .affluent-icon-holder img,
  .refined-link-portal img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .prestige-responsible-gaming-panel {
    padding: 20px 10px;
  }

  .elite-banner-assembly {
    gap: 15px;
  }
}

.page-margin {
  margin-bottom: 32px;
}

.page-margin-2 {
  margin-bottom: 16px;
}

.page-margin-8 {
  margin-bottom: 8px;
}

.page-margin-24 {
  margin-bottom: 8px;
}

.h3-uppercase {
  text-transform: uppercase;
}

.page-text-bold {
  font-weight: 600;
}

.page-text {
  line-height: 1.57143;
  @media screen and (min-width: 1440px) {
    font-size: 16px;
    line-height: 1.5;
  }
}

.page-simple-list {
  list-style: disc;
  padding-left: 20px;
}

.page-simple-link {
  line-height: 1.57143;
  color: #0059ff;
  @media screen and (min-width: 1440px) {
    font-size: 16px;
    line-height: 1.5;
  }
}

.page-title-h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.55556;
  @media screen and (min-width: 1440px) {
    font-size: 20px;
    line-height: 1.4;
  }
}

.page-title {
  font-family: 'Nunito', sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
  font-size: 24px;
  margin: 0 auto;
  margin-bottom: 40px;
  margin-top: 116px;
  @media screen and (min-width: 1440px) {
    font-size: 28px;
    line-height: 1.57143;
    margin-top: 189px;
  }
}

.page-content {
  padding: 0 16px;
  padding-bottom: 60px;
  @media screen and (min-width: 1440px) {
    padding: 0 212px;
    padding-bottom: 120px;
  }
}

.btn-flip {
  opacity: 1;
  outline: 0;
  color: #fff;
  line-height: 40px;
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none;
  font-family: 'Open Sans';
  text-transform: uppercase;
  position: absolute;
  top: 20px;
  left: 20px;

  &:hover {
    &:after {
      opacity: 1;
      transform: translateY(0) rotateX(0);
    }

    &:before {
      opacity: 0;
      transform: translateY(50%) rotateX(90deg);
    }
  }

  &:after {
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    color: #323237;
    display: block;
    transition: 0.5s;
    position: absolute;
    background: #adadaf;
    content: attr(data-back);
    transform: translateY(-50%) rotateX(90deg);
  }

  &:before {
    top: 0;
    left: 0;
    opacity: 1;
    color: #adadaf;
    display: block;
    padding: 0 30px;
    line-height: 40px;
    transition: 0.5s;
    position: relative;
    background: #323237;
    content: attr(data-front);
    transform: translateY(0) rotateX(0);
  }
}

.page-section {
  margin-top: 100px;
}

.opulent-horse-betting-overview {
  background: linear-gradient(180deg, #0f1524 0%, #0b1220 100%);
  padding: 60px 0;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  width: 100%;
}

.page-content.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.prestigious-visual-frame {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  width: 100%;
  max-width: 800px;
  border: 2px solid #ffcc4d;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 204, 77, 0.3);
  transition: box-shadow 0.3s ease;
}

.prestigious-visual-frame:hover {
  box-shadow: 0 0 30px rgba(255, 204, 77, 0.5);
}

.prestigious-visual-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.elite-main-heading {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #ffcc4d;
  text-shadow: 0 0 10px rgba(255, 204, 77, 0.4);
}

.refined-intro-text,
.distinguished-detail-line,
.affluent-welcome-bonus-area p,
.affluent-betting-options-area p,
.exclusive-feature-block p,
.affluent-platform-design-area p,
.affluent-support-area p,
.affluent-payment-methods-area p,
.affluent-pros-cons-area p,
.affluent-cons-area p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.distinguished-detail-line span,
.affluent-pros-cons-area p,
.affluent-cons-area p {
  font-weight: 600;
  color: #ffcc4d;
}

.affluent-welcome-bonus-area,
.affluent-betting-options-area,
.affluent-platform-design-area,
.affluent-support-area,
.affluent-payment-methods-area,
.affluent-pros-cons-area,
.affluent-cons-area {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 40px;
  padding: 30px;
  border: 1px solid rgba(255, 204, 77, 0.2);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(255, 204, 77, 0.2);
  transition: box-shadow 0.3s ease;
}

.affluent-welcome-bonus-area:hover,
.affluent-betting-options-area:hover,
.affluent-platform-design-area:hover,
.affluent-support-area:hover,
.affluent-payment-methods-area:hover,
.affluent-pros-cons-area:hover,
.affluent-cons-area:hover {
  box-shadow: 0 0 25px rgba(255, 204, 77, 0.4);
}

.grand-feature-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 204, 77, 0.3);
}

.sophisticated-subheader {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #ffcc4d;
}

.majestic-key-features-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
  gap: 30px;
}

.exclusive-feature-block {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid rgba(255, 204, 77, 0.2);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(255, 204, 77, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 300px;
}

.exclusive-feature-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 204, 77, 0.4);
}

.distinguished-rating {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.distinguished-rating span {
  color: #ffcc4d;
}

.premium-action-hub {
  display: flex;
  justify-content: center;
  width: 100%;
}

.elegant-access-button {
  background-color: #ffcc4d;
  color: #0f1524;
  padding: 15px 40px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 204, 77, 0.5);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.elegant-access-button:hover {
  background-color: #ffd97d;
  box-shadow: 0 0 25px rgba(255, 204, 77, 0.7);
}

@media (max-width: 1024px) {
  .majestic-key-features-layout {
    flex-direction: column;
    align-items: center;
  }

  .exclusive-feature-block {
    flex: 1 1 100%;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .opulent-horse-betting-overview {
    padding: 40px 0;
  }

  .elite-main-heading {
    font-size: 36px;
  }

  .grand-feature-title {
    font-size: 28px;
  }

  .sophisticated-subheader {
    font-size: 20px;
  }

  .refined-intro-text,
  .distinguished-detail-line,
  .affluent-welcome-bonus-area p,
  .affluent-betting-options-area p,
  .exclusive-feature-block p,
  .affluent-platform-design-area p,
  .affluent-support-area p,
  .affluent-payment-methods-area p,
  .affluent-pros-cons-area p,
  .affluent-cons-area p {
    font-size: 16px;
  }

  .affluent-welcome-bonus-area,
  .affluent-betting-options-area,
  .affluent-platform-design-area,
  .affluent-support-area,
  .affluent-payment-methods-area,
  .affluent-pros-cons-area,
  .affluent-cons-area {
    padding: 20px;
  }

  .exclusive-feature-block {
    padding: 20px;
  }

  .elegant-access-button {
    padding: 12px 30px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .opulent-horse-betting-overview {
    padding: 30px 0;
  }

  .page-content.container {
    padding: 0 15px;
  }

  .prestigious-visual-frame {
    margin-bottom: 20px;
  }

  .elite-main-heading {
    font-size: 28px;
  }

  .grand-feature-title {
    font-size: 24px;
  }

  .sophisticated-subheader {
    font-size: 18px;
  }

  .refined-intro-text,
  .distinguished-detail-line,
  .affluent-welcome-bonus-area p,
  .affluent-betting-options-area p,
  .exclusive-feature-block p,
  .affluent-platform-design-area p,
  .affluent-support-area p,
  .affluent-payment-methods-area p,
  .affluent-pros-cons-area p,
  .affluent-cons-area p {
    font-size: 14px;
    text-align: left;
  }

  .distinguished-rating {
    font-size: 18px;
  }

  .elegant-access-button {
    padding: 10px 25px;
    font-size: 16px;
  }
}

.luxury-betting-overview {
  background: linear-gradient(180deg, #0f1524 0%, #0b1220 100%);
  padding: 50px 0;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-content.container {
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
}

.elite-intro-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 35px;
  text-align: center;
}

.elite-intro-panel img {
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 18px rgba(255, 204, 77, 0.35);
  margin-bottom: 25px;
}

.elite-heading-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.elite-heading-area h1 {
  font-size: 2.8em;
  margin: 0 0 15px;
  color: #ffcc4d;
  text-shadow: 0 0 6px rgba(255, 204, 77, 0.55);
}

.elite-heading-area p {
  font-size: 1.2em;
  line-height: 1.7;
  max-width: 850px;
}

.superior-info-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
}

.refined-detail-module {
  background: rgba(11, 18, 32, 0.85);
  border: 1px solid #ffcc4d;
  border-radius: 18px;
  padding: 30px;
  width: 100%;
  box-shadow: 0 0 25px rgba(255, 204, 77, 0.25);
  display: flex;
  flex-direction: column;
}

.refined-detail-module h2 {
  font-size: 2em;
  color: #ffcc4d;
  margin-bottom: 20px;
  text-align: center;
}

.refined-detail-module h3 {
  font-size: 1.5em;
  color: #ffffff;
  margin: 15px 0 10px;
}

.refined-detail-module p {
  font-size: 1.05em;
  line-height: 1.6;
  margin: 10px 0;
}

.prestige-item-catalog {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prestige-item-catalog li {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 204, 77, 0.25);
  padding-bottom: 15px;
}

.prestige-item-catalog li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.prestige-item-catalog li span {
  font-weight: bold;
  color: #ffcc4d;
}

.superior-score-display {
  font-size: 1.3em;
  text-align: center;
  margin: 35px 0 25px;
}

.superior-score-display span {
  font-weight: bold;
  color: #ffcc4d;
}

.luxury-engagement-zone {
  display: flex;
  justify-content: center;
}

.elite-entry-button {
  background-color: #ffcc4d;
  color: #0f1524;
  padding: 18px 50px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  box-shadow: 0 0 18px rgba(255, 204, 77, 0.45);
  transition: box-shadow 0.3s ease;
}

.elite-entry-button:hover {
  box-shadow: 0 0 30px rgba(255, 204, 77, 0.65);
}

@media (min-width: 768px) {
  .elite-intro-panel {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 40px;
  }

  .elite-intro-panel img {
    max-width: 300px;
    margin-bottom: 0;
  }

  .elite-heading-area {
    align-items: flex-start;
  }
}

:root {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  background: -webkit-linear-gradient(
    90deg,
    #000000,
    #0d1521,
    #070e18
  );
  background: linear-gradient(
    90deg,
    #000000,
    #0d1521,
    #070e18
  );
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

.container {
  max-width: 375px;
  min-width: 320px;
  margin: 0 auto;
}

@media screen and (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

body {
  overflow-x: hidden !important;
}
