:root {
    --red: #df2531;
    --brand: #df2531;
    --red-soft: rgba(223, 37, 49, 0.06);
    --card-border: rgba(255, 255, 255, 0.03);
    --card-bg-top: rgba(15, 8, 9, 0.6);
    --card-bg-bottom: rgba(10, 5, 6, 0.65);
    --glass: rgba(255, 255, 255, 0.02);
    --slotx-red: #df2531;
    --slotx-bg: radial-gradient(circle at 15% 15%, rgba(223, 37, 49, 0.20), transparent 20%),
    radial-gradient(circle at 85% 85%, rgba(223, 37, 49, 0.14), transparent 18%),
    linear-gradient(180deg, #000 0%, #0b0202 60%, #120506 100%);
    --slotx-card: rgba(22, 22, 22, 0.75);
    --slotx-card-hover: rgba(22, 22, 22, 0.90);
    --slotx-border: rgba(255, 255, 255, 0.10);
    --slotx-text: #ffffff;
    --slotx-muted: rgba(255, 255, 255, 0.72);
    --ring: var(--red);
}

html {
    background: #000;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #fff;
    background: var(--slotx-bg);
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    line-height: 1.6;
}

section:before {
    background: var(--slotx-bg);
}

html, body {
    background: var(--slotx-bg);
    overscroll-behavior: none;
}

main, header {
    position: relative;
    z-index: 10;
}

.holo-grid,
#sparksCanvas,
.card::before,
section,
.patternLayer {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.holo-grid {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 180px 180px, 180px 180px;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: overlay;
    animation: gridMovement 15s linear infinite;
}

@keyframes gridMovement {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 180px 180px;
    }
}

main, header, footer {
    position: relative;
    z-index: 10;
}

#sparksCanvas {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

header {
    background: rgba(0, 0, 0, 0.55);
    transition: background-color 0.3s ease;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 60;
    height: 64px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(10, 0, 0, .55);
    border-bottom: 1px solid rgba(255, 0, 0, .08);
}

.header .container {
    width: min(1280px, 96vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: .4px
}

.brand img {
    height: 28px;
    width: auto;
    display: block
}

.top-nav {
    margin-left: auto;
    display: flex;
    gap: 16px
}

.top-link {
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border)
}

/* Glow line */
.header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 90, 90, 0) 0%, #ff5555 15%, #ffd9d9 50%, #ff5555 85%, rgba(255, 90, 90, 0) 100%);
    box-shadow: 0 2px 10px rgba(255, 60, 60, .85), 0 6px 18px rgba(255, 60, 60, .45);
}

.header::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 18px;
    background: linear-gradient(180deg, rgba(255, 60, 60, .55) 0%, rgba(255, 60, 60, 0) 100%);
    filter: blur(8px);
}

main {
    padding-top: 4rem;
}

.site-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.hero__actions .btn {
    opacity: 0;
    transform: translateY(12px);
}

.hero__actions .btn:nth-child(1) {
    animation: fadeUp .8s ease-out forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: transform .2s, box-shadow .3s, background-color .2s, color .2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    min-width: 200px;
}

.btn--primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 0 0 rgba(223, 37, 49, .0);
}

.btn--primary:hover,
.btn--primary:focus {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 18px rgba(223, 37, 49, .6);
    outline: none;
}

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

.why-title {
    margin-top: 24px;
    margin-bottom: 18px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: var(--slotx-text);
}

.card {
    position: relative;
    overflow: visible;
    border-radius: 14px;
    padding: 24px;
    background: linear-gradient(180deg, rgb(60 22 25 / 60%), var(--card-bg-bottom));
    transition: transform .35s ease, box-shadow .35s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
    min-height: initial;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(223, 37, 49, 0.06), transparent 25%), radial-gradient(circle at 80% 80%, rgba(223, 37, 49, 0.04), transparent 18%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
    filter: blur(10px);
    border-radius: inherit;
    animation: innerMove 12s ease-in-out infinite;
    opacity: 0.95;
}

.card:hover {
    background: linear-gradient(180deg, rgb(52 15 19 / 83%), rgb(0 0 0 / 65%));
    transform: translateY(-6px);
}

