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

:root {
  --primary: #4b7cff;
  --primary-2: #2755e8;
  --secondary: #8b3dff;
  --secondary-2: #c14cff;
  --accent: #79e7ff;
  --accent-2: #b6f4ff;
  --success: #22c55e;
  --danger: #ff3f75;
  --dark: #050816;
  --dark-2: #080d22;
  --panel: #0c1230;
  --panel-2: #111a42;
  --panel-3: #151f4d;
  --text: #f5f7ff;
  --muted: #a8b2d8;
  --line: rgba(121, 231, 255, .2);
  --line-strong: rgba(121, 231, 255, .42);
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
  --glow: 0 0 42px rgba(75, 124, 255, .3);
  --container: 1200px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% -12%, rgba(139, 61, 255, .24), transparent 31%),
    radial-gradient(circle at 5% 18%, rgba(75, 124, 255, .16), transparent 26%),
    linear-gradient(180deg, #050816 0%, #070a1b 54%, #040610 100%);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: rgba(121, 231, 255, .28);
  color: #fff;
}

.container {
  width: min(calc(100% - 36px), var(--container));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 12px;
  left: 12px;
  z-index: 1000000;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 16px;
  border-radius: 8px;
  background: #fff;
  color: #111;
}

.button,
.header-cta,
.btn-register,
.mobile-register {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 23px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 14px 38px rgba(75, 124, 255, .28);
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.button::after,
.header-cta::after,
.btn-register::after,
.mobile-register::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -30%;
  width: 42%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
  transition: left .55s ease;
}

.button:hover::after,
.header-cta:hover::after,
.btn-register:hover::after,
.mobile-register:hover::after {
  left: 115%;
}

.button:hover,
.header-cta:hover,
.btn-register:hover,
.mobile-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(75, 124, 255, .4);
}

.button:focus-visible,
.header-cta:focus-visible,
.btn-login:focus-visible,
.btn-register:focus-visible,
.menu-toggle:focus-visible,
.mobile-close:focus-visible,
.category-arrow:focus-visible,
.hero-control:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.button-ghost,
.btn-login,
.mobile-login {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(10, 16, 39, .72);
  color: #e8edff;
  font-weight: 750;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.button-ghost:hover,
.btn-login:hover,
.mobile-login:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(75, 124, 255, .12);
}

.button-small {
  min-height: 40px;
  padding-inline: 18px;
  border-radius: 10px;
  font-size: 12px;
}

.text-link {
  color: var(--accent);
  font-weight: 800;
  transition: color .2s ease;
}

.text-link:hover {
  color: #fff;
}

/* Header */
.site-header {
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(5, 8, 22, .76);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: min-height .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.taurus-sticky-header .site-header {
  position: sticky;
  top: 0;
}

.taurus-transparent-header.home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(5, 8, 22, .92), transparent);
}

.site-header.is-scrolled,
.taurus-transparent-header.home .site-header.is-scrolled {
  position: sticky;
  top: 0;
  border-color: var(--line);
  background: rgba(5, 8, 22, .94);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .3);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 28px;
  transition: min-height .25s ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 68px;
}

.site-branding {
  flex: 0 0 auto;
  margin-right: auto;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  width: auto;
  max-width: 230px;
  max-height: 54px;
  object-fit: contain;
}

.text-logo,
.mobile-logo,
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  font-family: Orbitron, Inter, sans-serif;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.055em;
}

.text-logo {
  font-size: 27px;
}

.text-logo span,
.mobile-logo {
  color: #fff;
}

.text-logo b,
.mobile-logo span,
.footer-brand span {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(121, 231, 255, .5);
}

.primary-nav {
  display: flex;
  align-items: center;
}

.primary-menu,
.footer-menu,
.mobile-menu-list,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 3px;
}

.primary-menu > li {
  position: relative;
}

.primary-menu > li > a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0 12px;
  border-radius: 9px;
  color: #cdd5f5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}

.primary-menu > li > a:hover,
.primary-menu > .current-menu-item > a,
.primary-menu > .current_page_item > a {
  background: rgba(75, 124, 255, .1);
  color: #fff;
}

.primary-menu > li > a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 4px;
  height: 2px;
  transform: scaleX(0);
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: transform .22s ease;
}

.primary-menu > li > a:hover::after,
.primary-menu > .current-menu-item > a::after,
.primary-menu > .current_page_item > a::after {
  transform: scaleX(1);
}

