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

:root {
  --bg-card: rgba(19, 21, 30, 0.86);
  --primary: #ca1f1f;
  --primary-strong: #ca1f1f;
  --primary-dark: #8f1616;
  --gold: #e0b74f;
  --text: #f5f6f8;
  --muted: #b7bcc8;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --container: 1180px;
  --font-display: "Inter", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-main: var(--font-body);
  --promo-height: 0px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--primary) #07080c;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #07080c;
}

::-webkit-scrollbar-thumb {
  border: 2px solid #07080c;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary-dark), var(--primary), var(--primary-strong));
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-dark), #ff5d6c, var(--primary-strong));
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(225, 45, 53, 0.14), transparent 34%),
    linear-gradient(180deg, #07080c 0%, #11131a 48%, #07080c 100%);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.has-top-promo {
  --promo-height: 24px;
}

body.has-top-promo.promo-hidden {
  --promo-height: 0px;
}

body.has-overlay {
  overflow: hidden;
}

h1,
h2,
h3,
.btn,
.brand,
.nav-links a {
  font-family: var(--font-display);
  letter-spacing: 0;
}

body,
p,
span,
a,
button,
input,
textarea,
select,
summary,
label,
li,
strong {
  font-family: var(--font-body);
}

body.is-loading {
  overflow: hidden;
}

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

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

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

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1600;
  height: 3px;
  background: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.scroll-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(143, 22, 22, 0.88), rgba(202, 31, 31, 1), rgba(255, 82, 82, 0.94));
  box-shadow: 0 0 14px rgba(202, 31, 31, 0.28);
}

.narrow {
  max-width: 820px;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(225, 45, 53, 0.16), transparent 28%),
    linear-gradient(rgba(8, 9, 13, 0.78), rgba(8, 9, 13, 0.96)),
    url("../slikice/dxd-image.png") center/cover;
  transition: opacity 0.62s ease, visibility 0.62s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__frame {
  width: min(360px, calc(100% - 48px));
  padding: 24px 28px 30px;
  border: 0;
  border-radius: 18px;
  background: rgba(10, 11, 16, 0.22);
  box-shadow: none;
  text-align: center;
  animation: loaderFrameIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.loader__logo {
  width: min(100%, 240px);
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  filter:
    drop-shadow(0 0 22px rgba(225, 45, 53, 0.4))
    drop-shadow(0 24px 44px rgba(0, 0, 0, 0.44));
  animation: loaderLogoFloat 1.8s ease-in-out infinite;
}

.section-kicker {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-strong) !important;
  text-shadow: 0 0 18px rgba(225, 45, 53, 0.22);
}

.loader__bar {
  height: 6px;
  width: min(240px, 100%);
  margin: 24px auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.loader__bar span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-strong));
  animation: loadingBar 1.1s infinite ease-in-out;
}

.site-header {
  position: fixed;
  top: var(--promo-height);
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 13, 0.76);
  transition: top 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 9, 13, 0.94);
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: var(--text);
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  transform: rotate(0deg) translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: center;
}

.brand img.is-spinning,
.footer-brand img.is-spinning,
.explore-logo img.is-spinning {
  animation: site-logo-spin 980ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.brand img.is-reversing,
.footer-brand img.is-reversing,
.explore-logo img.is-reversing {
  animation: site-logo-spin-back 980ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.brand span {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  padding: 6px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 6px 10px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(225, 45, 53, 0), rgba(255, 57, 68, 0.96), rgba(225, 45, 53, 0));
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-links a span[data-icon] {
  display: inline-grid;
  place-items: center;
  color: currentColor;
}

.nav-links a svg {
  width: 21px;
  height: 21px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-strong);
  background: transparent;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a:active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero {
  isolation: isolate;
  padding-top: calc(82px + var(--promo-height));
  background: #05060a;
  transition: padding-top 0.25s ease;
}

.hero__video,
.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero::before,
.page-hero::before {
  content: "";
  background: url("../slikice/header-background.jpg") center/cover;
}

.hero::before {
  display: none;
}

.hero__video {
  z-index: -2;
  opacity: 1;
}

.hero .hero__shade {
  z-index: -1;
}

.hero__shade,
.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.72) 0%, rgba(5, 6, 10, 0.48) 52%, rgba(5, 6, 10, 0.22) 100%),
    linear-gradient(180deg, rgba(5, 6, 10, 0.16), #08090d 100%);
}

