:root {
  --bg: #050505;
  --panel: rgba(16, 16, 16, 0.58);
  --panel-strong: rgba(24, 24, 24, 0.82);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f6f4f0;
  --muted: rgba(246, 244, 240, 0.72);
  --soft: rgba(255, 255, 255, 0.82);
  --accent: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --blur: blur(20px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.enter-screen {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 16%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.03), transparent 12%),
    #010101;
  cursor: pointer;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.enter-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.enter-screen-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  filter: blur(30px);
  animation: pulseGlow 6s ease-in-out infinite;
}

.enter-screen-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #f5f5f5;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  text-shadow: 0 0 26px rgba(255, 255, 255, 0.16);
  animation: enterPulse 1.8s ease-in-out infinite;
}

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

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



.page-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.video-backdrop,
.video-backdrop::before,
.video-backdrop::after,
.video-shade,
.noise-layer {
  position: fixed;
  inset: 0;
}

.video-backdrop {
  z-index: -3;
  overflow: hidden;
  background:
    url("./assets/derevia_tuman_les_278958_2560x1600.jpg") center/cover no-repeat,
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 38%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 30%),
    #020202;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.55) contrast(1.05);
  will-change: transform;
}

.video-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.66)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.75) 70%);
  background-size: 120% 120%;
  animation: none;
}

.noise-layer {
  z-index: 2;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: soft-light;
  animation: none;
}

.glow {
  position: fixed;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.15;
  z-index: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent 65%);
  animation: none;
}

.glow-left {
  top: -10rem;
  left: -10rem;
}

.glow-right {
  right: -12rem;
  bottom: -10rem;
  animation-delay: -4s;
}

.content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 64px;
}

.card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  backdrop-filter: var(--blur);
  box-shadow: var(--shadow);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 36%, transparent 66%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}


.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  padding: 36px;
  min-height: 80vh;
  align-items: center;
  animation: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.hero-title,
.section-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.92;
  font-weight: 700;
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.22);
  animation: none;
}

.hero-title {
  font-size: clamp(4.3rem, 12vw, 8rem);
}

.hero-subtitle,
.section-heading p,
.contact-description {
  max-width: 640px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.quick-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  font-weight: 500;
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 22px rgba(0, 0, 0, 0.18);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.quick-link::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.24s ease;
  pointer-events: none;
}

.quick-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.16), transparent 50%);
  opacity: 0.6;
  mix-blend-mode: screen;
  animation: none;
  pointer-events: none;
}

.quick-link:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 237, 237, 0.92));
  color: #101010;
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 14px 26px rgba(255, 255, 255, 0.12),
    0 10px 26px rgba(0, 0, 0, 0.2);
}

.quick-link:hover::before {
  opacity: 1;
}

.quick-link.is-pressed {
  transition-duration: 0.08s;
}

.quick-link:active {
  transform: translateY(1px) scale(0.99);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(220, 220, 220, 0.92));
  color: #050505;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.16);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 700px;
  justify-items: center;
}

.avatar-stack {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 112px;
}

.avatar-frame {
  position: relative;
  width: min(72vw, 350px);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 0 14px rgba(255, 255, 255, 0.03),
    0 28px 70px rgba(0, 0, 0, 0.42);
  z-index: 3;
}

.avatar-frame::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255, 255, 255, 0.35), transparent 35%, rgba(255, 255, 255, 0.08), transparent 70%, rgba(255, 255, 255, 0.25));
  filter: blur(6px);
  opacity: 0.55;
  animation: none;
  pointer-events: none;
}

.hero-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-orbit {
  position: absolute;
  width: min(74vw, 382px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  animation: spinSlow 26s linear infinite;
}

.hero-sticker {
  display: none;
}

.floating-apps {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-app {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  animation: appFloat var(--duration, 10s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.floating-app::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.16), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
  animation: none;
}

.floating-app svg {
  width: 18px;
  height: 18px;
}

.floating-app span {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  margin-bottom: 12px;
}

.contacts-section {
  margin-top: 28px;
}

.astralshop-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
  padding: 32px;
  margin-top: 28px;
}

.astralshop-copy h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.94;
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.18);
}

.astralshop-copy p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.8;
}

.astralshop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.astralshop-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--soft);
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
  overflow: hidden;
}

.astralshop-action::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.55), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.astralshop-action::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--sx, 50%) var(--sy, 50%), rgba(255, 255, 255, 0.35), transparent 50%),
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.22), transparent 65%);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.28s ease, transform 0.35s ease;
  pointer-events: none;
}

.astralshop-action:hover {
  transform: translateY(-4px) scale(1.02);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 237, 237, 0.92));
  color: #0d0d0d;
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 34px rgba(255, 255, 255, 0.18);
}

.astralshop-action:hover::before {
  opacity: 0.9;
}

.astralshop-action:hover::after {
  opacity: 1;
  transform: scale(1);
}

.astralshop-action.is-dragging {
  transition: transform 0.6s ease;
}

.astralshop-action svg {
  width: 22px;
  height: 22px;
}

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

.astralshop-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.astral-particle {
  position: absolute;
  width: var(--size, 10px);
  height: var(--size, 10px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.08) 70%, transparent 72%);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.16);
  opacity: 0.72;
  animation: astralParticle var(--duration, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.astral-particle.spark {
  border-radius: 16px 2px 16px 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.14));
}

.astralshop-avatar-shell {
  position: relative;
  z-index: 1;
  width: min(60vw, 248px);
  aspect-ratio: 1;
  padding: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
  animation: astralFloat 6.4s ease-in-out infinite;
}