.primary-menu .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(8, 13, 34, .98);
  box-shadow: var(--shadow);
  list-style: none;
  transition: .2s ease;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.primary-menu .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #cad3f4;
  font-size: 13px;
}

.primary-menu .sub-menu a:hover {
  background: rgba(75, 124, 255, .12);
  color: #fff;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-login,
.btn-register {
  min-height: 40px;
  padding-inline: 15px;
  font-size: 12px;
}

.header-cta {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(12, 18, 48, .82);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), #fff);
}

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 4000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility .3s ease, opacity .3s ease;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0, 2, 12, .72);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(430px, 92vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 8%, rgba(139, 61, 255, .24), transparent 25%),
    linear-gradient(180deg, #0a1028, #050816);
  box-shadow: -25px 0 70px rgba(0, 0, 0, .48);
  transition: transform .35s cubic-bezier(.22, .7, .25, 1);
}

.mobile-menu.is-open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-top {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}

.mobile-logo {
  font-size: 25px;
}

.mobile-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.mobile-navigation {
  flex: 1;
  overflow-y: auto;
  padding: 19px;
}

.mobile-menu-list a,
.mobile-navigation .primary-menu a {
  display: flex;
  min-height: 50px;
  align-items: center;
  padding: 0 15px;
  border-bottom: 1px solid rgba(121, 231, 255, .1);
  color: #dce3ff;
  font-weight: 750;
}

.mobile-navigation .primary-menu {
  display: block;
}

.mobile-navigation .primary-menu a::after {
  display: none;
}

.mobile-navigation .sub-menu {
  position: static;
  min-width: 0;
  visibility: visible;
  opacity: 1;
  transform: none;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.mobile-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 18px;
  border-top: 1px solid var(--line);
}

/* Hero */
.taurus-home {
  overflow: clip;
}

.taurus-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 82px 0 54px;
  overflow: hidden;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(121, 231, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(121, 231, 255, .12) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 82%);
  pointer-events: none;
}

.hero-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .46;
  pointer-events: none;
  animation: auroraFloat 9s ease-in-out infinite alternate;
}

.hero-aurora-one {
  top: -110px;
  right: 8%;
  width: 420px;
  height: 420px;
  background: rgba(139, 61, 255, .5);
}

.hero-aurora-two {
  left: -170px;
  bottom: 0;
  width: 380px;
  height: 380px;
  background: rgba(75, 124, 255, .34);
  animation-delay: -3s;
}

@keyframes auroraFloat {
  to { transform: translate3d(45px, 34px, 0) scale(1.12); }
}

.taurus-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, .96fr);
  align-items: center;
  gap: 64px;
}

.taurus-eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.taurus-eyebrow::before,
.section-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 0 16px rgba(121, 231, 255, .6);
}

.taurus-hero h1 {
  max-width: 780px;
  margin: 18px 0 20px;
  background: linear-gradient(100deg, #fff 6%, #b8f3ff 48%, #c6a9ff 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(43px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -.052em;
}

.taurus-hero-copy > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.taurus-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 29px 0;
}

.taurus-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.taurus-mini-stats span {
  min-width: 118px;
  padding: 12px 15px;
  border: 1px solid rgba(121, 231, 255, .13);
  border-radius: 13px;
  background: rgba(11, 17, 43, .58);
  color: var(--muted);
  font-size: 11px;
  backdrop-filter: blur(12px);
}

.taurus-mini-stats strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 20px;
  line-height: 1.2;
}

.taurus-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.taurus-hero-slider {
  position: relative;
  width: 100%;
}

.taurus-hero-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 31px;
  background: linear-gradient(145deg, rgba(17, 26, 66, .9), rgba(7, 10, 29, .96));
  box-shadow:
    0 40px 100px rgba(0, 0, 0, .44),
    0 0 60px rgba(75, 124, 255, .22);
}

.taurus-hero-slides::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 60px rgba(121, 231, 255, .08);
  pointer-events: none;
}

.taurus-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition: opacity .65s ease, visibility .65s ease, transform .9s ease;
}

.taurus-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.taurus-hero-slide picture,
.taurus-hero-slide img {
  width: 100%;
  height: 100%;
}

.taurus-hero-slide img {
  object-fit: cover;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 43px;
  height: 58px;
  transform: translateY(-50%);
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(5, 8, 22, .78);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background .2s ease, border-color .2s ease;
}

