@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --navy-950: #010221;
  --navy-900: #030734;
  --navy-800: #041042;
  --navy-700: #071b53;
  --navy-600: #0b2c73;
  --blue-400: #26c4ff;
  --blue-300: #64ddff;
  --teal-300: #64ffe1;
  --amber-400: #ffb347;
  --pink-400: #ff6b9c;
  --muted: #a4b6d9;
  --btn-primary-start: #ffd86a;
  --btn-primary-end: #ff7a00;
  --btn-secondary-start: #4f6aff;
  --btn-secondary-end: #011fc8;
  --btn-ghost-bg: rgba(255, 255, 255, 0.05);
  --btn-radius: 18px;
  --stroke: rgba(255, 255, 255, 0.14);
  --stroke-strong: rgba(255, 255, 255, 0.3);
  --shadow-panel: 0 25px 60px rgba(3, 10, 33, 0.5);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --blur: 18px;
  --transition-fast: 220ms ease;
  --transition-slow: 480ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, rgba(15, 69, 255, 0.25), transparent 55%),
    linear-gradient(180deg, #020622 0%, #010221 60%, #050a2c 100%);
  color: #f6f8ff;
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blue-300);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--teal-300);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page__content {
  flex: 1;
}

.container {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

.section {
  padding: clamp(2.5rem, 4vw, 4rem) 0;
}

.page--responsible-play .section--tight {
  padding-bottom: clamp(0.25rem, 0.6vw, 0.5rem);
}

.page--responsible-play .section + .section {
  padding-top: clamp(0.75rem, 1.2vw, 1.25rem);
}

.page--responsible-play .hero--compact {
  margin-bottom: clamp(0.35rem, 1vw, 0.8rem);
}

.page--responsible-play .hero__intro--wide {
  margin-bottom: clamp(0.2rem, 0.6vw, 0.4rem);
  padding-inline: clamp(0.8rem, 1.5vw, 1.2rem);
}

.page--responsible-play .section--tight + .section {
  padding-top: clamp(0.35rem, 0.8vw, 0.8rem);
}

.page--casino .hero__intro--tight {
  width: 100%;
  margin-inline: 0;
}

.section + .section {
  padding-top: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.section__title {
  margin: 0.1rem 0 0.85rem;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
}

.section__description {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 65ch;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid--cards {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-size: 0.83rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.8rem;
  border-radius: var(--btn-radius);
  border: 1px solid transparent;
  font-weight: 600;
  background: transparent;
  color: #fff;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  box-shadow: var(--btn-shadow, none);
  min-height: 46px;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn--primary {
  background: linear-gradient(120deg, var(--btn-primary-start), var(--btn-primary-end));
  color: #2b1300;
  border-color: rgba(255, 174, 64, 0.6);
  --btn-shadow: 0 20px 35px rgba(255, 140, 0, 0.4);
}

.btn--primary:hover {
  box-shadow: 0 25px 45px rgba(255, 140, 0, 0.45);
  color: #8a4b00;
}

.btn--secondary {
  background: linear-gradient(120deg, var(--btn-secondary-start), var(--btn-secondary-end));
  color: #f5f7ff;
  border-color: rgba(39, 82, 255, 0.6);
  --btn-shadow: 0 20px 30px rgba(25, 56, 255, 0.4);
}

.btn--secondary:hover {
  box-shadow: 0 26px 36px rgba(25, 56, 255, 0.45);
  color: #ffffff;
}

.btn--ghost {
  background: var(--btn-ghost-bg);
  color: #e2e8ff;
  border-color: rgba(255, 255, 255, 0.16);
  --btn-shadow: none;
}

.btn--soft {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  --btn-shadow: none;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: inherit;
}

.logo__text {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  text-transform: uppercase;
  line-height: 1;
}

.logo__text strong {
  font-size: 1.1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(var(--blur));
  background: rgba(1, 2, 33, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.5rem;
}

.site-header__utility {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.site-header__utility--cta {
  flex-wrap: nowrap;
}

.cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), rgba(21, 67, 255, 0.65));
  box-shadow: 0 10px 25px rgba(7, 15, 52, 0.5);
  color: #fff;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  flex: 0 0 auto;
}

.cta-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(7, 15, 52, 0.55);
}

.cta-icon span {
  pointer-events: none;
}

.btn--cta-pill {
  border-radius: 14px;
  min-height: 44px;
  padding-inline: 1.5rem;
  padding-block: 0.55rem;
  font-size: 0.85rem;
	width: max-content;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--btn-radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.nav-toggle__icon {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle__icon span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle__label {
  font-size: 0.85rem;
}

.nav-toggle--open {
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle--open .nav-toggle__icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle--open .nav-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle--open .nav-toggle__icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.primary-nav {
  background: rgba(2, 4, 26, 0.85);
}

.primary-nav > .container {
  width: min(100% - 1rem, 1400px);
}

.primary-nav__rail {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.5rem;
  scrollbar-width: none;
  overflow-x: auto;
}

.primary-nav__rail::-webkit-scrollbar {
  display: none;
}

.primary-nav__link {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  font-weight: 500;
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
  flex: 0 0 auto;
  white-space: nowrap;
}

.primary-nav__link:hover,
.primary-nav__link:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.primary-nav__link--active {
  background: rgba(100, 221, 255, 0.15);
  color: #fff;
  border-color: rgba(100, 221, 255, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(4, 16, 66, 0.9);
}

.ticker--dense {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: none;
}

.ticker__track {
  display: flex;
  gap: 2.5rem;
  padding: 0.55rem 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--muted);
  white-space: nowrap;
}

.ticker__item strong {
  color: #fff;
  font-weight: 600;
}

.hero {
  padding-top: 4.5rem;
}

.page__content > .hero:first-of-type {
  padding-top: clamp(2rem, 3vw, 3rem);
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.hero__grid > * {
  height: 100%;
}

.hero__tile {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero__tile::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: linear-gradient(135deg, rgba(4, 9, 28, 0.35), rgba(6, 22, 58, 0.1)), url('../img/back-football.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero__tile > * {
  position: relative;
  z-index: 1;
}

.hero__lead {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__intro {
  width: 100%;
}

.hero__intro--tight {
  width: min(100%, 860px);
  margin-inline: auto;
  text-align: left;
}

.hero__intro--wide {
  width: min(100%, 1180px);
  margin-inline: auto;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  padding-inline: clamp(1.5rem, 3vw, 2.5rem);
}

.hero__intro--stacked {
  margin-bottom: 1rem;
}

.hero__stories {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}

.hero__stories .hero-story-card {
  flex: 1 1 0;
}

.hero-story-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  min-height: 0;
  isolation: isolate;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  cursor: pointer;
}

.hero-story-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(0deg, rgba(1, 2, 33, 0.9) 0%, rgba(1, 2, 33, 0.05) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(100, 221, 255, 0.5);
}

.hero-story-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(100, 221, 255, 0.65);
}

.hero-story-card__overlay,
.hero-story-card__overlay::after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.4;
}

.hero-story-card__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(1, 2, 33, 0.9) 0%, rgba(1, 2, 33, 0.05) 70%);
  filter: blur(6px);
}

.hero-story-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
}

.hero-story-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: auto;
}

.hero-story-card__badge {
  padding: 0.15rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-story-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.hero-story-card__views {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-story-card h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
}


.hero-story__meta {
  margin-top: auto;
  display: flex;
  gap: 0.45rem;
}

.hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.25;
}

.hero__description {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.about-hero {
  max-width: 900px;
  margin: 0 auto 2rem;
  text-align: left;
}

.stats-panel {
  margin-top: 1rem;
}

.article-panel {
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 10, 33, 0.85);
  box-shadow: var(--shadow-panel);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


.article-panel__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.article-panel__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-end;
}

.article-panel__meta-info {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.article-panel__meta-stats {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.article-panel__author .article-byline {
  margin-bottom: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: rgba(3, 8, 36, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.stat-card__value {
  font-size: 1.6rem;
  font-weight: 600;
}

.stat-card__label {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero__media {
  padding: 0;
  border-radius: var(--radius-xl);
  background: transparent;
  border: none;
  box-shadow: none;
  display: block;
}

.hero-photo {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  margin: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.article-analysis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.analysis-card {
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 35px rgba(3, 10, 33, 0.4);
}

.analysis-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 38, 0.35);
  pointer-events: none;
  border-radius: inherit;
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(3, 6, 26, 0.95) 0%, rgba(3, 6, 26, 0.35) 70%, rgba(3, 6, 26, 0) 100%);
  pointer-events: none;
  border-radius: inherit;
}

body.page--news .hero-photo::after {
  background: none;
  filter: none;
}

.panel-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.panel {
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 15, 52, 0.85);
  position: relative;
  overflow: hidden;
}

.panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(100, 221, 255, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.panel:hover::after {
  opacity: 1;
}

.panel--accent {
  background: linear-gradient(135deg, rgba(38, 196, 255, 0.16), rgba(9, 198, 225, 0.04));
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.84rem;
  color: var(--teal-300);
}

.live-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-300);
  box-shadow: 0 0 12px var(--teal-300);
  animation: pulse 1.6s infinite;
}

.glass-panel {
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 10, 33, 0.75);
  box-shadow: var(--shadow-panel);
}

.glass-panel--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.glow-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(5, 12, 40, 0.95), rgba(9, 40, 85, 0.6));
  position: relative;
  overflow: hidden;
}

