﻿:root {
  --bg-0: #040507;
  --bg-1: #080a0f;
  --bg-2: #10131b;
  --card-bg: rgba(7, 10, 18, 0.94);
  --line-gold: rgba(192, 151, 48, 0.7);
  --line-gold-soft: rgba(192, 151, 48, 0.32);
  --gold: #d8c28a;
  --gold-soft: #e5d8b2;
  --text: #eef1f7;
  --text-dim: #a4acbb;
  --badge-bg: #d9be64;
  --badge-text: #181307;
  --radius: 1.45rem;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 0 1px rgba(192, 151, 48, 0.2), 0 0 34px rgba(192, 151, 48, 0.1);
  --container: min(1320px, 92vw);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  position: relative;
  color: var(--text);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    radial-gradient(1000px 420px at 50% -8%, rgba(187, 145, 42, 0.25), transparent 70%),
    radial-gradient(700px 320px at 85% 35%, rgba(88, 62, 12, 0.18), transparent 72%),
    linear-gradient(160deg, var(--bg-0), var(--bg-1) 52%, var(--bg-2));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 42%, rgba(0, 0, 0, 0.36));
}

.bg-three-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -3;
  opacity: 0.72;
}

.bg-noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.2;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.2) 0.75px, transparent 0.75px),
    radial-gradient(rgba(255, 255, 255, 0.14) 0.55px, transparent 0.55px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 2px 1px;
  mix-blend-mode: soft-light;
  animation: luxuryNoiseDrift 1.8s steps(3, end) infinite;
}

@keyframes luxuryNoiseDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0.45%, -0.4%, 0);
  }
  100% {
    transform: translate3d(-0.45%, 0.42%, 0);
  }
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid rgba(192, 151, 48, 0.24);
  background: rgba(8, 9, 13, 0.72);
  backdrop-filter: blur(8px);
}

.header-row {
  min-height: 4.45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.6rem 0;
}

.site-title {
  margin: 0;
  font-size: clamp(1.1rem, 2.8vw, 1.45rem);
  color: var(--gold-soft);
  letter-spacing: 0.01em;
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.header-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0.44rem 0.72rem;
  border-radius: 999px;
  border: 1px solid var(--line-gold-soft);
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.92rem;
  transition: background-color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.header-nav a:hover {
  background: rgba(192, 151, 48, 0.14);
  border-color: var(--line-gold);
  transform: translateY(-1px);
}

.header-nav a.is-current {
  background: rgba(192, 151, 48, 0.24);
  border-color: var(--line-gold);
  color: #fff2d0;
}

.header-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0.52rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line-gold-soft);
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.03);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.header-link:hover {
  background: rgba(192, 151, 48, 0.14);
  transform: translateY(-1px);
}

.page-head {
  padding: clamp(1.6rem, 4vw, 2.4rem) 0 1.1rem;
}

.page-head h1 {
  margin: 0;
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  color: var(--gold-soft);
  letter-spacing: 0.01em;
}

.page-head p {
  margin: 0.55rem 0 0;
  color: var(--text-dim);
}

/* Hero Banner */
.hero {
  position: relative;
  min-height: clamp(330px, 48vw, 440px);
  margin-top: clamp(1rem, 3vw, 1.5rem);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(192, 151, 48, 0.36);
  box-shadow:
    0 0 0 1px rgba(192, 151, 48, 0.18),
    0 22px 52px rgba(0, 0, 0, 0.58),
    0 0 44px rgba(192, 151, 48, 0.12);
  isolation: isolate;
}

.hero__bg,
.hero__overlay,
.hero__shine {
  position: absolute;
  inset: 0;
}