.hero-control:hover {
  border-color: var(--line-strong);
  background: rgba(75, 124, 255, .28);
}

.hero-control-prev { left: 12px; }
.hero-control-next { right: 12px; }

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 17px;
  z-index: 5;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.hero-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .38);
  cursor: pointer;
  transition: width .25s ease, border-radius .25s ease, background .25s ease;
}

.hero-slider-dots button.is-active {
  width: 28px;
  border-radius: 8px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(121, 231, 255, .55);
}

.taurus-orb {
  position: relative;
  width: min(455px, 94%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 27%, rgba(182, 244, 255, .95), rgba(121, 231, 255, .58) 10%, rgba(75, 124, 255, .44) 28%, rgba(139, 61, 255, .28) 52%, rgba(5, 8, 22, .95) 74%);
  box-shadow:
    0 0 95px rgba(75, 124, 255, .42),
    inset 0 0 70px rgba(255, 255, 255, .1);
}

.taurus-orb > span {
  font-family: Orbitron, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .28em;
}

.taurus-orb > strong {
  color: #fff;
  font-family: Orbitron, sans-serif;
  font-size: 108px;
  line-height: 1;
  text-shadow: 0 0 30px rgba(255, 255, 255, .5);
}

.taurus-orb > small {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.orb-ring {
  position: absolute;
  inset: -17px;
  border: 1px solid rgba(121, 231, 255, .3);
  border-radius: 50%;
  animation: orbitSpin 11s linear infinite;
}

.orb-ring::before {
  content: "";
  position: absolute;
  top: 13%;
  left: 5%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
}

.orb-ring-two {
  inset: 22px;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 16s;
}

@keyframes orbitSpin { to { transform: rotate(360deg); } }

/* Ticker */
.ticker {
  position: relative;
  z-index: 4;
  border-block: 1px solid var(--line);
  background: rgba(8, 13, 34, .92);
}

.ticker-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-label {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  padding: 8px 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.ticker-window {
  width: 100%;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  width: max-content;
  animation: tickerMove 30s linear infinite;
}

.ticker-content span {
  padding-left: 65px;
  white-space: nowrap;
  color: #cdd6f7;
  font-size: 12px;
  font-weight: 650;
}

.ticker:hover .ticker-content {
  animation-play-state: paused;
}

@keyframes tickerMove {
  to { transform: translateX(-50%); }
}

/* Category */
.category-slider-wrap {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 22, .66);
}

.category-shell {
  position: relative;
  padding-block: 17px;
}

.category-slider {
  display: flex;
  gap: 11px;
  overflow-x: auto;
  padding: 2px 39px 7px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.category-slider::-webkit-scrollbar,
.game-slider::-webkit-scrollbar {
  display: none;
}

.category-item {
  flex: 0 0 144px;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(17, 27, 66, .91), rgba(8, 12, 31, .96));
  color: #e8eeff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .18);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.category-item:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 42px rgba(75, 124, 255, .22);
}

.category-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(121, 231, 255, .24);
  border-radius: 15px;
  background: rgba(121, 231, 255, .06);
  font-size: 26px;
  box-shadow: inset 0 0 18px rgba(121, 231, 255, .04);
}

.category-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.category-arrow {
  position: absolute;
  top: 18px;
  bottom: 24px;
  z-index: 3;
  width: 34px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(8, 13, 34, .92);
  color: #fff;
  font-size: 27px;
  cursor: pointer;
  transition: background .2s ease;
}

.category-arrow:hover {
  background: rgba(75, 124, 255, .28);
}

.category-prev { left: 0; }
.category-next { right: 0; }

/* Common sections */
.section {
  position: relative;
  padding: 82px 0;
}

.section-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 31px;
}

.section-title-row > div {
  max-width: 780px;
}

.section-title-row > p {
  max-width: 390px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.section h1,
.section h2,
.section h3 {
  color: #fff;
}

.section h2 {
  margin: 9px 0 0;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(29px, 4vw, 46px);
  line-height: 1.16;
  letter-spacing: -.035em;
}

/* Jackpot */
.taurus-jackpot {
  padding-top: 55px;
  padding-bottom: 55px;
}

.taurus-jackpot-card {
  position: relative;
  display: flex;
  min-height: 210px;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 38px 43px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 40%, rgba(121, 231, 255, .17), transparent 24%),
    linear-gradient(135deg, rgba(75, 124, 255, .2), rgba(139, 61, 255, .17)),
    #0b112b;
  box-shadow: var(--shadow), inset 0 0 50px rgba(75, 124, 255, .09);
}