.glow-card--cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(145deg, rgba(5, 12, 40, 0.92), rgba(9, 40, 85, 0.8));
  overflow: hidden;
}

.glow-card__logo {
  width: clamp(48px, 4vw, 56px);
  height: clamp(48px, 4vw, 56px);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.glow-card__logo img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.glow-card__btn {
  align-self: flex-start;
  text-transform: none;
  letter-spacing: 0.05em;
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.15), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
  z-index: 1;
}

.glow-card:hover::before {
  opacity: 1;
}

.glow-card--cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/back-casinos.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: 0;
}

.glow-card--cta > * {
  position: relative;
  z-index: 2;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}

.slots-grid .news-card {
  gap: 0.65rem;
}

.slots-grid .news-card p {
  margin: 0;
}

.slots-grid .news-card a {
  margin-top: auto;
  display: inline-flex;
  align-self: flex-start;
}

.slots-grid .news-card h3 {
  margin: 0 0 0.25rem;
}

.news-grid--list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-grid--list .news-card {
  width: 100%;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gh-border, rgba(255, 255, 255, 0.08));
  background: var(--gh-bg, rgba(5, 17, 47, 0.85));
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --gh-angle: 130deg;
  --gh-rgba: rgba(114, 234, 255, 0.5);
  --gh-size: 260%;
  --gh-duration: 0.85s;
  --gh-bg: rgba(5, 17, 47, 0.85);
  --gh-border: rgba(255, 255, 255, 0.08);
  --gh-br: var(--radius-md);
}

