﻿:root {

  --clr-bg: #121212;
  --clr-bg-alt: #161616;
  --clr-surface: #1e1e1e;
  --clr-border: #2a2a2a;

  --clr-text: #d4d0c8;
  --clr-text-muted: #8a8578;
  --clr-text-heading: #e8e4d8;

  --clr-accent: #b5a642;

  --clr-accent-hover: #d4c24f;
  --clr-danger: #c44b3f;

  --ff-base: 'Roboto Condensed', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --ff-heading: var(--ff-base);

  --fs-xs: clamp(0.700rem, 0.65rem + 0.25vw, 0.750rem);
  --fs-sm: clamp(0.813rem, 0.75rem + 0.30vw, 0.875rem);
  --fs-base: clamp(0.938rem, 0.88rem + 0.30vw, 1.000rem);
  --fs-md: clamp(1.125rem, 1.00rem + 0.50vw, 1.250rem);
  --fs-lg: clamp(1.500rem, 1.20rem + 1.00vw, 1.875rem);
  --fs-xl: clamp(2.000rem, 1.50rem + 2.00vw, 2.750rem);
  --fs-2xl: clamp(2.500rem, 1.80rem + 3.00vw, 3.750rem);

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --lh-tight: 1.2;
  --lh-base: 1.6;
  --lh-loose: 1.8;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  --container-max: 1280px;
  --container-padding: var(--space-2xl);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.6);

  --z-header: 100;
  --z-overlay: 200;
  --z-modal: 300;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--ff-base);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-base);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}



.cursor-distortion {
  position: fixed;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  filter: url(#distort-filter);
  backdrop-filter: url(#distort-filter);
  -webkit-backdrop-filter: url(#distort-filter);
  background: transparent;
  -webkit-mask-image: radial-gradient(circle, transparent 25%, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 70%);
  mask-image: radial-gradient(circle, transparent 25%, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: transform;
}

.cursor-distortion.is-active {
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-heading);
  color: var(--clr-text-heading);
  line-height: var(--lh-tight);
  font-weight: var(--fw-bold);
}

h1 {
  font-size: var(--fs-2xl);
}

h2 {
  font-size: var(--fs-xl);
}

h3 {
  font-size: var(--fs-lg);
}

p+p {
  margin-top: var(--space-md);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section {
  padding-block: var(--space-4xl);
}

.section__title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, transparent, var(--clr-bg));
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero__socials {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 24px;

  z-index: 2;
}

.hero__social-link {
  display: inline-flex;
  transition: opacity 0.3s ease;
}

.hero__social-link:hover,
.hero__social-link:focus-visible {
  opacity: 0.7;
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 68vh;

  z-index: 2;
  pointer-events: none;
}

.hero__logo {
  max-width: 400px;

  width: 100%;
  height: auto;
  pointer-events: auto;
}

.hero__cta {
  position: relative;
  display: inline-block;
  margin-top: -0.5rem;

  pointer-events: auto;
  cursor: pointer;
}

.hero__cta-default,
.hero__cta-hover {
  display: block;
  width: 100%;
  height: auto;
}

.hero__cta-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero__cta:hover .hero__cta-hover,
.hero__cta:focus-visible .hero__cta-hover {
  opacity: 1;
}

.hero__cta-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1.2px;
  color: #2F2F2F;
  pointer-events: none;
  transition: color 0.3s ease;
}

.hero__cta:hover .hero__cta-text,
.hero__cta:focus-visible .hero__cta-text {
  color: #DFDCBD;
}

@media (max-width: 768px) {
  .hero__image {
    height: 70%;

    object-position: center;

  }

  .hero::after {
    height: 60%;

    background: linear-gradient(to bottom, transparent 0%, var(--clr-bg) 50%, var(--clr-bg) 100%);
  }

  .hero__content {
    padding-top: calc(68vh - 40px);

  }

  .hero__logo {
    max-width: 320px;

  }
}

.about {
  margin-top: 80px;

}

.about__container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1150px;
  margin-inline: auto;
  padding-inline: 24px;
}

.about__left {
  flex: 1;
}

.about__title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 72px;
  color: #FFFFFF;
  margin: 0 0 16px 0;
}

.about__desc {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  margin: 0;
}

.about__follow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.about__follow-text {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 24px;
  color: #A6A9A2;
}

.about__follow-link {
  display: inline-flex;
  transition: opacity 0.3s ease;
}

.about__follow-link:hover,
.about__follow-link:focus-visible {
  opacity: 0.7;
}

.about__right {
  flex: 1;
}