.taurus-jackpot-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(90deg, transparent 48%, rgba(121, 231, 255, .15) 50%, transparent 52%);
  background-size: 48px 100%;
  pointer-events: none;
}

.taurus-jackpot-card > div {
  position: relative;
  z-index: 2;
}

.taurus-jackpot-card strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-family: Orbitron, monospace;
  font-size: clamp(30px, 5.4vw, 62px);
  line-height: 1.15;
  letter-spacing: -.035em;
  text-shadow: 0 0 35px rgba(121, 231, 255, .24);
}

.taurus-jackpot-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.pulse-core {
  position: relative;
  flex: 0 0 138px;
  width: 138px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e1fbff, var(--accent) 12%, var(--primary) 43%, var(--secondary) 72%);
  box-shadow:
    0 0 65px rgba(121, 231, 255, .5),
    inset 0 0 35px rgba(255, 255, 255, .3);
  animation: pulseGlow 2.2s ease-in-out infinite;
}

.pulse-core::before,
.pulse-core::after {
  content: "";
  position: absolute;
  inset: -13px;
  border: 1px solid rgba(121, 231, 255, .4);
  border-radius: inherit;
  animation: pulseRing 2.2s ease-out infinite;
}

.pulse-core::after {
  animation-delay: 1.1s;
}

.pulse-core span {
  font-family: Orbitron, sans-serif;
  font-size: 43px;
  font-weight: 900;
  text-shadow: 0 0 16px rgba(255, 255, 255, .7);
}

@keyframes pulseGlow {
  50% { transform: scale(1.035); box-shadow: 0 0 90px rgba(121, 231, 255, .6), inset 0 0 35px rgba(255, 255, 255, .34); }
}

@keyframes pulseRing {
  to { inset: -38px; opacity: 0; }
}

/* Provider */
.taurus-provider-section {
  border-block: 1px solid rgba(121, 231, 255, .1);
  background:
    radial-gradient(circle at 10% 35%, rgba(75, 124, 255, .1), transparent 25%),
    rgba(7, 10, 27, .72);
}

.taurus-provider-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.provider-item {
  position: relative;
  min-height: 112px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(17, 27, 66, .94), rgba(8, 12, 31, .98));
  box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.provider-item::before {
  content: "";
  position: absolute;
  inset: -120% 35%;
  transform: rotate(20deg);
  background: linear-gradient(90deg, transparent, rgba(121, 231, 255, .13), transparent);
  transition: transform .6s ease;
}

.provider-item:hover::before {
  transform: translateX(240%) rotate(20deg);
}

.provider-item:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 55px rgba(75, 124, 255, .22);
}

.provider-item img {
  position: relative;
  z-index: 2;
  max-width: 170px;
  max-height: 62px;
  object-fit: contain;
  filter: saturate(.88);
  transition: filter .25s ease, transform .25s ease;
}

.provider-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.12);
}

.provider-item span {
  position: relative;
  z-index: 2;
  color: #e9edff;
  font-family: Orbitron, sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

/* Promotions */
.taurus-promo-section {
  background:
    radial-gradient(circle at 86% 20%, rgba(139, 61, 255, .14), transparent 25%),
    linear-gradient(180deg, rgba(8, 12, 31, .4), rgba(8, 12, 31, .75));
}

.taurus-promo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.promotion-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 27px;
  background: linear-gradient(160deg, rgba(17, 27, 66, .95), rgba(8, 12, 31, .98));
  box-shadow: var(--shadow);
  transition: transform .3s ease, border-color .3s ease;
}

.promotion-card:hover {
  transform: translateY(-7px);
  border-color: var(--line-strong);
}

.promotion-media {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.promotion-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .55s ease;
}

.promotion-card:hover .promotion-media img {
  transform: scale(1.045);
}

.promotion-placeholder {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  align-content: center;
  background:
    radial-gradient(circle at 75% 18%, rgba(121, 231, 255, .28), transparent 24%),
    linear-gradient(135deg, rgba(75, 124, 255, .55), rgba(139, 61, 255, .38)),
    #0a1028;
}