.news-card[data-card-link] {
  cursor: pointer;
}

.page--news-category .news-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}

.page--news-category .news-card {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-panel);
}

.page--news-category .news-card::before,
.page--news-category .news-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast), filter var(--transition-fast);
}

.page--news-category .news-card::before {
  background: linear-gradient(180deg, rgba(1, 2, 33, 0.25) 0%, rgba(1, 2, 33, 0.75) 55%, rgba(1, 2, 33, 0.97) 100%);
  opacity: 1;
  z-index: 2;
}

.page--news-category .news-card::after {
  background:
    radial-gradient(circle at 20% 5%, rgba(38, 196, 255, 0.35), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(100, 255, 225, 0.2), transparent 45%);
  opacity: 0.4;
  z-index: 2;
}

.page--news-category .news-card > * {
  position: relative;
  z-index: 3;
}

.page--news-category .news-card:hover::before {
  opacity: 1;
}

.page--news-category .news-card:hover::after {
  opacity: 0.6;
}

.page--news-category .news-card__bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.01);
  opacity: 0.4;
  transition: transform var(--transition-slow), filter var(--transition-fast), opacity var(--transition-fast);
}

.page--news-category .news-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: inherit;
  background-size: inherit;
  background-position: inherit;
  background-repeat: inherit;
  filter: blur(14px);
  opacity: 0.35;
  transform: translateY(8%) scale(1.08);
  pointer-events: none;
  mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 12%, rgba(0, 0, 0, 0) 65%);
  -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 12%, rgba(0, 0, 0, 0) 65%);
}

