@charset "UTF-8";

/* =============================================
   FONTS
   ============================================= */

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-ExtraBold.woff2") format("woff2"),
       url("../fonts/Rubik-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Medium.woff2") format("woff2"),
       url("../fonts/Rubik-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Bold.woff2") format("woff2"),
       url("../fonts/Rubik-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.woff2") format("woff2"),
       url("../fonts/Rubik-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* =============================================
   CSS VARIABLES
   ============================================= */

:root {
  --gold:        #F5C518;
  --gold-light:  #FFD84D;
  --gold-dark:   #C9960A;
  --red:         #D4231E;
  --red-dark:    #A31815;
  --bg-dark:     #0D0B1A;
  --bg-card:     rgba(255, 255, 255, 0.06);
  --bg-card-hov: rgba(255, 255, 255, 0.12);
  --border:      rgba(245, 197, 24, 0.25);
  --text:        #FFFFFF;
  --text-muted:  #BDBDBD;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --shadow-gold: 0 0 24px rgba(245, 197, 24, 0.35);
  --transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   RESET & BASE
   ============================================= */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Rubik", sans-serif;
  font-weight: normal;
  color: var(--text);
  background: #07090f;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

/* =============================================
   UTILITY
   ============================================= */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.body {
  max-width: 62.25rem;
  margin: 0 auto;
  width: 100%;
}

.container_flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

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

.btn-yellow,
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-yellow {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  color: #1A1100;
  box-shadow: 0 4px 18px rgba(245, 197, 24, 0.4);
}

.btn-yellow:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 28px rgba(245, 197, 24, 0.6);
  filter: brightness(1.08);
}

.btn-yellow img,
.btn-red img,
.btn-red svg {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  flex-shrink: 0;
}

.btn-red {
  background: linear-gradient(135deg, #f04040 0%, var(--red) 60%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(212, 35, 30, 0.4);
}

.btn-red:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 28px rgba(212, 35, 30, 0.6);
  filter: brightness(1.08);
}

.btn-sport {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0.5rem 1rem 0.65rem;
  border-radius: var(--radius-sm);
  background: #111;
  color: #fff;
  box-shadow: inset 0 -3px 0 var(--gold), 0 4px 18px rgba(0, 0, 0, 0.3);
  font-family: "Rubik", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.btn-sport:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: inset 0 -3px 0 var(--gold-light), 0 6px 24px rgba(245, 197, 24, 0.25);
  filter: brightness(1.08);
}

.btn-sport__icon {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
}

.btn-sport__badge {
  position: absolute;
  top: -0.55rem;
  right: -0.35rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1100;
  font-size: 0.625rem;
  line-height: 1;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 8, 22, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.15);
}

.header.is-scrolled {
  border-bottom-color: rgba(245, 197, 24, 0.28);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.42);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.header__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.header__logo {
  height: 2.75rem;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition);
}

.header__logo:hover {
  opacity: 0.85;
}