.promotion-placeholder b {
  font-family: Orbitron, sans-serif;
  font-size: clamp(28px, 5vw, 53px);
  letter-spacing: -.06em;
}

.promotion-placeholder small {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .14em;
}

.promotion-copy {
  padding: 24px;
}

.promotion-copy h3 {
  margin: 0;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 22px;
}

.promotion-copy p {
  min-height: 52px;
  margin: 10px 0 19px;
  color: var(--muted);
  font-size: 13px;
}

/* Games */
.taurus-games {
  background:
    radial-gradient(circle at 10% 70%, rgba(75, 124, 255, .11), transparent 30%),
    rgba(5, 8, 22, .55);
}

.game-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 7px 2px 17px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.game-card {
  position: relative;
  flex: 0 0 190px;
  padding: 11px 11px 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: linear-gradient(160deg, rgba(17, 27, 66, .96), rgba(8, 12, 31, .98));
  box-shadow: 0 18px 43px rgba(0, 0, 0, .23);
  text-align: center;
  scroll-snap-align: start;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: 0 27px 58px rgba(75, 124, 255, .25);
}

.game-image {
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(121, 231, 255, .36);
  border-radius: 21px;
  background: #090e25;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.game-card:hover .game-image img {
  transform: scale(1.06);
}

.game-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 32% 28%, rgba(121, 231, 255, .7), rgba(75, 124, 255, .45) 20%, rgba(139, 61, 255, .38) 45%, #090e25 75%);
  font-family: Orbitron, sans-serif;
  font-size: 45px;
  font-weight: 900;
}

.game-card > strong {
  display: block;
  margin-top: 12px;
  overflow: hidden;
  color: #eef2ff;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-badge {
  position: absolute;
  top: 17px;
  left: 17px;
  z-index: 3;
  padding: 5px 8px;
  border-radius: 7px;
  background: linear-gradient(135deg, #ff3f75, #d716d8);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 63, 117, .28);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .07em;
}

/* Why */
.taurus-why {
  background:
    linear-gradient(180deg, rgba(8, 12, 31, .72), rgba(8, 12, 31, .2));
}

.taurus-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.taurus-feature-grid article {
  position: relative;
  min-height: 240px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(16, 26, 66, .96), rgba(9, 13, 36, .98));
  box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
  transition: transform .28s ease, border-color .28s ease;
}

.taurus-feature-grid article::after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -65px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(75, 124, 255, .12);
  filter: blur(4px);
  transition: transform .35s ease;
}

.taurus-feature-grid article:hover {
  transform: translateY(-7px);
  border-color: var(--line-strong);
}

.taurus-feature-grid article:hover::after {
  transform: scale(1.5);
}

.taurus-feature-grid b {
  color: var(--accent);
  font-family: Orbitron, sans-serif;
  font-size: 32px;
  font-weight: 900;
}

.taurus-feature-grid h3 {
  position: relative;
  z-index: 2;
  margin: 31px 0 8px;
  font-size: 18px;
}

.taurus-feature-grid p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Posts */
.taurus-posts {
  border-block: 1px solid rgba(121, 231, 255, .1);
  background: rgba(7, 10, 27, .66);
}

.post-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 19px;
}

.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(17, 27, 66, .95), rgba(8, 12, 31, .98));
  box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
  transition: transform .28s ease, border-color .28s ease;
}

.post-card:hover {
  transform: translateY(-7px);
  border-color: var(--line-strong);
}

.post-card-image {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 20%, rgba(121, 231, 255, .2), transparent 26%),
    linear-gradient(135deg, rgba(75, 124, 255, .35), rgba(139, 61, 255, .28)),
    #0a1028;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.05);
}

.post-card-image > span {
  font-family: Orbitron, sans-serif;
  font-size: 30px;
  font-weight: 900;
}

.post-card-copy {
  padding: 21px;
}

.post-card-copy small {
  color: var(--accent);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.post-card-copy h2,
.post-card-copy h3 {
  margin: 8px 0;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 18px;
  line-height: 1.35;
}

.post-card-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

/* Article */
.article-section {
  background:
    radial-gradient(circle at 90% 18%, rgba(139, 61, 255, .14), transparent 27%),
    #070a1b;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 38px;
}

.home-article,
.champion-panel {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(17, 27, 66, .94), rgba(8, 12, 31, .98));
  box-shadow: var(--shadow);
}