.hero__content {
  max-width: 1080px;
  padding: 94px 0 108px;
  animation: heroReveal 0.8s ease both;
}

.hero h1,
.page-hero h1 {
  max-width: 1040px;
  margin-top: 18px;
  font-size: clamp(2rem, 4.2vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 900;
}

.hero h1 {
  max-width: 990px;
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(2.1rem, 4.3vw, 3.8rem);
  text-transform: none;
}

.hero h1 span {
  display: inline-block;
  color: var(--primary-strong);
  text-shadow: 0 0 28px rgba(225, 45, 53, 0.26);
}

.hero__text,
.page-hero p:not(.section-kicker) {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-width: 150px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(225, 45, 53, 0);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

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

.btn--primary {
  color: white;
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  box-shadow: 0 18px 42px rgba(225, 45, 53, 0.24);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 22px 48px rgba(225, 45, 53, 0.34);
}

.btn--ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(17, 19, 26, 0.82);
}

.btn--ghost:hover {
  color: var(--text);
  border-color: rgba(225, 45, 53, 0.56);
  background: rgba(225, 45, 53, 0.15);
  box-shadow: 0 18px 36px rgba(225, 45, 53, 0.12);
}

.btn--copy {
  min-width: 164px;
  border-color: rgba(225, 45, 53, 0.4);
  color: #fff;
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  box-shadow: 0 18px 42px rgba(225, 45, 53, 0.24);
}

.btn--copy:hover {
  border-color: rgba(255, 57, 68, 0.54);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 22px 48px rgba(225, 45, 53, 0.34);
}

.btn--copy.is-copied {
  border-color: rgba(255, 93, 104, 0.6);
  background: linear-gradient(135deg, #ff4c58, #b01620);
  box-shadow: 0 22px 50px rgba(225, 45, 53, 0.3);
}

.section-copy__link {
  margin-top: 24px;
}

.copy-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: auto;
  z-index: 1800;
  width: min(420px, calc(100vw - 32px));
  max-width: 100%;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.copy-banner.is-hidden {
  display: none;
}

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

.copy-banner__card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(35, 37, 46, 0.74), rgba(24, 26, 34, 0.7)),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px) saturate(112%);
  -webkit-backdrop-filter: blur(12px) saturate(112%);
}

.copy-banner__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.copy-banner__copy {
  max-width: 320px;
}