.header__btns {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

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

.hero {
  position: relative;
  min-height: calc(100svh - 4rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #05070c;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(3, 5, 10, 0.98) 0%, rgba(3, 5, 10, 0.88) 42%, rgba(3, 5, 10, 0.28) 78%, rgba(3, 5, 10, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 5, 10, 0.78) 0%, transparent 44%, rgba(3, 5, 10, 0.18) 100%),
    url("../img/hero-bg.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(245, 197, 24, 0.1), transparent 24%),
    radial-gradient(circle at 72% 58%, rgba(255, 216, 77, 0.08), transparent 20%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8rem;
  z-index: -1;
  background: linear-gradient(180deg, transparent, #080a10);
  pointer-events: none;
}

.hero__container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 2rem 3rem;
}

.hero__layout {
  display: flex;
  align-items: center;
  min-height: 0;
}

.hero__content {
  width: 100%;
  max-width: 68rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  margin-bottom: 1.25rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(245, 197, 24, 0.38);
  border-radius: 999px;
  background: rgba(245, 197, 24, 0.08);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.hero__title {
  max-width: 64rem;
  color: #fff;
  font-size: clamp(2.75rem, 4.2vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-wrap: balance;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.7);
}

.hero__title span {
  display: inline-block;
  margin-top: 0.16em;
  color: var(--gold);
}

.hero__subtitle {
  max-width: 58rem;
  margin: 1rem 0 1.15rem;
  color: #d7d4df;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 500;
  line-height: 1.6;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75);
}

.bonus-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  max-width: 68rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.bonus-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 6.25rem;
  padding: 0.85rem 1rem;
  overflow: hidden;
  border: 1px solid rgba(245, 197, 24, 0.22);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(20, 21, 28, 0.86), rgba(8, 9, 14, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 12px 36px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.bonus-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
}

.bonus-item__label {
  margin-bottom: 0.5rem;
  color: #9f9aa9;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.bonus-item strong {
  color: var(--gold-light);
  font-size: 1.07rem;
  font-weight: 800;
  line-height: 1.2;
}

.bonus-item > span:last-child {
  margin-top: 0.32rem;
  color: #d0ccd8;
  font-size: 0.78rem;
  line-height: 1.3;
}

.hero__register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 68rem;
  min-height: 3.75rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid rgba(255, 234, 140, 0.65);
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #ffe477 0%, var(--gold) 58%, #d49c05 100%);
  color: #151006;
  box-shadow: 0 10px 30px rgba(245, 197, 24, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.hero__register-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(245, 197, 24, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  filter: brightness(1.04);
}

.hero__legal {
  max-width: 68rem;
  margin-top: 0.75rem;
  color: #8e8a96;
  font-size: 0.68rem;
  line-height: 1.45;
  text-align: center;
}

.hero__register-btn:focus-visible,
.btn-yellow:focus-visible,
.btn-sport:focus-visible,
.faq__question:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* =============================================
   SECOND SECTION
   ============================================= */

.second__section {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #080a10 0%, #0b0d14 100%);
  padding: 4rem 1.25rem;
}

.second__section > div {
  max-width: 50rem;
  margin: 0 auto 2.5rem;
}

.second__section > div:last-child {
  margin-bottom: 0;
}

.second__section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.875rem;
  line-height: 1.3;
  position: relative;
  padding-bottom: 0.75rem;
}

.second__section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.second__section h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #E8D99A;
  margin: 1.5rem 0 0.625rem;
  line-height: 1.4;
}

.second__section p {
  font-size: 0.9375rem;
  font-weight: normal;
  color: var(--text-muted);
  line-height: 1.75;
}

/* =============================================
   FAQ SECTION
   ============================================= */

.faq {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #0b0d14 0%, #101218 100%);
  padding: 1rem 1.25rem;
  overflow: hidden;
}

.faq__container {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* header */
.faq__header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 0.875rem;
}

.faq__title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.faq__title span {
  color: var(--gold);
}

.faq__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

/* accordion list */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

/* single item */
.faq__item {
  border: 1px solid rgba(245,197,24,0.15);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}

.faq__item.open {
  border-color: rgba(245,197,24,0.4);
  background: rgba(255,255,255,0.07);
}

/* question button */
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.375rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--gold-light);
}

.faq__item.open .faq__question {
  color: var(--gold);
}

/* plus/minus icon */
.faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(245,197,24,0.4);
  position: relative;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity var(--transition), transform var(--transition);
}

/* horizontal bar */
.faq__icon::before {
  width: 10px; height: 1.5px;
}

/* vertical bar */
.faq__icon::after {
  width: 1.5px; height: 10px;
}

/* rotate vertical bar when open → shows minus */
.faq__item.open .faq__icon {
  background: rgba(245,197,24,0.15);
  border-color: var(--gold);
  transform: rotate(45deg);
}

/* answer panel */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer p {
  padding: 0 1.375rem 1.25rem;
  font-size: 0.9rem;
  color: #c0bdd8;
  line-height: 1.75;
  margin: 0;
}

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

.faq__answer p a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--transition);
}

.faq__answer p a:hover {
  opacity: 0.8;
}

/* responsive */
@media screen and (max-width: 768px) {
  .faq {
    padding: 3rem 1rem;
  }

  .faq__title {
    font-size: 1.5rem;
  }

  .faq__question {
    font-size: 0.875rem;
    padding: 1rem 1.1rem;
  }

  .faq__answer p {
    font-size: 0.85rem;
    padding: 0 1.1rem 1.1rem;
  }
}