.home-article {
  padding: clamp(25px, 4vw, 43px);
}

.article-content {
  color: #c7cfee;
}

.article-content > *:first-child {
  margin-top: 15px;
}

.article-content h1,
.article-content h2,
.article-content h3 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-family: Orbitron, Inter, sans-serif;
  line-height: 1.25;
}

.article-content h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.article-content p,
.article-content li {
  color: #c1cae9;
}

.article-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content img {
  border-radius: 16px;
}

.article-side {
  position: sticky;
  top: 100px;
  align-self: start;
}

.champion-panel {
  position: relative;
  padding: 29px;
  overflow: hidden;
  text-align: center;
}

.champion-panel::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(121, 231, 255, .11);
}

.champion-panel > span {
  position: relative;
  display: block;
  font-size: 63px;
  filter: drop-shadow(0 0 20px rgba(121, 231, 255, .42));
}

.champion-panel h3 {
  position: relative;
  margin: 7px 0;
  font-family: Orbitron, sans-serif;
  font-size: 20px;
}

.champion-panel p {
  position: relative;
  color: var(--muted);
  font-size: 13px;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 55px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 105px;
}

.faq-intro h2 {
  margin-top: 10px;
}

.faq-intro p {
  color: var(--muted);
}

.faq-item {
  margin-bottom: 11px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(155deg, rgba(17, 27, 66, .9), rgba(8, 12, 31, .97));
  transition: border-color .2s ease, background .2s ease;
}

.faq-item[open] {
  border-color: var(--line-strong);
  background: linear-gradient(155deg, rgba(21, 34, 82, .96), rgba(9, 13, 36, .99));
}

.faq-item summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 20px;
  color: #eef2ff;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary span {
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--accent);
  font-size: 21px;
  transition: transform .25s ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item > div {
  padding: 0 20px 17px;
  color: var(--muted);
  font-size: 13px;
}

.faq-item > div p {
  margin: 0;
}

/* CTA */
.taurus-cta {
  padding-top: 25px;
  padding-bottom: 84px;
}

.cta-card {
  position: relative;
  min-height: 225px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  padding: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 31px;
  background:
    radial-gradient(circle at 88% 15%, rgba(121, 231, 255, .25), transparent 25%),
    linear-gradient(135deg, rgba(75, 124, 255, .34), rgba(139, 61, 255, .28)),
    #0a1028;
  box-shadow: var(--shadow), var(--glow);
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(121, 231, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(121, 231, 255, .12) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent);
}

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

.cta-card h2 {
  margin: 9px 0;
}

.cta-card p {
  max-width: 700px;
  margin: 0;
  color: #cad3f1;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 70px 0 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 20%, rgba(75, 124, 255, .12), transparent 25%),
    radial-gradient(circle at 90% 5%, rgba(139, 61, 255, .12), transparent 25%),
    #03050d;
}

.footer-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.footer-glow-left {
  left: -150px;
  bottom: -120px;
  background: rgba(75, 124, 255, .2);
}

.footer-glow-right {
  top: -170px;
  right: -130px;
  background: rgba(139, 61, 255, .17);
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.45fr .85fr .9fr .85fr;
  gap: 38px;
}

.footer-logo {
  max-width: 210px;
  max-height: 68px;
  object-fit: contain;
}

.footer-brand {
  font-size: 29px;
}

.footer-description {
  max-width: 430px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-disclaimer {
  margin-top: 15px;
  padding: 12px 14px;
  border-left: 2px solid var(--accent);
  background: rgba(121, 231, 255, .05);
  color: #909bc3;
  font-size: 11px;
}

.footer-disclaimer p {
  margin: 0;
}

.footer-title {
  margin: 0 0 18px;
  color: #fff;
  font-family: Orbitron, sans-serif;
  font-size: 14px;
  letter-spacing: .04em;
}

.footer-menu a,
.footer-links a,
.footer-contact a {
  display: inline-flex;
  padding: 4px 0;
  color: #aeb8da;
  font-size: 13px;
  transition: color .2s ease, transform .2s ease;
}

.footer-menu a:hover,
.footer-links a:hover,
.footer-contact a:hover {
  transform: translateX(3px);
  color: var(--accent);
}

.footer-menu li + li,
.footer-contact li + li {
  margin-top: 5px;
}

.footer-links {
  display: grid;
  gap: 5px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.footer-social a {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, .03);
  color: #dce3ff;
  font-size: 10px;
  font-weight: 850;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: rgba(75, 124, 255, .17);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 49px;
  border-top: 1px solid rgba(121, 231, 255, .11);
}

.footer-bottom-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #7e89af;
  font-size: 11px;
}