.copy-banner__eyebrow {
  color: rgba(202, 31, 31, 0.8);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.copy-banner__text {
  margin-top: 8px;
  color: rgba(214, 218, 227, 0.95);
  font-size: 0.94rem;
  line-height: 1.6;
}

.copy-banner__text strong {
  color: #fff;
}

.copy-banner__actions {
  display: flex;
  justify-content: flex-start;
}

.copy-accept {
  position: relative;
  overflow: hidden;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(202, 31, 31, 0.25);
  border-radius: 10px;
  color: var(--primary);
  background: rgba(202, 31, 31, 0.08);
  box-shadow: 0 0 0 1px rgba(202, 31, 31, 0.06), 0 8px 20px rgba(202, 31, 31, 0.12);
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.copy-accept::before {
  content: "";
  position: absolute;
  inset: -20% auto -20% -35%;
  width: 38%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-140%) rotate(14deg);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.copy-accept:hover,
.copy-accept:focus-visible {
  transform: translateY(-1px) scale(1.015);
  border-color: rgba(202, 31, 31, 0.55);
  color: #fff;
  background: rgba(202, 31, 31, 0.14);
  box-shadow: 0 0 0 1px rgba(202, 31, 31, 0.14), 0 10px 24px rgba(202, 31, 31, 0.18);
}

.copy-accept:hover::before,
.copy-accept:focus-visible::before {
  transform: translateX(320%) rotate(14deg);
}

.copy-accept-check {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(202, 31, 31, 0.42));
  animation: cookieCheckPulse 1.75s ease-in-out infinite;
}

.copy-accept-check svg {
  width: 100%;
  height: 100%;
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1850;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.cookie-banner__inner {
  width: 100%;
  max-width: none;
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  padding: 20px 74px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: #1a1b1f;
  box-shadow: 0 -10px 26px rgba(0, 0, 0, 0.18);
}

.cookie-banner__copy {
  max-width: 940px;
}

.cookie-banner__copy h3 {
  margin-top: 0;
  font-size: 1.22rem;
  font-weight: 700;
}

.cookie-banner__copy p {
  margin-top: 10px;
  color: rgba(238, 241, 246, 0.9);
  font-size: 0.92rem;
  line-height: 1.45;
}

.cookie-banner__note {
  color: rgba(255, 219, 219, 0.86) !important;
}

.cookie-banner__actions {
  display: flex;
  flex: 0 0 314px;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.cookie-banner__button {
  position: relative;
  overflow: hidden;
  min-height: 36px;
  width: 100%;
  min-width: 0;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.cookie-banner__button::before {
  content: "";
  position: absolute;
  inset: -20% auto -20% -35%;
  width: 38%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-140%) rotate(14deg);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.cookie-banner__button:hover,
.cookie-banner__button:focus-visible {
  transform: translateY(-1px) scale(1.015);
}

.cookie-banner__button:hover::before,
.cookie-banner__button:focus-visible::before {
  transform: translateX(320%) rotate(14deg);
}

.cookie-banner__button--accept {
  border-color: rgba(202, 31, 31, 0.84);
  color: #fff;
  background: var(--primary);
  box-shadow: none;
}

.cookie-banner__button--accept:hover {
  border-color: #df3232;
  background: #df3232;
  box-shadow: none;
}

.cookie-banner__check {
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  animation: cookieCheckPulse 1.75s ease-in-out infinite;
}

.cookie-banner__check svg {
  width: 100%;
  height: 100%;
}

.cookie-banner__button--reject {
  border-color: rgba(255, 255, 255, 0.08);
  color: #f3f4f7;
  background: #0a0a0a;
}

.cookie-banner__button--reject:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: #0c0c0c;
}

.hero__actions .btn--ghost span[data-icon],
.explore-actions .btn span[data-icon] {
  display: inline-grid;
  place-items: center;
  color: var(--primary-strong);
}

.hero__actions .btn--ghost svg,
.explore-actions .btn svg {
  width: 20px;
  height: 20px;
}

.hero__actions .btn--copy .copy-ip__text {
  color: #fff;
}

.promo-topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  width: 100%;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.promo-topbar.is-hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.promo-topbar__inner {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
}

.promo-topbar__ticker {
  width: 100%;
  height: var(--promo-height);
  padding-right: 32px;
  border-width: 0 0 1px;
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(143, 22, 22, 0.98), rgba(202, 31, 31, 0.94), rgba(143, 22, 22, 0.98)),
    rgba(20, 10, 10, 0.94);
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    0 8px 18px rgba(0, 0, 0, 0.16);
}

.promo-topbar__close {
  position: absolute;
  top: 50%;
  right: 8px;
  z-index: 2;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.promo-topbar__close span {
  font-size: 0.78rem;
  line-height: 1;
}

.promo-topbar__close:hover,
.promo-topbar__close:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.news-ticker {
  position: relative;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(225, 45, 53, 0.32);
  border-radius: var(--radius);
  background: rgba(14, 16, 23, 0.9);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(225, 45, 53, 0.04),
    0 22px 50px rgba(0, 0, 0, 0.24);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.promo-ticker {
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(225, 45, 53, 0.12), rgba(17, 19, 26, 0.92)),
    rgba(14, 16, 23, 0.9);
}

.promo-topbar__ticker.promo-ticker {
  background:
    linear-gradient(90deg, rgba(143, 22, 22, 0.98), rgba(202, 31, 31, 0.94), rgba(143, 22, 22, 0.98)),
    rgba(20, 10, 10, 0.94);
}

.news-ticker.promo-topbar__ticker,
.news-ticker.promo-topbar__ticker:hover {
  height: var(--promo-height);
  border-radius: 0;
  transform: none;
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    0 6px 12px rgba(0, 0, 0, 0.12);
}

.news-ticker.promo-topbar__ticker::after {
  border-radius: 0;
}

.news-ticker::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -45%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(225, 45, 53, 0.22), transparent);
  opacity: 0;
  transform: skewX(-14deg);
}

.news-ticker:hover {
  border-color: rgba(225, 45, 53, 0.58);
  box-shadow:
    0 0 0 1px rgba(225, 45, 53, 0.08),
    0 26px 58px rgba(225, 45, 53, 0.12);
  transform: translateY(-2px);
}

.news-ticker:hover::after {
  opacity: 1;
  animation: lineSweep 1.15s ease forwards;
}

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

.news-ticker__track {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: max-content;
  gap: 34px;
  padding-left: 0;
  animation: tickerMove 42s linear infinite;
}

.news-ticker__track span {
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
}

.promo-ticker .news-ticker__track {
  gap: 70px;
  align-items: center;
}

.promo-ticker .news-ticker__track span {
  color: var(--text);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.promo-topbar__ticker .news-ticker__track {
  gap: 58px;
  animation-duration: 34s;
}

.promo-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.promo-ticker__item strong,
.promo-ticker__item b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 16px;
  padding: 0 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.84em;
  font-weight: 800;
}

.section {
  padding: 96px 0;
}

.section--dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(225, 45, 53, 0.04));
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.section-copy h2,
.community-panel h2 {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.45vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
}