@keyframes innerMove {
    0% {
        transform: translateX(0) translateY(0) scale(1);
    }
    50% {
        transform: translateX(-6%) translateY(4%) scale(1.03);
    }
    100% {
        transform: translateX(0) translateY(0) scale(1);
    }
}

.patternLayer {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.01), transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.006), transparent 18%);
    background-size: 240% 240%;
    animation: patternShift 15s linear infinite;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: overlay;
    opacity: 0.9;
    border-radius: inherit;
}

@keyframes patternShift {
    0% {
        background-position: 0% 0%, 100% 100%;
    }
    50% {
        background-position: 100% 0%, 0% 100%;
    }
    100% {
        background-position: 0% 0%, 100% 100%;
    }
}

@keyframes imageSlideInRight {
    0% {
        opacity: 0;
        transform: translateX(120%);
    }
    70% {
        opacity: 1;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-image-slide-in-right {
    animation: imageSlideInRight 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

.soft-pulse {
    box-shadow: 0 8px 24px rgba(223, 37, 49, 0.02), inset 0 0 10px rgba(223, 37, 49, 0.005);
}

.soft-pulse::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(223, 37, 49, 0.05), rgba(223, 37, 49, 0.02));
    filter: blur(6px);
    opacity: 0.28;
    z-index: 1;
    pointer-events: none;
    animation: pulseBorder 6s ease-in-out infinite;
    mix-blend-mode: screen;
}

@keyframes pulseBorder {
    0% {
        opacity: 0.25;
        transform: scale(1);
    }
    50% {
        opacity: 0.45;
        transform: scale(1.01);
    }
    100% {
        opacity: 0.25;
        transform: scale(1);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px) scale(.995);
    transition: all .5s cubic-bezier(.2, .9, .2, 1);
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.btn-muted {
    filter: brightness(.92);
}

@media (max-width: 900px) {
    .card {
        padding: 18px;
        border-radius: 12px;
    }

    .why-title {
        margin-top: 10px;
        font-size: 22px;
    }
}

footer {
    background: rgba(0, 0, 0, 0.6);
    padding: 24px 0;
    text-align: center;
    color: #cfcfcf;
}

.site-logo {
    height: 34px;
    width: auto;
    display: block;
    transition: height 0.18s ease;
}

@media (max-width: 768px) {
    .site-logo {
        height: 28px;
    }
}

#slotsCarouselWrapper {
    overflow: hidden;
}

#slotsCarousel {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

details.custom {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.008));
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 12px 16px;
    transition: box-shadow .2s ease;
    overflow: hidden;
}

details.custom summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 700;
    font-size: 1rem;
    padding: 6px 0;
}

details.custom[open] {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

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

details.custom .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .36s ease, opacity .28s ease, padding .28s ease;
    opacity: 0;
    padding-top: 0;
}

details.custom[open] .content {
    max-height: 600px;
    opacity: 1;
    padding-top: 10px;
}

.accordion-wrap {
    max-width: 880px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .site-wrap {
        padding: 0 16px;
    }

    #slotsCarousel .card {
        width: 44vw;
        min-width: 180px;
    }
}

@keyframes logoPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    60% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.logo-pop {
    opacity: 0;
    transform: scale(0.8);
}

.logo-pop.animated {
    animation: logoPop 0.8s ease forwards;
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 480px) {
    .logo-pop {
        width: 160px !important;
    }
}

@media (min-width: 481px) and (max-width: 1023px) {
    .logo-pop {
        width: 208px !important;
    }
}

@media (min-width: 1024px) {
    .logo-pop {
        width: 350px !important;
    }
}

.features {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.features-img {
    max-height: 561px;
    height: 61%;
}

.features-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.border-right {
    border-right: 2px solid #cfcfcf;
    padding-right: 2rem;
}

.slider {
    position: relative;
    overflow: hidden;
    display: flex;
}

.slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.6s ease;
}

.slider-web .slide {
    flex-direction: row;
}

.slider-web .slide-text {
    flex: 1;
    padding: 20px;
    color: #fff;
}

.slider-web .slide-image {
    flex: 1;
}

.slider-web .slide-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
    border-radius: 8px;
}

.slider-bot .slide {
    flex-direction: row;
}

.slider-bot .slide-image {
    flex: 1;
    max-height: 315px;
}