.footer-bottom-inner p {
  margin: 0;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-bottom-right i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
}

/* Floating buttons */
.taurus-floating {
  position: fixed;
  bottom: 24px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.taurus-floating-left { left: 18px; }
.taurus-floating-right { right: 18px; }

.taurus-float {
  position: relative;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .27);
  border-radius: 50%;
  background: var(--float-color, #4b7cff);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .38), 0 0 28px color-mix(in srgb, var(--float-color) 35%, transparent);
  transition: transform .25s ease;
}

.taurus-float:hover {
  transform: translateY(-4px) scale(1.04);
}

.taurus-float img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.taurus-float > span {
  font-size: 23px;
}

.taurus-float em {
  position: absolute;
  top: 50%;
  right: 64px;
  padding: 7px 10px;
  transform: translateY(-50%) translateX(6px);
  opacity: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080d22;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.taurus-floating-left .taurus-float em {
  right: auto;
  left: 64px;
  transform: translateY(-50%) translateX(-6px);
}

.taurus-float:hover em {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.taurus-device-mobile {
  display: none;
}

/* Loader */
.taurus77-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(75, 124, 255, .28), transparent 28%),
    radial-gradient(circle at 60% 55%, rgba(139, 61, 255, .2), transparent 25%),
    #03050f;
  transition: opacity .55s ease, visibility .55s ease;
}

.taurus77-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.taurus77-loader-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: loaderGlow 4s ease-in-out infinite alternate;
}

.taurus77-loader-glow-one {
  top: 8%;
  left: 18%;
  width: 300px;
  height: 300px;
  background: rgba(75, 124, 255, .23);
}

.taurus77-loader-glow-two {
  right: 15%;
  bottom: 7%;
  width: 260px;
  height: 260px;
  background: rgba(139, 61, 255, .22);
  animation-delay: -2s;
}

@keyframes loaderGlow {
  to { transform: translate3d(35px, 25px, 0) scale(1.18); }
}

.taurus77-loader-stage {
  position: relative;
  width: min(430px, calc(100% - 34px));
  padding: 45px 30px 34px;
  text-align: center;
}

.taurus77-loader-orbit {
  position: absolute;
  top: 2px;
  left: 50%;
  width: 250px;
  height: 250px;
  transform: translateX(-50%);
  border: 1px solid rgba(121, 231, 255, .25);
  border-radius: 50%;
  animation: orbitSpin 8s linear infinite;
}

.taurus77-loader-orbit::before,
.taurus77-loader-orbit::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(121, 231, 255, .2);
  border-radius: 50%;
}

.taurus77-loader-orbit::before { inset: 18px; }
.taurus77-loader-orbit::after { inset: 45px; }

.taurus77-loader-orbit span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}

.taurus77-loader-orbit span:nth-child(1) { top: 8%; left: 25%; }
.taurus77-loader-orbit span:nth-child(2) { top: 56%; right: -4px; background: var(--secondary-2); }
.taurus77-loader-orbit span:nth-child(3) { bottom: 5%; left: 22%; background: var(--primary); }

.taurus77-loader-logo,
.taurus77-loader-wordmark {
  position: relative;
  z-index: 2;
  margin: 47px auto 34px;
}

.taurus77-loader-logo {
  max-width: 225px;
  max-height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(121, 231, 255, .3));
}

.taurus77-loader-wordmark {
  font-family: Orbitron, sans-serif;
  font-size: clamp(35px, 9vw, 52px);
  font-weight: 900;
  letter-spacing: -.055em;
}

.taurus77-loader-wordmark span {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(121, 231, 255, .54);
}

.taurus77-loader-stage > strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 17px;
  color: #dfe6ff;
  font-size: 11px;
  letter-spacing: .16em;
}

.taurus77-loader-track {
  position: relative;
  z-index: 2;
  height: 5px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
}

.taurus77-loader-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
  box-shadow: 0 0 18px rgba(121, 231, 255, .6);
  transition: width .16s ease;
}