.about__video {
  position: relative;
  width: 100%;
  -webkit-mask: url(#video-mask);
  mask: url(#video-mask);
}

.about__video-inline {
  position: relative;
  padding-bottom: 56.25%;

  height: 0;
  overflow: hidden;
}

.about__video-inline iframe,
.about__video-inline video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

.about__video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.about__video-overlay:hover {
  background: rgba(0, 0, 0, 0.3);
}

.about__video-play {
  font-size: 48px;
  color: #FFFFFF;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.about__video-overlay:hover .about__video-play {
  opacity: 1;
}

.section--features {
  margin-top: 120px;
  padding-block: 0;
}

.features__bg {
  width: 100%;
  background: url('../img/bg.png') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 120px;
}

.features__container {
  max-width: 1150px;
  width: 100%;
  padding-inline: 24px;
  margin-inline: auto;
}

.features__grid {
  display: flex;
  gap: 24px;
  height: 666px;
}

.features__tile {
  background-color: var(--color-bg-dark);
  border-radius: 8px;

  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  outline: none;

  opacity: 0;
  transition: opacity 1.5s ease-out;
  will-change: opacity, filter;
}

.features__tile.is-revealed {
  opacity: 1;

}

.features__tile:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 4px;
}

.features__tile-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.features__tile:hover .features__tile-img,
.features__tile:focus-visible .features__tile-img {
  transform: scale(1.04);
}

.features__content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 32px;
  z-index: 2;

}

.features__title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.features__title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
  line-height: 40px;
  color: #FFFFFF;
  margin: 0;
}

.features__icon {
  display: block;
  margin-top: 4px;

}

.features__icon--social {
  filter: brightness(0) invert(1);
  margin-top: 8px;

}

.features__icon--discord {
  margin-top: 5px;

}

.features__icon--telegram {
  margin-top: 6px;

}

.features__desc {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  margin: 0;
}

.features__tile--large {
  flex: 1;
  height: 100%;
  -webkit-mask: url(#tile-mask-1);
  mask: url(#tile-mask-1);
  position: relative;
}

.features__tile--large::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(58, 23, 23) 0%, transparent 60%);
  pointer-events: none;
}

.features__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features__tile--small:nth-child(1) {
  height: 321px;
  -webkit-mask: url(#tile-mask-2);
  mask: url(#tile-mask-2);
  position: relative;
}

.features__tile--small:nth-child(1)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58, 44, 23, 0.482) 0%, transparent 40%);
  pointer-events: none;
}

.features__tile--small:nth-child(2) {
  height: 321px;
  -webkit-mask: url(#tile-mask-3);
  mask: url(#tile-mask-3);
  position: relative;
}

.features__tile--small:nth-child(2)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38, 55, 30, 0.443) 0%, transparent 40%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .section--features {
    margin-top: 0px;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;

  }

  .features__bg {
    padding-top: 80px;

    padding-bottom: 24px;

  }

  .features__grid {
    flex-direction: column;

    height: auto;

    gap: 16px;

  }

  .features__col {
    gap: 16px;

  }

  .features__tile--large {
    flex: none;

    height: 280px;
    min-height: 280px;

  }

  .features__tile--large .features__tile-img {
    object-position: center 0%;

  }

  .features__tile--small:nth-child(1),
  .features__tile--small:nth-child(2) {
    height: 280px;

  }

  .features__title {
    font-size: 24px;

    line-height: 32px;
  }

  .features__desc br {
    display: none;
  }
}

.section--world {
  padding-block: 0;

  margin-top: 0;

  background-color: #0B0B0B;

}

.world__bg {
  position: relative;
  width: 100vw;

  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.world__bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;

}

.world__bg-img {
  width: 100%;
  height: auto;
  display: block;
  z-index: 1;

  position: relative;

  pointer-events: none;

}

.world__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;

  justify-content: center;

  z-index: 2;

}

@media (min-width: 1400px) {
  .world__content {
    padding-top: 120px;

  }
}

.world__text-layer {
  text-align: center;
  max-width: 1000px;

  padding: 0 0px;

}

.world__title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 80px;
  color: #FFFFFF;
  margin: 0 0 16px 0;

}

.world__desc {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
  margin: 0;
}

@media (max-width: 768px) {

  .world__bg {
    flex-direction: column;
    height: auto;
    overflow: hidden;

    max-width: 100vw;
  }

  .world__bg-video,
  .world__content {
    position: relative;
    height: auto;
  }

  .world__bg-video {
    order: 1;

    aspect-ratio: 16 / 9;

    width: 100%;

    margin: 0;
    transform: none;
    z-index: 1;

  }

  .world__bg-img {
    position: absolute;

    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    transform: none;
    z-index: 2;

  }

  .world__content {
    order: 3;

    padding-top: 40px;

    padding-bottom: 0px;

    z-index: 3;

    box-sizing: border-box;
    width: 100%;
  }

  .world__title {
    font-size: 48px;

    line-height: normal;
    margin-bottom: 24px;

    word-break: break-word;

  }

  .world__desc {
    font-size: 16px;

    line-height: 24px;
  }

  .world__desc br {
    display: none;
  }
}

.world__team-marquee {
  margin-top: 48px;
  width: 100vw;
  overflow: hidden;
}

.world__team-track {
  display: flex;
  justify-content: center;
}

.world__team-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1230px;
}

.world__team-badge {
  display: block;
  height: 48px;

  width: auto;
}

.world__team-badge--op-54 {
  opacity: 0.54;
}