.section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.section-kicker),
.section-copy p,
.community-panel p,
.staff-card p {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 400;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.media-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.feature-list span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 28px;
  gap: 10px;
}

.filter-button {
  min-width: 142px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 0 18px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-button.is-active,
.filter-button:hover {
  color: var(--text);
  border-color: rgba(225, 45, 53, 0.42);
  background: rgba(225, 45, 53, 0.16);
}

.interactive-card {
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.interactive-card:hover {
  border-color: rgba(225, 45, 53, 0.46);
  background:
    linear-gradient(180deg, rgba(225, 45, 53, 0.08), rgba(255, 255, 255, 0.025)),
    var(--bg-card);
  box-shadow:
    0 0 0 1px rgba(225, 45, 53, 0.08),
    0 18px 38px rgba(225, 45, 53, 0.11);
  transform: translateY(-4px);
}

.interactive-card:focus-visible {
  outline: 0;
  border-color: rgba(225, 45, 53, 0.52);
  box-shadow:
    0 0 0 1px rgba(225, 45, 53, 0.14),
    0 0 0 4px rgba(225, 45, 53, 0.12);
}

.world-grid article,
.staff-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.world-grid,
.staff-grid {
  display: grid;
  gap: 18px;
}

.world-grid {
  grid-template-columns: repeat(3, 1fr);
}

.staff-grid {
  grid-template-columns: repeat(3, 1fr);
}

.world-grid article,
.staff-card {
  padding: 22px;
  contain: layout paint;
}

.world-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.world-grid article:hover {
  border-color: rgba(225, 45, 53, 0.46);
  background:
    linear-gradient(180deg, rgba(225, 45, 53, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 0 0 1px rgba(225, 45, 53, 0.08),
    0 18px 38px rgba(225, 45, 53, 0.11);
  transform: translateY(-4px);
}

.world-grid span {
  color: var(--primary-strong);
  font-weight: 600;
}

.world-grid h3,
.staff-card h3 {
  margin-top: 10px;
  font-size: 1.35rem;
}

.staff-card__tag {
  width: fit-content;
  margin-top: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(224, 183, 79, 0.1);
  font-size: 0.78rem;
  font-weight: 600;
}

.staff-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
}

.staff-card__content {
  padding: 0 22px 22px;
}

.staff-card__team {
  color: var(--primary-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.staff-card__skin {
  height: 220px;
  display: grid;
  place-items: end center;
  margin: 0 0 18px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 35%, rgba(225, 45, 53, 0.24), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
}

.staff-card__skin img {
  max-height: 236px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.42));
  transition: transform 0.28s ease;
}

.staff-card:hover .staff-card__skin img {
  transform: translateY(-4px) scale(1.03);
}

.community-section {
  background:
    linear-gradient(90deg, rgba(8, 9, 13, 0.9), rgba(8, 9, 13, 0.64)),
    url("../slikice/dxd-image.png") center/cover;
}

.faq-section {
  padding-top: 116px;
  background: #0d0f15;
}

.faq-list {
  max-width: 980px;
  display: grid;
  gap: 14px;
  margin: 44px auto 0;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(225, 45, 53, 0.36);
  background: rgba(225, 45, 53, 0.055);
  transform: translateY(-1px);
}

.faq-item.is-open {
  border-color: rgba(225, 45, 53, 0.48);
  background:
    linear-gradient(180deg, rgba(225, 45, 53, 0.09), rgba(255, 255, 255, 0.035)),
    var(--bg-card);
}

.faq-question {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  color: var(--text);
  background: transparent;
  font-size: 1.08rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(225, 45, 53, 0.3);
  border-radius: var(--radius);
  background: rgba(225, 45, 53, 0.08);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 7px;
  width: 14px;
  height: 2px;
  border-radius: 99px;
  background: var(--primary-strong);
  transition: transform 0.2s ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: rotate(0deg);
}

.faq-item.is-open .faq-icon {
  background: rgba(225, 45, 53, 0.16);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
}

.faq-item.is-open .faq-answer p {
  margin: 0 20px;
  padding: 14px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.community-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 13, 19, 0.82);
  box-shadow: var(--shadow);
}

.page-hero {
  min-height: 520px;
  padding-top: 92px;
}

.page-hero--rules::before {
  background-image: url("../slikice/head-slika.png");
}

.page-hero--about::before {
  background-image: url("../slikice/SlikicaaSurvival.png");
}

.page-hero--staff::before {
  background-image: url("../slikice/head-slika.png");
}

.gamemode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gamemode-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  contain: layout paint;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.gamemode-grid article:hover {
  border-color: rgba(225, 45, 53, 0.5);
  background:
    linear-gradient(180deg, rgba(225, 45, 53, 0.1), rgba(255, 255, 255, 0.025)),
    var(--bg-card);
  box-shadow:
    0 0 0 1px rgba(225, 45, 53, 0.08),
    0 20px 42px rgba(225, 45, 53, 0.12);
  transform: translateY(-4px);
}

.gamemode-grid h3 {
  font-size: 1.25rem;
}

.gamemode-grid p {
  margin-top: 12px;
  color: var(--muted);
}

.explore-panel {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 70px;
  align-items: center;
  padding-block: 28px 44px;
}

.explore-logo {
  width: min(100%, 420px);
  min-height: 260px;
  display: grid;
  place-items: center;
  justify-self: center;
}

.explore-logo img {
  display: block;
  width: min(100%, 360px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(225, 45, 53, 0.24)) drop-shadow(0 20px 42px rgba(0, 0, 0, 0.42));
  transform: rotate(0deg) translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: center;
}

.explore-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.explore-actions .btn span[data-icon] {
  display: inline-grid;
  place-items: center;
}

.explore-actions svg {
  width: 20px;
  height: 20px;
}

.explore-panel .section-heading {
  max-width: 680px;
  margin-bottom: 0;
}

.explore-panel .section-heading h2 span {
  color: var(--primary-strong);
  text-shadow: 0 0 28px rgba(225, 45, 53, 0.26);
}

.page-hero--gallery::before {
  background-image: url("../slikice/header-background.jpg");
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-page-grid img {
  min-height: 280px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  object-fit: cover;
  contain: layout paint;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-page-grid img:hover {
  transform: translateY(-3px) scale(1.025);
  border-color: rgba(225, 45, 53, 0.42);
  box-shadow:
    0 0 0 1px rgba(225, 45, 53, 0.08),
    0 22px 44px rgba(0, 0, 0, 0.22);
}

.overlay-shell {
  position: fixed;
  inset: 0;
  z-index: 1900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.overlay-shell.is-hidden {
  display: none;
}

.overlay-shell.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 10, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.overlay-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 28px;
}

.profile-modal {
  position: relative;
  width: min(960px, 100%);
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(20, 22, 30, 0.92), rgba(13, 15, 21, 0.96)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.24s ease;
}

.overlay-shell.is-visible .profile-modal,
.overlay-shell.is-visible .lightbox {
  transform: translateY(0) scale(1);
}

.profile-modal__media {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 50% 28%, rgba(225, 45, 53, 0.22), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.profile-modal__media img {
  width: min(100%, 300px);
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.38));
}

.profile-modal__body {
  padding: 34px 34px 30px;
}

.profile-modal__body h3 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
}

.profile-modal__body > p:last-of-type {
  margin-top: 18px;
  color: var(--muted);
}

.profile-modal__info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.profile-modal__info div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.profile-modal__info span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.profile-modal__info strong {
  display: block;
  margin-top: 8px;
  font-size: 0.96rem;
  line-height: 1.6;
}

.lightbox {
  position: relative;
  width: min(1180px, 100%);
  min-height: min(80vh, 760px);
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 18px;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.24s ease;
}

.lightbox__frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(80vh, 760px);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(20, 22, 30, 0.92), rgba(13, 15, 21, 0.96)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.lightbox__frame img {
  width: 100%;
  max-width: 100%;
  max-height: calc(80vh - 90px);
  object-fit: contain;
  border-radius: 14px;
}

.lightbox__nav {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: var(--text);
  background: rgba(17, 19, 26, 0.84);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.lightbox__nav:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 45, 53, 0.44);
  background: rgba(225, 45, 53, 0.12);
}

.lightbox__nav svg {
  width: 24px;
  height: 24px;
}

.rules-accordion {
  display: grid;
  gap: 14px;
}

.rules-category {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.rules-category:hover {
  border-color: rgba(225, 45, 53, 0.36);
  background: rgba(225, 45, 53, 0.055);
  transform: translateY(-1px);
}

.rules-category[open] {
  border-color: rgba(225, 45, 53, 0.48);
  background:
    linear-gradient(180deg, rgba(225, 45, 53, 0.09), rgba(255, 255, 255, 0.035)),
    var(--bg-card);
}

.rules-category summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.rules-category summary::-webkit-details-marker {
  display: none;
}

.rules-category summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(225, 45, 53, 0.3);
  border-radius: var(--radius);
  color: var(--primary-strong);
  background: rgba(225, 45, 53, 0.08);
  transition: transform 0.25s ease, background 0.25s ease;
}

.rules-category[open] summary::after {
  content: "-";
  background: rgba(225, 45, 53, 0.16);
  transform: rotate(180deg);
}

.rules-category summary span {
  font-size: 1.08rem;
}

.rules-category summary strong {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  margin-left: auto;
}

.rules-category__body {
  display: grid;
  gap: 14px;
  padding: 0 20px 22px;
}

.rules-category__body p {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.rules-category__body b {
  color: var(--text);
}

.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
  background: #07080c;
}

.footer-inner {
  display: grid;
  gap: 46px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-brand-block {
  max-width: 440px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transform: rotate(0deg) translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: center;
}

.footer-brand-block p {
  margin-top: 10px;
  max-width: 390px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
}

.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.footer-socials a {
  width: auto;
  height: auto;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: transparent;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-socials svg {
  width: 23px;
  height: 23px;
}

.footer-socials a:hover {
  color: var(--primary-strong);
  transform: translateY(-2px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-column h3 {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-column a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--primary-strong);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom-row p {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
}

.footer-built {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.78rem;
  font-weight: 500;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-built:hover {
  color: var(--primary-strong);
  border-color: rgba(225, 45, 53, 0.45);
  transform: translateY(-2px);
}

@keyframes loadingBar {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(260%);
  }
}

@keyframes loaderFrameIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loaderLogoFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-6px) scale(1.025);
  }
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes lineSweep {
  from {
    left: -45%;
  }

  to {
    left: 110%;
  }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes site-logo-spin {
  from {
    transform: rotate(0deg) scale(1);
  }

  to {
    transform: rotate(360deg) scale(1.03);
  }
}

@keyframes site-logo-spin-back {
  from {
    transform: rotate(360deg) scale(1.03);
  }

  to {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes cookieCheckPulse {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .brand img,
  .footer-brand img,
  .explore-logo img,
  .scroll-progress__bar {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