.taurus77-loader-meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 10px;
  color: #8f9abd;
  font-size: 10px;
}

.taurus77-loader-meta p {
  margin: 0;
}

.taurus77-loader-meta b {
  color: var(--accent);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2, .7, .2, 1);
}

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

/* Generic pagination */
.navigation.pagination {
  margin-top: 35px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.page-numbers {
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: #dce3ff;
}

.page-numbers.current,
.page-numbers:hover {
  border-color: var(--line-strong);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

/* Responsive */
@media (max-width: 1120px) {
  .primary-menu > li > a {
    padding-inline: 8px;
  }

  .header-right .btn-login,
  .header-right .btn-register {
    display: none;
  }

  .taurus-provider-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-grid {
    grid-template-columns: 1.35fr .8fr .9fr;
  }

  .footer-grid > :last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

  .primary-nav,
  .header-right {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .taurus-hero {
    min-height: 0;
    padding-top: 62px;
  }

  .taurus-hero-grid {
    grid-template-columns: 1fr;
    gap: 43px;
  }

  .taurus-hero-copy {
    text-align: center;
  }

  .taurus-eyebrow {
    justify-content: center;
  }

  .taurus-hero h1,
  .taurus-hero-copy > p {
    margin-inline: auto;
  }

  .taurus-hero-actions,
  .taurus-mini-stats {
    justify-content: center;
  }

  .taurus-visual {
    width: min(650px, 100%);
    min-height: 0;
    margin-inline: auto;
  }

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

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

  .article-side,
  .faq-intro {
    position: static;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

  .footer-grid > :last-child {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .section {
    padding: 62px 0;
  }

  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 23px;
  }

  .section-title-row > p {
    max-width: none;
    text-align: left;
  }

  .custom-logo {
    max-width: 185px;
    max-height: 43px;
  }

  .text-logo {
    font-size: 23px;
  }

  .taurus-hero {
    padding: 45px 0 38px;
  }

  .taurus-hero h1 {
    font-size: clamp(39px, 12vw, 53px);
  }

  .taurus-hero-copy > p {
    font-size: 15px;
  }

  .taurus-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .taurus-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
  }

  .taurus-mini-stats span {
    min-width: 0;
    padding: 10px 7px;
  }

  .taurus-mini-stats strong {
    font-size: 17px;
  }

  .ticker-label {
    padding-inline: 10px;
    font-size: 9px;
  }

  .ticker-content span {
    padding-left: 42px;
  }

  .category-item {
    flex-basis: 115px;
    min-height: 98px;
  }

  .category-icon {
    width: 44px;
    height: 44px;
    font-size: 23px;
  }

  .taurus-jackpot {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .taurus-jackpot-card {
    display: block;
    padding: 26px 21px;
    text-align: center;
  }

  .taurus-jackpot-card .taurus-eyebrow {
    justify-content: center;
  }

  .pulse-core {
    width: 115px;
    margin: 28px auto 4px;
  }

  .taurus-provider-grid,
  .taurus-promo-grid,
  .taurus-feature-grid,
  .post-card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .provider-item {
    min-height: 96px;
  }

  .game-card {
    flex-basis: 165px;
  }

  .taurus-feature-grid article {
    min-height: 0;
  }

  .taurus-feature-grid h3 {
    margin-top: 18px;
  }

  .cta-card {
    display: block;
    padding: 29px 22px;
    text-align: center;
  }

  .cta-card .section-kicker {
    justify-content: center;
  }

  .cta-card .button {
    width: 100%;
    margin-top: 22px;
  }

  .footer-bottom-inner,
  .footer-bottom-right {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom-inner {
    justify-content: center;
    padding: 18px 0;
  }

  .footer-bottom-right {
    gap: 5px;
  }

  .footer-bottom-right i {
    display: none;
  }

  .taurus-device-desktop {
    display: none;
  }

  .taurus-device-mobile {
    display: grid;
  }

  .taurus-floating {
    bottom: 75px;
  }

  .taurus-float {
    width: 49px;
    height: 49px;
  }

  .taurus-float em {
    display: none;
  }
}

@media (max-width: 430px) {
  .taurus-mini-stats span {
    font-size: 9px;
  }

  .taurus-jackpot-card strong {
    font-size: 27px;
    overflow-wrap: anywhere;
  }

  .mobile-menu-panel {
    width: 100%;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