.astralshop-avatar-shell::before,
.astralshop-avatar-shell::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  pointer-events: none;
}

.astralshop-avatar-shell::before {
  border: 1px dashed rgba(255, 255, 255, 0.18);
  animation: none;
}

.astralshop-avatar-shell::after {
  inset: -26px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 64%);
  filter: blur(20px);
  opacity: 0.75;
  animation: pulseGlow 7s ease-in-out infinite;
}

.astralshop-avatar-large {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.contact-card {
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--rx, 50%) var(--ry, 50%), rgba(255, 255, 255, 0.25), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.18), transparent 42%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.contact-card.is-ripple::before {
  opacity: 1;
  animation: rippleFade 0.6s ease forwards;
}

.contact-card:hover::after {
  opacity: 1;
}
.contact-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.embed-hint {
  margin: 0 0 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
}

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

.mini-player {
  position: relative;
  z-index: 5;
  width: min(100%, 500px);
  display: grid;
  grid-template-columns: 48px 44px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(10, 10, 10, 0.58);
  animation: none;
}

.mini-cover {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.mini-play,
.mini-control {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  font: inherit;
}

.mini-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 800;
}

.mini-player.is-playing .mini-play {
  animation: playPulse 1.8s ease-in-out infinite;
}

.mini-player-body {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.mini-player-topline,
.mini-player-bottomline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.player-track-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-service-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mini-service-links a {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  color: var(--soft);
}

.mini-progress {
  height: 4px;
}

.player-progress {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.player-progress-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(218, 218, 218, 0.72));
}

.mini-player.is-playing .player-progress-bar {
  animation: progressGlow 2.8s ease-in-out infinite;
}

.player-meta {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 0.72rem;
}

.mini-player-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.mini-control {
  min-height: 34px;
  min-width: 34px;
  padding: 0 12px;
  border-radius: 999px;
}

.mini-control.primary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 236, 236, 0.92));
  color: #050505;
}

.mini-volume {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--soft);
  font-size: 0.72rem;
}

.mini-volume input[type="range"] {
  width: 90px;
  accent-color: #ffffff;
  cursor: pointer;
}

.mini-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  min-height: 136px;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.contact-card:hover,
.tilt-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.26),
    0 0 36px rgba(255, 255, 255, 0.06);
}

.contact-icon {
  width: 66px;
  height: 66px;
  min-width: 66px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-icon svg {
  width: 28px;
  height: 28px;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-value {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
}

.petals {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.petal {
  position: absolute;
  top: -10%;
  width: 16px;
  height: 16px;
  border-radius: 16px 2px 16px 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.1));
  opacity: 0.36;
  filter: blur(0.6px);
  animation: fall linear forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

.floaty {
  animation: floaty 6.2s ease-in-out infinite;
}

@keyframes fall {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    transform: translate3d(var(--drift, 180px), 110vh, 0) rotate(560deg);
  }
}

@keyframes noiseShift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-2%, 1%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes shadeDrift {
  0%,
  100% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 60% 40%;
  }
}

@keyframes heroBreath {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: var(--shadow);
  }
  50% {
    transform: translateY(-8px);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.52);
  }
}

@keyframes cardSweep {
  0% {
    transform: translateX(-40%);
    opacity: 0.1;
  }
  45% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(40%);
    opacity: 0.12;
  }
}

@keyframes titleGlow {
  0%,
  100% {
    text-shadow: 0 0 32px rgba(255, 255, 255, 0.22);
    transform: translateY(0);
  }
  50% {
    text-shadow: 0 0 46px rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
  }
}

@keyframes pillSheen {
  0%,
  100% {
    transform: translateX(-8%) translateY(-4%);
    opacity: 0.45;
  }
  50% {
    transform: translateX(8%) translateY(6%);
    opacity: 0.8;
  }
}

@keyframes playerBreath {
  0%,
  100% {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
    transform: translateY(-6px);
  }
}

@keyframes playPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.1);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
  }
}

@keyframes progressGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.25));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
  }
}

@keyframes ringSweep {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rippleFade {
  0% {
    opacity: 0.6;
    transform: scale(0.9);
  }
  100% {
    opacity: 0;
    transform: scale(1.15);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.12;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.2;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes astralFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
  }
}

@keyframes astralParticle {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.9);
    opacity: 0.35;
  }
  50% {
    transform: translate3d(var(--drift-x, 0), var(--drift-y, -16px), 0) scale(1.08);
    opacity: 0.9;
  }
}

@keyframes enterPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes appFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(var(--drift-x, 14px), var(--drift-y, -16px), 0) scale(1.03);
  }
}

@media (max-width: 980px) {
  .hero,
  .astralshop-hero,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: unset;
  }

  .hero-visual {
    min-height: 700px;
  }
}

@media (max-width: 720px) {
  .content {
    width: min(100% - 20px, 1180px);
    padding-top: 14px;
  }

  .hero,
  .contact-card {
    padding: 20px;
  }

  .hero-title {
    font-size: clamp(3.2rem, 18vw, 5.3rem);
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-sticker {
    display: none;
  }

  .avatar-frame {
    width: min(78vw, 280px);
  }

  .mini-player {
    width: 100%;
    grid-template-columns: 48px 44px 1fr;
  }

  .mini-player-topline,
  .mini-player-bottomline {
    flex-direction: column;
    align-items: flex-start;
  }

  .mini-player-controls {
    width: 100%;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .mini-volume {
    width: 100%;
  }

  .mini-volume input[type="range"] {
    width: 100%;
  }

  .contact-card {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

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