@media screen and (max-width: 420px) {
  .faq__title {
    font-size: 1.25rem;
  }

  .faq__header {
    margin-bottom: 2rem;
  }
}

/* =============================================
   FOOTER
   ============================================= */

footer,
.footer-menu {
  background: #14151b;
}

.footer {
  border-top: 1px solid rgba(245,197,24,0.12);
}

.footer-providers {
  padding: 1.5rem 0;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-providers a {
  width: 5.625rem;
  height: 2.25rem;
  margin: 0.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.65;
  transition: opacity var(--transition), filter var(--transition);
}

.footer-providers a:hover {
  opacity: 1;
  filter: brightness(1.2);
}

.footer-providers a svg,
.footer-providers a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-providers a:hover svg,
.footer-providers a:hover img {
  filter: brightness(0) saturate(100%) invert(82%) sepia(60%) saturate(600%) hue-rotate(2deg) brightness(105%);
}

.footer-bottom {
  position: relative;
  padding: 0 1.25rem;
}

.footer-bottom-license {
  font-size: 0.75rem;
  line-height: 1.6;
  color: #7A7A8A;
  text-align: center;
  margin: 0 auto;
  max-width: 43.75rem;
}

.footer-bottom-license a {
  color: #9A9AB0;
  text-decoration: underline;
}

.footer-bottom-row {
  padding: 1.5rem 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
}

.footer-bottom-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(255,255,255,0.08);
  max-width: 45.25rem;
  width: 100%;
  margin: 0 auto;
}

.footer-bottom-col p {
  margin: 0;
  color: #9A9AB0;
  font-size: 0.75rem;
  line-height: 1rem;
}

.footer-bottom-col_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  gap: 0.5rem;
}

.footer-bottom-col_text {
  margin-bottom: 0.75rem;
}

.footer-menu {
  padding: 1.5rem 0;
}

.footer-menu.red {
  background: #440907;
}

.footer-menu__link {
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1rem;
  text-decoration: underline;
  margin: 0 0.3125rem;
  transition: color var(--transition);
}

.footer-menu__link:hover {
  color: var(--gold);
}

.footer-age {
  margin: 0 0.5rem;
}

.footer-age img {
  width: 2.25rem;
  height: 2.25rem;
}

.footer-license {
  text-align: center;
  margin: 0 0.5rem;
}

.joc-icon {
  width: 6.25rem;
  height: 2.5rem;
  display: block;
}

.joc-icon img {
  width: 100%;
  height: 100%;
}

.footer-license__icon {
  position: relative;
  width: 2.5rem;
  display: block;
  margin: 0 auto;
}

/* =============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================= */