.hero__bg {
  background-image: var(--banner);
  background-size: cover;
  background-position: center;
  transform-origin: center;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero__overlay {
  background:
    radial-gradient(120% 90% at 18% 50%, rgba(12, 10, 6, 0.5), rgba(6, 8, 12, 0.86) 62%),
    linear-gradient(115deg, rgba(9, 10, 15, 0.2) 0%, rgba(9, 10, 15, 0.78) 58%, rgba(6, 7, 9, 0.9) 100%);
  z-index: 1;
}

.hero__shine {
  width: 165%;
  height: 165%;
  left: -32%;
  top: -32%;
  z-index: 2;
  pointer-events: none;
  background:
    conic-gradient(
      from 0deg,
      rgba(216, 194, 138, 0) 0deg,
      rgba(216, 194, 138, 0.08) 55deg,
      rgba(216, 194, 138, 0.25) 82deg,
      rgba(216, 194, 138, 0.07) 115deg,
      rgba(216, 194, 138, 0) 180deg,
      rgba(216, 194, 138, 0.04) 235deg,
      rgba(216, 194, 138, 0) 360deg
    );
  filter: blur(22px);
  animation: heroSpin 16s linear infinite;
}

.hero__content {
  position: relative;
  z-index: 3;
  min-height: inherit;
  display: grid;
  align-content: end;
  gap: 0.78rem;
  padding: clamp(1.1rem, 4vw, 2rem);
}

.hero__badge {
  width: fit-content;
  min-height: 29px;
  padding: 0.2rem 0.78rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #181307;
  background: linear-gradient(135deg, #ecd791, #cfa749);
  box-shadow: 0 8px 18px rgba(192, 151, 48, 0.28);
}

.hero__title {
  margin: 0;
  color: #d8c28a;
  font-size: clamp(1.9rem, 6vw, 3rem);
  line-height: 1.06;
  text-wrap: balance;
}

.hero__sub {
  margin: 0;
  max-width: 52ch;
  color: #d0d5de;
  font-size: clamp(0.98rem, 2.6vw, 1.18rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin-top: 0.15rem;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.56rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 194, 138, 0.66);
  color: #15120b;
  background: linear-gradient(135deg, #ead28f, #cca348);
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(192, 151, 48, 0.32);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease, background-color 0.24s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 14px 30px rgba(192, 151, 48, 0.42);
}

.btn--ghost {
  color: #eadcb8;
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(216, 194, 138, 0.52);
  box-shadow: inset 0 0 0 1px rgba(216, 194, 138, 0.08);
}

.btn--ghost:hover {
  filter: none;
  background: rgba(216, 194, 138, 0.11);
  box-shadow:
    inset 0 0 0 1px rgba(216, 194, 138, 0.14),
    0 8px 18px rgba(0, 0, 0, 0.35);
}

@keyframes heroZoom {
  0% {
    transform: scale(1.04) translate3d(-1.4%, -0.8%, 0);
  }
  100% {
    transform: scale(1.12) translate3d(1.2%, 1.1%, 0);
  }
}

@keyframes heroSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.entry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.entry-card {
  padding: 1.15rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line-gold-soft);
  background: rgba(10, 12, 19, 0.92);
  box-shadow: var(--shadow-gold), var(--shadow-soft);
  display: grid;
  gap: 0.45rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.entry-card strong {
  font-size: 1.1rem;
  color: var(--gold-soft);
}

.entry-card span {
  color: var(--text-dim);
}

.entry-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-gold);
  box-shadow:
    0 0 0 1px rgba(216, 194, 138, 0.24),
    0 0 42px rgba(192, 151, 48, 0.18),
    0 20px 42px rgba(0, 0, 0, 0.52);
}

.cards-section {
  padding: 0.3rem 0 clamp(2rem, 5vw, 3.2rem);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.partner-card {
  position: relative;
  display: grid;
  gap: 0.58rem;
  min-height: 210px;
  padding: 1rem;
  border-radius: 1.12rem;
  border: 1px solid rgba(216, 194, 138, 0.22);
  background:
    radial-gradient(460px 200px at 82% -18%, rgba(216, 194, 138, 0.14), transparent 58%),
    radial-gradient(360px 180px at 12% 110%, rgba(46, 72, 126, 0.14), transparent 62%),
    linear-gradient(150deg, rgba(7, 10, 18, 0.98), rgba(9, 12, 20, 0.94));
  box-shadow: var(--shadow-gold), var(--shadow-soft);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 194, 138, 0.46);
  box-shadow:
    0 0 0 1px rgba(216, 194, 138, 0.26),
    0 0 38px rgba(192, 151, 48, 0.18),
    0 22px 40px rgba(0, 0, 0, 0.56);
}

.partner-card:focus-visible {
  outline: none;
  transform: translateY(-5px);
  border-color: rgba(216, 194, 138, 0.5);
  box-shadow:
    0 0 0 1px rgba(216, 194, 138, 0.3),
    0 0 40px rgba(192, 151, 48, 0.2),
    0 22px 40px rgba(0, 0, 0, 0.56);
}

.partner-card::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(248, 225, 162, 0.2), transparent 66%);
  pointer-events: none;
  opacity: 0.75;
  z-index: 0;
}

.partner-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background:
    conic-gradient(
      from 0deg,
      rgba(248, 225, 162, 0) 0deg,
      rgba(248, 225, 162, 0.95) 52deg,
      rgba(248, 225, 162, 0) 108deg,
      rgba(248, 225, 162, 0) 182deg,
      rgba(212, 175, 55, 0.86) 240deg,
      rgba(248, 225, 162, 0) 308deg,
      rgba(248, 225, 162, 0) 360deg
    );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.42));
  opacity: 0.72;
  pointer-events: none;
  z-index: 0;
  animation: cardOrbitGlow 3.6s linear infinite;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.52rem;
  position: relative;
  z-index: 1;
}

.card-logo {
  width: clamp(90px, 12vw, 108px);
  height: clamp(90px, 12vw, 108px);
  border-radius: 0.9rem;
  border: 1px solid rgba(216, 194, 138, 0.36);
  background:
    radial-gradient(circle at 22% 14%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 56%),
    linear-gradient(160deg, rgba(12, 14, 20, 0.94), rgba(7, 9, 13, 0.92));
  box-shadow:
    inset 0 0 20px rgba(0, 0, 0, 0.42),
    0 6px 14px rgba(0, 0, 0, 0.24);
  padding: 0.2rem;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 0.72rem;
  background: #0a0d12;
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 0.15rem;
  filter: saturate(1.05) contrast(1.03) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.34));
  transition: transform 0.24s ease;
}