.page--news-category .news-card:hover .news-card__bg {
  transform: scale(1.05);
  filter: saturate(1.05);
  opacity: 0.4;
}

.hero-story {
  --gh-bg: transparent;
  --hero-story-image: none;
  border-color: transparent;
  background: transparent;
  cursor: pointer;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.hero-story::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    var(--hero-story-image),
    linear-gradient(0deg, rgba(1, 2, 33, 0.9) 0%, rgba(1, 2, 33, 0) 70%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-story:hover {
  transform: translateY(-2px);
}

.hero-story:focus-visible {
  box-shadow: 0 0 0 2px rgba(100, 221, 255, 0.65);
}

.hero-story > * {
  position: relative;
  z-index: 1;
}

.hero-story {
  color: #fff;
}

.news-card--media {
  flex-direction: row;
  gap: 1rem;
  align-items: stretch;
}

.news-card__media {
  width: clamp(260px, 35vw, 420px);
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 100px;
}

.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.news-card__body h3 {
  margin: 0 0 0.25rem;
}

.news-card__body p {
  margin: 0;
}

.news-card__category {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  color: #f6f8ff;
  text-decoration: none;
}

.news-card__category:hover {
  color: var(--blue-300);
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

.meta-chip .icon {
  flex-shrink: 0;
}

.card-actions {
  margin-top: 1rem;
}

.card--equal {
  display: flex;
  flex-direction: column;
}

.card--equal__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.card-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #f6f8ff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.card-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.card-btn--accent {
  background: linear-gradient(120deg, var(--btn-primary-start), var(--btn-primary-end));
  color: #2b1300;
  border-color: rgba(255, 180, 64, 0.6);
}

.card-btn--accent:hover {
  background: linear-gradient(120deg, #ffe38d, #ff9b40);
  color: #2b1300;
  border-color: rgba(255, 210, 120, 0.85);
  box-shadow: 0 18px 30px rgba(255, 159, 64, 0.25);
}

.card-btn--accent:hover {
  border-color: rgba(255, 201, 102, 0.9);
  box-shadow: 0 18px 30px rgba(255, 140, 0, 0.35);
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(100, 221, 255, 0.4);
}

.glare-hover {
  width: var(--gh-width, 100%);
  height: var(--gh-height, auto);
  background: var(--gh-bg, rgba(5, 17, 47, 0.85));
  border-radius: var(--gh-br, var(--radius-md));
  border: 1px solid var(--gh-border, rgba(255, 255, 255, 0.08));
  overflow: hidden;
  position: relative;
}

.glare-hover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    var(--gh-angle, 130deg),
    hsla(0, 0%, 0%, 0) 45%,
    var(--gh-rgba, rgba(114, 234, 255, 0.5)) 52%,
    hsla(0, 0%, 0%, 0) 60%
  );
  transition: var(--gh-duration, 0.85s) ease;
  background-size:
    var(--gh-size, 260%) var(--gh-size, 260%),
    100% 100%;
  background-repeat: no-repeat;
  background-position:
    -150% -150%,
    0 0;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
  will-change: background-position;
}

.glare-hover:hover {
  cursor: pointer;
}

.glare-hover:hover::before {
  background-position:
    150% 150%,
    0 0;
}

.glare-hover--play-once::before {
  transition: none;
}

.glare-hover--play-once:hover::before {
  transition: var(--gh-duration, 0.9s) ease;
  background-position:
    100% 100%,
    0 0;
}

.glare-hover > * {
  position: relative;
  z-index: 3;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.news-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.news-card__top .news-card__meta-item {
  flex: 1;
}

.news-card__info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.5rem;
  text-align: right;
}

.news-card__timestamp {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-story-card__timestamp {
  color: #ffffff;
}

.news-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: auto;
}

.news-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.news-card__meta-item time {
  color: inherit;
}

.news-card__meta-item a {
  color: #f6f8ff;
  font-weight: 600;
}

.icon {
  width: 0.95rem;
  height: 0.95rem;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-card__author {
  color: #f6f8ff;
  font-weight: 600;
}

.news-card__author:hover {
  color: var(--blue-300);
}

.article-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin: 0.5rem 0 1rem;
}

.article-header__category {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: #f6f8ff;
  text-decoration: none;
}

.article-header__category:hover {
  color: var(--blue-300);
}

.article-header__updated {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.article-header__stats {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.article-byline--compact {
  margin-bottom: 0;
  gap: 0.6rem;
}

.article-byline--compact .avatar--sm {
  width: 44px;
  height: 44px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.avatar--sm {
  width: 52px;
  height: 52px;
  font-size: 1rem;
  flex-shrink: 0;
}

.article-byline__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: block;
}

.article-byline a {
  color: #f6f8ff;
  font-weight: 600;
}

.article-byline a:hover {
  color: var(--blue-300);
}

.review-table {
  width: 100%;
  border-collapse: collapse;
}

.review-table th,
.review-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.review-table th {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.review-table td:last-child {
  text-align: right;
}

.btn--table {
  padding: 0.45rem 1.2rem;
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0.03em;
  min-height: auto;
}

.review-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.accordion {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.accordion__item + .accordion__item {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion__button {
  width: 100%;
  background: transparent;
  border: none;
  color: inherit;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion__button::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--muted);
  transition: transform var(--transition-fast);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--muted);
  transition: max-height 320ms ease;
}

.accordion__content.open {
  padding-bottom: 1rem;
}

.accordion__button[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.live-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.timeline {
  border-left: 2px solid rgba(255, 255, 255, 0.08);
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline__item {
  position: relative;
  padding-left: 1rem;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -1.55rem;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-300);
  box-shadow: 0 0 12px rgba(38, 196, 255, 0.8);
}

.table-wrapper {
  overflow-x: auto;
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(6, 12, 34, 0.8);
  color: #fff;
  font-family: inherit;
}

textarea.input {
  min-height: 140px;
  resize: vertical;
}

.brand-marquee {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(3, 6, 44, 0.95);
  overflow: hidden;
}

.brand-marquee + .brand-marquee {
  border-top: none;
}

.brand-marquee__track {
  display: flex;
  gap: 3rem;
  padding: 1.2rem 0;
  animation: ticker 35s linear infinite;
  width: max-content;
}

.brand-marquee__item {
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-marquee__item img {
  max-height: 28px;
  width: auto;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.25));
  opacity: 0.9;
}

.brand-marquee__item--ghost {
  border-style: dashed;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(3, 4, 25, 0.95);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: 3rem 0;
}

.site-footer__meta {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
}

.author-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.author-posts {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.author-posts__item {
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 12, 40, 0.75);
}

.author-posts__item small {
  color: var(--muted);
}

.mobile-stack {
  display: grid;
  gap: 1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  background-size: cover;
  background-position: center;
  border: none;
  box-shadow: none;
  overflow: hidden;
  mask-image: radial-gradient(circle, #fff 99%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle, #fff 99%, transparent 100%);
}

.avatar--dilshod {
  background-image: url('../img/avatars/avatar-1.jpg');
}

.avatar--shukhrat {
  background-image: url('../img/avatars/avatar-2.jpg');
}

.avatar--harsh {
  background-image: url('../img/avatars/avatar-3.jpg');
}

.avatar--malika {
  background-image: url('../img/avatars/avatar-4.jpg');
}

/* Review layout */
.review-hero {
  padding-bottom: 1rem;
}

.review-hero__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  background-image: linear-gradient(135deg, rgba(4, 16, 66, 0.92), rgba(0, 39, 92, 0.78)), url('../img/back-casinos.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 25px 60px rgba(3, 10, 33, 0.45);
}

.review-hero__logo {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.75rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.review-hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.review-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
  color: var(--muted);
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: #ffd86a;
}

.review-rating__stars {
  display: inline-flex;
  gap: 0.2rem;
}

.review-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.25rem;
}

.review-hero__cta-code {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-toc .toc__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.toc__link {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.85rem;
  color: var(--muted);
  transition: border var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.toc__link:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.review-main,
.review-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-block {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: var(--radius-lg);
  background: rgba(4, 16, 66, 0.65);
  box-shadow: 0 20px 45px rgba(3, 10, 33, 0.35);
  overflow: hidden;
  position: relative;
}

.review-block h2 {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.review-block p {
  color: var(--muted);
}

.review-block ul,
.review-block ol {
  color: var(--muted);
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-top: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  padding-inline: clamp(0.5rem, 2vw, 1.2rem);
  box-sizing: border-box;
  table-layout: fixed;
  min-width: 0;
}

.data-table th,
.data-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #f5f7ff;
  min-width: 0;
  word-break: break-word;
}

.data-table thead {
  background: linear-gradient(120deg, #0044c8, #2f72ff);
}

.data-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(9, 21, 63, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(3, 10, 33, 0.4);
}

.info-card h3 {
  margin-top: 0;
}

.info-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
}

.info-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bonus-card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.bonus-card__value {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffd86a;
}

.review-grid--payments {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.slot-page {
  background: linear-gradient(180deg, rgba(1, 2, 33, 0.35), rgba(4, 16, 66, 0.7));
}

.slot-hero__grid {
  display: grid;
  gap: clamp(1rem, 3vw, 2.5rem);
  grid-template-columns: minmax(0, 3fr) minmax(280px, 1.2fr);
  align-items: flex-start;
}

.slot-page .section:first-of-type {
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}

.slot-hero__card {
  border-radius: var(--radius-xl);
  padding: clamp(1rem, 2.2vw, 1.8rem) clamp(1.25rem, 2.5vw, 2rem);
  background-image: linear-gradient(135deg, rgba(11, 16, 60, 0.95), rgba(51, 104, 255, 0.78)), url('../img/back-casinos.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 25px 60px rgba(3, 10, 33, 0.55);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.slot-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--muted);
}

.slot-hero__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.slot-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: #ffd86a;
}

.slot-hero__actions {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-bottom: 0;
}

.slot-hero__actions .btn {
  width: 100%;
  justify-content: center;
}

.slot-preview {
  border-radius: var(--radius-xl);
  background: rgba(4, 16, 66, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(3, 10, 33, 0.38);
}

.slot-preview img {
  width: 100%;
  display: block;
}

.slot-preview__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  gap: 0.6rem;
}

.slot-preview__footnote {
  font-size: 0.8rem;
  color: var(--muted);
}

.slot-data {
  margin-top: 1rem;
  border-radius: var(--radius-xl);
  background: rgba(9, 21, 63, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.slot-data table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.slot-data th,
.slot-data td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.slot-data tbody tr:last-child td {
  border-bottom: none;
}

.slot-data th {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.slot-layout {
  display: grid;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  grid-template-columns: minmax(0, 2.7fr) minmax(260px, 1fr);
}

.slot-main,
.slot-aside {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.slot-block {
  border-radius: var(--radius-lg);
  background: rgba(4, 16, 66, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 20px 40px rgba(3, 10, 33, 0.35);
}

.slot-block h2 {
  margin-top: 0;
}

.slot-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.8rem;
}

.slot-stat {
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.slot-pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.slot-pros-cons ul {
  list-style: none;
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.slot-info-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem;
  background: rgba(9, 21, 63, 0.8);
}

.slot-info-card h3 {
  margin-top: 0;
}

.slot-info-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  display: grid;
  gap: 0.35rem;
}

.slot-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.slot-highlight__card {
  padding: 0.9rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.review-steps {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.review-steps figure {
  margin: 0;
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.review-steps img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 30px rgba(3, 10, 33, 0.35);
}

.review-steps figcaption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.pros-cons ul {
  list-style: none;
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.pros-cons li::marker {
  color: currentColor;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.65rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #f5f7ff;
}

.faq-item summary::marker {
  display: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.05);
}

.faq-item p {
  margin-bottom: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .slot-hero__grid {
    grid-template-columns: 1fr;
  }

  .slot-hero__actions {
    grid-template-columns: 1fr;
  }

  .slot-layout {
    grid-template-columns: 1fr;
  }

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

  .review-hero__meta,
  .review-hero__cta {
    justify-content: center;
  }
}

@media (max-width: 960px) {
  .review-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

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

  .hero__stories {
    height: auto;
  }

  .hero__stories .hero-story-card {
    flex: 0 0 auto;
  }

  .site-header__top {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .brand-marquee__item {
    min-width: 100px;
    font-size: 0.8rem;
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .primary-nav__rail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    justify-content: center;
    overflow: visible;
    padding-block: 0.5rem;
    gap: 0.5rem;
  }

  .primary-nav__link {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 900px) {
	.logo__text{
		display: none;
	}
  .site-header__top {
    position: relative;
    width: 100%;
    padding-top: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    width: auto;
    justify-content: center;
    position: static;
    top: auto;
    right: auto;
    margin-left: auto;
    order: 1;
  }

  .primary-nav {
    display: none;
  }

  .primary-nav--open {
    display: block;
  }

  .primary-nav__rail {
    flex-direction: column;
    overflow: visible;
    padding: 1rem 0.5rem 1.25rem;
  }

  .primary-nav__link {
    width: 100%;
    text-align: center;
  }

  .hero__stories {
    height: auto;
  }

  .site-header__utility--meta {
    display: none;
  }

  .site-header__utility--cta {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.3rem;
    order: 2;
  }

  .site-header__utility--cta .btn {
    flex: 1 1 0;
    width: auto;
  }

  .news-card--media {
    flex-direction: column;
  }

  .news-card__media {
    width: 100%;
    height: clamp(200px, 45vw, 280px);
  }

  .news-card__body {
    padding-top: 1rem;
  }

}

@media (max-width: 720px) {
  .container {
    width: min(100% - 1.25rem, 560px);
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .site-header__utility--cta .btn {
    width: auto;
  }

  .news-card__meta {
    flex-direction: column;
    gap: 0.35rem;
  }

  .news-card__top {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .news-card__info {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    text-align: right;
    margin-left: auto;
  }

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

  .hero__lead {
    order: 1;
  }

  .hero__stories {
    order: 2;
    height: auto;
  }

  .hero__stories .hero-story-card {
    flex: 0 0 auto;
  }

  .hero-story-card {
    flex-direction: column;
  }

  .article-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-panel__meta,
  .article-panel__meta-info,
  .article-panel__meta-stats {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .news-card--media {
    flex-direction: column;
  }

  .news-card__media {
    width: 100%;
    min-height: 180px;
  }
}

@media (max-width: 520px) {

  .brand-marquee__track {
    gap: 1.5rem;
  }

  .brand-marquee__item {
    min-width: 90px;
    padding: 0.5rem 0.8rem;
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.25;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.25;
    transform: scale(0.9);
  }
}
.hero__media ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.hero--stacked {
  display: grid;
  gap: 1.5rem;
}

.review-aside{
	display: flex;
	flex-direction: column;
	gap: 12px;
}
header .logo img{
	width: 52px;
	height: 52px;
}