@media screen and (max-width: 1024px) {
  .hero__layout {
    gap: 1.25rem;
  }

  .hero__girl {
    max-width: 220px;
  }

  .hero__girl img {
    max-height: 360px;
  }

  .hero__card {
    padding: 1.5rem;
  }

  .hero__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .second__section h2 {
    font-size: 1.25rem;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================= */

@media screen and (max-width: 768px) {
  body {
    background-attachment: scroll;
    background-position: 35% top;
    background-size: auto 14%;
  }

  /* Header */
  .header .container {
    height: 3.5rem;
  }

  .header__logo {
    height: 1.75rem;
  }

  .btn-yellow,
  .btn-red,
  .btn-sport {
    padding: 0.45rem 0.875rem;
    font-size: 0.8rem;
  }

  /* Hero — auto height (first screen bg + second screen cards) */
  .hero {
    height: auto;
    max-height: none;
    display: block;
    padding: 0;
  }

  .hero__layout {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .hero__girl {
    display: none;
  }

  .hero__container {
    padding: 0;
    width: 100%;
  }

  /* ── first screen: full bg + CTA ── */
  .hero__mobile-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 95svh;
    padding: 0 1.5rem 3rem;
  }

  .hero__mobile-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: auto;
    padding-top: 4rem;
  }

  .hero__mobile-logo {
    height: 2.75rem;
    width: auto;
    filter: drop-shadow(0 2px 16px rgba(0,0,0,0.7));
  }

  .hero__mobile-tagline {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    text-align: center;
    letter-spacing: 0.05em;
  }

  .hero__cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: #1a1100;
    font-family: "Rubik", sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    padding: 0.95rem 2.75rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 30px rgba(245,197,24,0.5), 0 0 0 4px rgba(245,197,24,0.12);
    animation: ctaPulse 2.2s ease-in-out infinite;
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .hero__cta-arrow {
    width: 20px;
    height: 20px;
    animation: arrowBounce 1.5s ease-in-out infinite;
  }

  @keyframes ctaPulse {
    0%, 100% { box-shadow: 0 6px 30px rgba(245,197,24,0.5),  0 0 0 4px rgba(245,197,24,0.12); }
    50%       { box-shadow: 0 8px 42px rgba(245,197,24,0.75), 0 0 0 8px rgba(245,197,24,0.2);  }
  }

  @keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(5px); }
  }

  /* ── second screen: cards panel ── */
  .hero__card {
    max-width: 100%;
    width: 100%;
    padding: 1.25rem 0 1rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    background: rgba(10, 8, 28, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    margin-left: 0;
    scroll-margin-top: 3.5rem;
  }

  .hero__subtitle {
    font-size: 0.82rem;
    margin-bottom: 0.75rem;
    padding: 0 1rem;
  }

  /* ── SWIPE SLIDER ── */
  .hero__grid {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 1rem 0.25rem;
    /* reset grid */
    grid-template-columns: unset;
  }

  .hero__grid::-webkit-scrollbar {
    display: none;
  }

  .game {
    flex: 0 0 40vw;
    max-width: 72vw;
    scroll-snap-align: center;
  }

  .game__text strong {
    font-size: 0.8rem;
  }

  .game__text span {
    font-size: 0.7rem;
  }

  /* bonus CTA button under carousel */
  .hero__bonus-cta {
    padding: 1rem 1rem 0.25rem;
    display: flex;
    justify-content: center;
  }

  .hero__bonus-btn {
    display: block;
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: #1a1100;
    font-family: "Rubik", sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.02em;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(245, 197, 24, 0.45);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  }

  .hero__bonus-btn:hover,
  .hero__bonus-btn:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(245, 197, 24, 0.65);
    filter: brightness(1.07);
  }

  /* dot indicators */
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 0 0;
  }

  .slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
  }

  .slider-dot.active {
    background: var(--gold);
    transform: scale(1.35);
    position: relative;
    overflow: hidden;
  }

  .slider-dot.active::after {
    content: "";
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    width: 0%;
    background: rgba(255,255,255,0.55);
    border-radius: inherit;
    animation: dotProgress 2.8s linear forwards;
  }

  @keyframes dotProgress {
    from { width: 0%; }
    to   { width: 100%; }
  }

  /* Second section */
  .second__section {
    padding: 2.5rem 1rem;
  }

  .second__section h2 {
    font-size: 1.125rem;
  }

  .second__section h3 {
    font-size: 1rem;
  }

  .second__section p {
    font-size: 0.875rem;
  }

  /* Footer */
  .footer-providers {
    padding: 1.25rem 0.75rem 1.75rem;
  }

  .footer-providers a {
    margin: 0.5rem;
    height: 1.875rem;
    width: 4.5rem;
  }

  .footer-bottom {
    padding: 0 0.75rem;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
  }

  .footer-bottom-row:first-child {
    padding: 1.5rem 0;
  }

  .footer-bottom-row::after {
    left: 1.5rem;
    right: 1.5rem;
    width: auto;
    max-width: none;
  }

  .footer-bottom-col p {
    text-align: center;
  }

  .footer-bottom-col_text {
    margin-bottom: 0.5rem;
  }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (max 420px)
   ============================================= */

@media screen and (max-width: 420px) {
  .header__btns {
    gap: 0.375rem;
  }

  .btn-yellow span,
  .btn-red span {
    display: none; /* icon-only on very small screens */
  }

  .btn-yellow,
  .btn-red {
    padding: 0.5rem 0.625rem;
  }

  .btn-sport {
    padding: 0.5rem 0.65rem 0.6rem;
  }

  .btn-sport__icon {
    width: 1.1rem;
    height: 1.1rem;
  }

  .hero__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .hero__card {
    padding: 1rem 0.75rem;
  }

  .second__section h2 {
    font-size: 1rem;
  }
}

/* =============================================
   RESPONSIVE — LARGE SCREENS (min 1280px)
   ============================================= */