.slider-bot .slide-image img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: contain;
    border-radius: 8px;
    max-height: 320px;
}

.slider-bot .slide-text {
    flex: 1;
    padding: 20px;
    color: #fff;
}

#zeus-parallax {
    filter: blur(0px);
    transition: filter 0.5s ease-out;
}

#zeus-parallax.scrolled {
    filter: blur(1px);
}

.zeus-block {
    mask-image: radial-gradient(ellipse at center, black 0%, black 60%, transparent 85%);
}

.payment-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.payment-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.payment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.payment-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.payment-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-icons img {
    height: 50px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.payment-icons img:hover {
    transform: scale(1.1);
}

.game-content {
    color: #fff;
}

.container {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 0 20px;
}

.wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.slider.slot-slider {
    position: relative;
    overflow: hidden;
    width: 570px;
    border-radius: 16px;
    height: fit-content;
}

.slider-track {
    display: flex;
    gap: 20px;
    will-change: transform;
}

.slider-track img {
    min-width: 200px;
    height: 170px;
    border-radius: 12px;
}

.game-content-text-block {
    max-width: 516px;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.text-block p {
    margin-bottom: 0px;
    line-height: 1.5;
}

@media (min-width: 1536px) {
    .container {
        max-width: 1200px !important;
    }
}

.laptop-image {
    position: relative;
    height: 550px;
    max-width: fit-content;
}

.dashboard-image {
    top: 33px;
    z-index: 2;
    left: 105px;
    width: 185%;
    max-width: unset;
}

@media (max-width: 1023px) {
    .laptop-image {
        width: 166%;
        max-width: none;
    }

    .dashboard-image {
        top: 274px;
        z-index: 2;
        left: 30%;
        height: 40%;
    }
}

.zeus-img-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    background: #230709;
    filter: blur(0px);
    mask-image: linear-gradient(to bottom, transparent 0%, transparent 70%, black 100%);
}

.custom-bordered-text {
    border-right: 2px solid #cfcfcf;
    padding-right: 18px;
    margin-right: 20px;
}

.zeus-img-wrapper {
    position: relative;
    overflow: hidden;
}

.zeus-img-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
}