.world__team-badge--op-32 {
  opacity: 0.32;
}

.world__team-group--clone {
  display: none;

}

@media (max-width: 1024px) {
  .world__team-track {
    justify-content: flex-start;
    width: max-content;
    animation: marquee 40s linear infinite;
  }

  .world__team-group {
    flex-wrap: nowrap;
    max-width: none;
    padding-right: 16px;

  }

  .world__team-group--clone {
    display: flex;

  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.video-modal,
.prereg-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.is-open,
.prereg-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.video-modal__overlay,
.prereg-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);

}

.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.video-modal__close,
.prereg-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 32px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  z-index: 2;

}

.video-modal__close:hover,
.prereg-modal__close:hover {
  opacity: 1;
}

.video-modal__iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;

  height: 0;
}

.video-modal__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.prereg-modal__content {
  position: relative;
  width: 90%;
  max-width: 700px;
  aspect-ratio: 16 / 10;

  display: flex;
  align-items: center;
  justify-content: center;
}

.prereg-modal__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;

  pointer-events: none;
  z-index: 0;
}

.prereg-modal__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
}

.prereg-modal__title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 40px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0 0 8px 0;

}

.prereg-modal__desc {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  margin: 0;
}

.prereg-modal__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  margin-top: 24px;

}

.prereg-modal__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #2F2F2F;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.prereg-modal__social-link:hover,
.prereg-modal__social-link:focus-visible {
  background-color: #61410E;
  transform: translateY(-4px);
  outline: none;
}

.prereg-modal__social-link img {
  filter: invert(1);
  transition: filter 0.3s ease;
}

.prereg-modal__social-link:hover img,
.prereg-modal__social-link:focus-visible img {
  filter: invert(0);
}

@media (max-width: 1024px) {
  .prereg-modal__content {
    width: 95%;

  }

  .prereg-modal__inner {
    padding: 30px 10%;

  }
}

@media (max-width: 768px) {
  .prereg-modal__content {
    aspect-ratio: auto;
    padding: 15% 8%;

  }

  .prereg-modal__bg {
    object-fit: fill;

  }

  .prereg-modal__inner {
    padding: 0;

  }

  .prereg-modal__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 12px;
  }

  .prereg-modal__desc {
    font-size: 14px;
    line-height: 20px;
  }

  .prereg-modal__desc br {
    display: none;
  }

  .prereg-modal__socials {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .prereg-modal__content {
    padding: 20% 5%;
  }

  .prereg-modal__title {
    font-size: 22px;
    line-height: normal;
  }

  .prereg-modal__desc {
    font-size: 13px;
    line-height: 18px;
  }
}

.sidor-easter-egg {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  pointer-events: none;

  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sidor-easter-egg.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sidor-easter-egg img {
  border-radius: 50%;
  width: 64px;
  height: 64px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .sidor-easter-egg {
    bottom: 16px;
    right: 16px;
  }

  .sidor-easter-egg img {
    width: 48px;
    height: 48px;
  }
}

.video-mod.about__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;

}

@media (max-width: 768px) {
  .about {
    margin-top: 40px;

  }

  .about__container {
    display: flex;
    flex-direction: column;

    align-items: stretch;

    gap: 24px;
    padding-inline: 16px;

  }

  .about__left {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 1;

  }

  .about__right {
    width: 100%;
    order: 2;

  }

  .about__follow {
    order: 3;
    width: 100%;
    margin-top: 24px;

    flex-wrap: wrap;

  }

  .about__title {
    font-size: 56px;

    line-height: normal;

    word-break: break-word;

  }

  .about__desc br {
    display: none;
  }
}

.footer {
  background-color: #0B0B0B;
  height: 72px;
  display: flex;
  align-items: center;
}

.footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__socials-text {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 24px;
  color: #A6A9A2;
}

.footer__socials-link {
  display: inline-flex;
  transition: opacity 0.3s ease;
}

.footer__socials-link:hover,
.footer__socials-link:focus-visible {
  opacity: 0.7;
}

.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;
}

.text-accent {
  color: var(--clr-accent);
}

.text-muted {
  color: var(--clr-text-muted);
}

.text-center {
  text-align: center;
}

@media (max-width: 1150px) {

  .about__desc br,
  .features__desc br,
  .world__desc br {
    display: none;
  }
}

@media (max-width: 1024px) {}

@media (max-width: 768px) {
  :root {
    --container-padding: var(--space-xl);
  }

  .section {
    padding-block: var(--space-3xl);
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: var(--space-md);
  }
}


.sidor-easter-egg {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  pointer-events: none;

  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sidor-easter-egg.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sidor-easter-egg img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

@media (max-width: 768px) {
  .sidor-easter-egg {
    bottom: 16px;
    right: 16px;
  }

  .sidor-easter-egg img {
    width: 48px;
    height: 48px;
  }
}

/* ═══════════════════════════════════════════
   Accessibility: Reduced 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;
  }

  .cursor-distortion {
    display: none !important;
  }
}