@media screen and (min-width: 1280px) {
  .hero__girl img {
    max-height: min(560px, calc(100vh - 10rem));
  }

  .hero__card {
    max-width: 500px;
    padding: 1.5rem 2rem;
  }

  .hero__grid {
    gap: 0.875rem;
  }

  .hero__subtitle {
    font-size: 0.9375rem;
  }
}

/* =============================================
   CARD ENTRANCE ANIMATIONS
   ============================================= */

/* keyframes */
@keyframes cardFadeUp {
  0%   { opacity: 0; transform: translateY(40px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0)    scale(1);    }
}

@keyframes subtitleSlide {
  0%   { opacity: 0; transform: translateY(-16px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* hero subtitle */
.hero__subtitle {
  animation: subtitleSlide 0.6s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.15s;
}

/* game cards — hidden until JS fires */
.game {
  opacity: 0;
  transform: translateY(40px) scale(0.92);
}

/* JS adds this — transition to final state */
.game.card-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity  0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease;
}

/* scroll-reveal for other elements */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   LOADING SHIMMER (for slow connections)
   ============================================= */

.game__img img {
  background: linear-gradient(90deg, #1e1b30 25%, #2a263f 50%, #1e1b30 75%);
  background-size: 200% 100%;
}

/* =============================================
   UPDATED HERO — RESPONSIVE OVERRIDES
   ============================================= */

.hero__subtitle {
  margin: 1rem 0 1.15rem;
  padding: 0;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  text-align: left;
}

.hero__eyebrow,
.hero__title,
.bonus-list,
.hero__register-btn,
.hero__legal {
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__title { animation-delay: 0.06s; }
.hero__subtitle { animation-delay: 0.12s; }
.bonus-list { animation-delay: 0.18s; }
.hero__register-btn { animation-delay: 0.24s; }
.hero__legal { animation-delay: 0.28s; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 1024px) {
  .hero__bg {
    background-image:
      linear-gradient(90deg, rgba(3, 5, 10, 0.98) 0%, rgba(3, 5, 10, 0.9) 52%, rgba(3, 5, 10, 0.35) 100%),
      linear-gradient(0deg, rgba(3, 5, 10, 0.8) 0%, transparent 48%, rgba(3, 5, 10, 0.22) 100%),
      url("../img/hero-bg.jpg");
    background-position: 62% center;
  }

  .hero__container {
    padding: 2.5rem 1.5rem 3rem;
  }

  .hero__layout {
    min-height: 0;
  }
}

@media screen and (max-width: 768px) {
  .header .container {
    height: 3.75rem;
    padding: 0 1rem;
  }

  .header__logo {
    height: 2.25rem;
  }

  .header__btns .btn-yellow {
    display: none;
  }

  .btn-yellow,
  .btn-sport {
    min-height: 2.75rem;
    padding: 0.45rem 0.78rem;
  }

  .hero {
    display: flex;
    min-height: calc(100svh - 3.75rem);
  }

  .hero__bg {
    background-image:
      linear-gradient(90deg, rgba(3, 5, 10, 0.96) 0%, rgba(3, 5, 10, 0.9) 58%, rgba(3, 5, 10, 0.55) 100%),
      linear-gradient(0deg, rgba(3, 5, 10, 0.9) 0%, rgba(3, 5, 10, 0.12) 55%, rgba(3, 5, 10, 0.35) 100%),
      url("../img/hero-bg.jpg");
    background-position: 70% center;
  }

  .hero__container {
    width: 100%;
    padding: 3.25rem 1rem 3.5rem;
  }

  .hero__layout {
    display: block;
    min-height: 0;
    width: 100%;
  }

  .hero__content {
    max-width: none;
  }

  .hero__eyebrow {
    margin-bottom: 1rem;
    padding: 0.4rem 0.72rem;
    font-size: 0.62rem;
  }

  .hero__title {
    max-width: 37rem;
    font-size: clamp(2.35rem, 10vw, 4rem);
    letter-spacing: -0.05em;
    line-height: 0.98;
  }

  .hero__subtitle {
    max-width: 33rem;
    margin: 1rem 0 1.25rem;
    padding: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    text-align: left;
  }

  .bonus-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    max-width: none;
    margin-bottom: 1rem;
  }

  .bonus-item {
    min-height: 6.5rem;
    padding: 0.85rem 0.9rem;
    border-radius: 0.85rem;
  }

  .bonus-item__label {
    margin-bottom: 0.42rem;
    font-size: 0.56rem;
  }

  .bonus-item strong {
    font-size: 0.94rem;
  }

  .bonus-item > span:last-child {
    font-size: 0.7rem;
  }

  .hero__register-btn {
    max-width: none;
    min-height: 4rem;
    padding: 0.9rem 1.1rem;
    border-radius: 0.85rem;
    font-size: 1rem;
  }

  .hero__legal {
    max-width: none;
    margin-top: 0.65rem;
    font-size: 0.61rem;
  }
}

@media screen and (max-width: 480px) {
  .header .container {
    height: 3.5rem;
    padding: 0 0.75rem;
  }

  .header__logo {
    height: 1.8rem;
  }

  .header__btns {
    gap: 0.4rem;
  }

  .btn-yellow span {
    display: inline;
  }

  .btn-yellow {
    padding-inline: 0.7rem;
    font-size: 0.72rem;
  }

  .btn-sport {
    width: auto;
    padding: 0.5rem 0.85rem 0.65rem;
    justify-content: center;
  }

  .btn-sport > span {
    display: inline-flex;
  }

  .btn-sport__icon {
    width: 1.1rem;
    height: 1.1rem;
  }

  .hero__container {
    padding: 0.9rem 0.65rem 1.5rem;
  }

  .hero {
    min-height: calc(100svh - 3.5rem);
    align-items: flex-start;
  }

  .hero__bg {
    background-image:
      linear-gradient(180deg, rgba(3, 5, 10, 0.68) 0%, rgba(3, 5, 10, 0.22) 48%, rgba(3, 5, 10, 0.78) 100%),
      linear-gradient(90deg, rgba(3, 5, 10, 0.82) 0%, rgba(3, 5, 10, 0.36) 72%, rgba(3, 5, 10, 0.16) 100%),
      url("../img/hero-bg.jpg");
    background-position: 72% center;
  }

  .hero__content {
    padding: 1.15rem 1.05rem 1.2rem;
    border: 1px solid rgba(245, 197, 24, 0.2);
    border-radius: 1.15rem;
    background: linear-gradient(145deg, rgba(6, 8, 13, 0.82), rgba(10, 11, 17, 0.56));
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
  }

  .hero__eyebrow {
    min-height: 2rem;
    margin-bottom: 0.85rem;
    padding: 0.42rem 0.72rem;
    font-size: 0.6rem;
  }

  .hero__title {
    font-size: clamp(1.85rem, 8vw, 2.05rem);
    line-height: 1;
  }

  .hero__title span {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.84em;
    line-height: 1.05;
  }

  .hero__subtitle {
    margin: 0.8rem 0 1rem;
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .bonus-list {
    display: flex;
    gap: 0.75rem;
    margin: 0 -0.1rem 1rem;
    padding: 0 0.1rem 0.2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.1rem;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .bonus-list::-webkit-scrollbar {
    display: none;
  }

  .bonus-item {
    flex: 0 0 min(78vw, 18rem);
    min-height: 7.15rem;
    padding: 1rem;
    scroll-snap-align: start;
  }

  .bonus-item__label {
    margin-bottom: 0.55rem;
    font-size: 0.58rem;
  }

  .bonus-item strong {
    font-size: 0.98rem;
  }

  .bonus-item > span:last-child {
    margin-top: 0.38rem;
    font-size: 0.72rem;
  }

  .hero__register-btn {
    min-height: 3.75rem;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }

  .hero__legal {
    margin-top: 0.6rem;
    font-size: 0.58rem;
  }
}

@media screen and (min-width: 769px) and (max-height: 760px) {
  .hero__container {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .hero__eyebrow {
    margin-bottom: 0.75rem;
  }

  .hero__title {
    font-size: clamp(2.5rem, 4vw, 3.7rem);
  }

  .hero__subtitle {
    margin-top: 0.7rem;
    margin-bottom: 0.8rem;
  }

  .bonus-item {
    min-height: 5.35rem;
    padding-block: 0.7rem;
  }

  .hero__register-btn {
    min-height: 3.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