@keyframes swing {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(1.2deg);
    }
    30% {
        transform: rotate(-0.8deg);
    }
    50% {
        transform: rotate(0.6deg);
    }
    70% {
        transform: rotate(-0.4deg);
    }
    90% {
        transform: rotate(0.2deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.swing-animation {
    animation: swing 5s ease-in-out infinite;
    transform-origin: bottom center;
}

.web-coins {
    position: absolute;
    top: -24px;
    right: -144px;
    z-index: 1;
}
@media (max-width: 760px) {
    .slider-web .slide-image img {
        width: 80%;
    }

    .slider-web .slide-image img.web-coins {
        aspect-ratio: unset;
        width: 60%;
        left: 115px;
    }
}

.bot-coins {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.glow {
    position: absolute;
    top: 24px;
    left: 58%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background-color: rgba(255, 0, 0, 0.7);
    border-radius: 50%;
    filter: blur(102px);
    z-index: -1;
}

.lead {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    color: var(--slotx-muted);
    font-size: 16px;
    line-height: 1.6;
}

.tabs {
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 700px) {
    .tabs {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tab-btn {
    padding: 12px 20px;
    border-radius: 12px;
    background: linear-gradient(to bottom, #220000, #110000);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    box-shadow: inset 0 0 8px rgba(255, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn:hover,
.tab-btn:focus {
    border: 1px solid #5f1f1f;
    box-shadow: 4px 7px 10px rgb(147 28 28 / 60%), inset 0 0 6px rgb(255 30 30 / 30%);
    outline: none;
}

.tab-btn[aria-selected="true"] {
    border: 1px solid #5f1f1f;
    box-shadow: 4px 7px 10px rgb(147 28 28 / 60%), inset 0 0 6px rgb(255 30 30 / 30%);
}

.tab-btn:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.tab-ico {
    width: 18px;
    height: 18px;
    opacity: .85;
    display: inline-block;
}

.panel {
    margin-top: 14px;
    background: var(--slotx-card);
    border-radius: 18px;
    padding: 22px;
    background: linear-gradient(180deg, rgb(60 22 25 / 60%), var(--card-bg-bottom));
}

.panel-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
}

@media (min-width: 760px) {
    .panel-top {
        flex-direction: row;
        align-items: center;
    }
}

.eyebrow {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--slotx-muted);
}

.panel h3 {
    margin: 6px 0 0;
    font-size: 28px;
    font-weight: 800;
}

.panel .sub {
    margin: 8px 0 0;
    color: var(--slotx-muted);
    max-width: 62ch;
    font-size: 14px;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 0 12px rgba(223, 37, 49, .35);
    transition: transform .08s ease, opacity .18s ease, box-shadow .18s ease;
}

.cta:hover,
.cta:focus {
    opacity: .95;
    box-shadow: 0 0 16px rgba(223, 37, 49, .45);
    outline: none;
}

.cta:active {
    transform: scale(.98);
}

.cta-sub {
    margin-top: 6px;
    font-size: 12px;
    color: var(--slotx-muted);
}

.bullets {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    grid-template-columns: 1fr;
}

@media (min-width: 760px) {
    .bullets {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bullet {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    border: 1px solid var(--slotx-border);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}

.bullet svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.bullet span {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
}

.trust {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    border-radius: 14px;
    padding: 12px 14px;
    border: 1px solid var(--slotx-border);
    color: var(--slotx-muted);
    font-size: 12px;
}

@media (min-width: 700px) {
    .trust {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ico {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: -3px;
    fill: #fff;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.custom-card {
    background: #4a0f0f;
    border-radius: 12px;
    padding: 1rem;
}

@media (max-width: 1024px) {
    .laptop-img {
        display: none;
    }
    .persei-section > div > .flex-row {
        flex-direction: column;
    }
    .zeus-block.-right-40 {
        right: 0;
        display: none;
    }
}

@media (max-width: 960px) {
    .slider.slot-slider {
        width: 100%;
    }
    .game-content-text-block {
        max-width: 100%;
    }
    .game-content > div.flex-row {
        flex-direction: column-reverse;
    }
}

@media (max-width: 760px) {
    .slider-web .slide {
        flex-direction: column-reverse;
    }
    .slider-bot .slide {
        flex-direction: column;
    }
    .slider-web .slide li,
    .slider-bot .slide li {
        height: auto;
    }

    .game-content-text-block > div.flex-row {
        flex-direction: column;
    }
    .game-content-text-block > div.flex-row h4 {
        text-align: center;
    }
    .game-content-text-block > div.flex-row .custom-bordered-text {
        border-right: none !important;
        border-bottom: 2px solid #cfcfcf;
        padding-right: 0;
        margin-right: 0;
        padding-bottom: 1rem;
        margin-bottom: 0.8rem;
    }
}

/* Улучшения доступности */
.btn:focus,
.tab-btn:focus,
.cta:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Оптимизация для мобильных устройств */
@media (max-width: 768px) {
    .zeus-block {
        display: flex;
        justify-content: center;
        position: relative;
        right: 0 !important;
    }

    .zeus-img-wrapper img {
        max-height: 300px;
        width: auto;
    }

    .laptop-img {
        /*display: flex !important;*/
        /*justify-content: center;*/
        display: none;
    }

    .laptop-image {
        max-width: 100%;
        height: auto;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Упрощенные анимации для мобильных устройств */
@media (max-width: 1024px) {
    .soft-pulse::after,
    .card::before {
        animation: none;
    }

    .holo-grid {
        animation: none;
        opacity: 0.03;
    }

    /*.swing-animation {*/
        /*animation: none;*/
    /*}*/
}

/* Улучшения для высококонтрастного режима */
@media (prefers-contrast: high) {
    .card {
        border: 2px solid white;
    }

    .btn--primary {
        border: 2px solid white;
    }
}

/* Уменьшение motion для пользователей, которые предпочитают меньше анимаций */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .holo-grid {
        animation: none;
    }

    .card::before {
        animation: none;
    }

    .soft-pulse::after {
        animation: none;
    }

    .swing-animation {
        animation: none;
    }

    .logo-pop.animated {
        animation: none;
        opacity: 1;
        transform: scale(1);
    }

    .fade-up {
        transition: none;
        opacity: 1;
        transform: none;
    }
}