.partner-card:hover .card-logo img {
  transform: scale(1.04);
}

.partner-card:hover::after,
.partner-card:focus-visible::after {
  opacity: 0.92;
  animation-duration: 2.7s;
}

.badge-elit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.12rem 0.62rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--badge-text);
  background: linear-gradient(140deg, #e5cd79, var(--badge-bg));
  text-transform: uppercase;
  box-shadow: 0 8px 16px rgba(212, 175, 55, 0.2);
}

.score {
  color: #d7deeb;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.18rem 0.52rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 194, 138, 0.28);
  background: rgba(255, 255, 255, 0.03);
}

.card-title {
  margin: 0.1rem 0 0;
  font-size: clamp(1.04rem, 2.4vw, 1.42rem);
  line-height: 1.2;
  color: #edd8a8;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
  position: relative;
  z-index: 1;
}

.card-promos {
  margin: 0.06rem 0 0;
  display: grid;
  gap: 0.2rem;
  position: relative;
  z-index: 1;
}

.promo-item {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  padding-bottom: 0.22rem;
  border-bottom: 1px dashed rgba(216, 194, 138, 0.18);
  font-size: 0.79rem;
  line-height: 1.28;
}

.promo-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.promo-label {
  color: #afb8c8;
  font-weight: 600;
}

.promo-value {
  color: #edf1fb;
  font-weight: 700;
  text-align: right;
}

.card-sub {
  margin: 0;
  color: #afbacd;
  font-size: 0.82rem;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}

.card-foot {
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(216, 194, 138, 0.18);
  color: #e8eefb;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.card-cta {
  margin-top: auto;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.22rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 212, 133, 0.66);
  color: #17120a;
  background: linear-gradient(135deg, #f0d485, #d1a847);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 8px 16px rgba(192, 151, 48, 0.24);
  position: relative;
  z-index: 1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.partner-card:hover .card-cta,
.partner-card:focus-visible .card-cta {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 10px 18px rgba(192, 151, 48, 0.3);
}

@keyframes cardOrbitGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: clamp(320px, 86vw, 380px);
  }

  .hero__content {
    gap: 0.68rem;
  }

  .hero__actions {
    gap: 0.55rem;
  }

  .btn {
    min-width: min(100%, 180px);
  }

  .hero__actions .btn {
    flex: 1 1 160px;
  }

  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.52rem;
  }

  .partner-card {
    min-height: 176px;
    padding: 0.52rem;
    gap: 0.34rem;
    border-radius: 0.78rem;
  }

  .card-top {
    gap: 0.3rem;
  }

  .badge-elit {
    min-height: 19px;
    padding: 0.05rem 0.34rem;
    font-size: 0.48rem;
  }

  .score {
    font-size: 0.5rem;
    padding: 0.08rem 0.28rem;
  }

  .card-logo {
    width: clamp(52px, 22vw, 72px);
    height: clamp(52px, 22vw, 72px);
    border-radius: 0.6rem;
    padding: 0.12rem;
    align-self: start;
  }

  .card-logo img {
    border-radius: 0.48rem;
    padding: 0.08rem;
    object-fit: contain;
  }

  .card-title {
    margin: 0;
    font-size: 0.68rem;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .card-promos {
    gap: 0.08rem;
  }

  .promo-item {
    gap: 0.2rem;
    padding-bottom: 0.08rem;
    font-size: 0.46rem;
    line-height: 1.15;
  }

  .card-sub {
    display: none;
  }

  .card-foot {
    margin-top: auto;
    font-size: 0.54rem;
    line-height: 1.22;
    padding-top: 0.32rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .card-cta {
    min-height: 19px;
    padding: 0.03rem 0.32rem;
    font-size: 0.44rem;
    letter-spacing: 0.03em;
  }
}

@media (min-width: 780px) {
  .header-row {
    flex-wrap: nowrap;
  }

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

  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-card::after {
    animation: none;
  }
}

/* ========================================
   Responsible Gaming
======================================== */
.responsible-gaming {
  margin-top: clamp(1rem, 4vw, 1.8rem);
  padding: clamp(1rem, 3.4vw, 1.28rem);
  border-radius: var(--radius);
  border: 1px solid var(--line-gold-soft);
  background: linear-gradient(155deg, rgba(18, 21, 30, 0.88), rgba(8, 10, 16, 0.92));
  box-shadow: var(--shadow-soft);
  color: var(--text-dim);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.72;
}

.responsible-gaming strong {
  color: var(--gold-soft);
  font-size: 1.02rem;
}

.responsible-gaming a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.responsible-gaming a:hover,
.responsible-gaming a:focus-visible {
  color: #fff4cc;
}
