:root {
  --bg-deep: #0a1628;
  --bg-card: #111f33;
  --accent: #3d9cf0;
  --accent-dim: #2a6fa8;
  --accent-soft: #6eb8f7;
  --software: #3dd4c3;
  --text: #e8eef5;
  --text-muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --header-h: 64px;
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 100% - 32px);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(7, 15, 26, 0.95);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  max-width: min(92vw, 22rem);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease-out);
}

.logo:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.logo-type {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.12rem;
  min-width: 0;
  line-height: 1.2;
}

.logo-name {
  font-size: clamp(0.72rem, 2.4vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: normal;
  max-width: 14em;
  line-height: 1.35;
  background: linear-gradient(105deg, #f8fafc 0%, #e2e8f0 40%, var(--accent-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: filter 0.25s ease;
}

.logo-tagline {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(125, 230, 216, 0.92);
  white-space: nowrap;
}

.logo:hover .logo-name {
  filter: brightness(1.08);
}

.site-nav ul {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  position: relative;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--software));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease-out);
}

.site-nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(10, 22, 40, 0.98);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .site-nav.is-open {
    max-height: 480px;
  }

  .site-nav a::after {
    bottom: -2px;
  }

  .site-nav ul {
    flex-direction: column;
    padding: 1rem 1.5rem 1.25rem;
    gap: 0;
  }

  .site-nav li {
    border-bottom: 1px solid var(--border);
  }

  .site-nav li:last-child {
    border-bottom: 0;
  }

  .site-nav a {
    display: block;
    padding: 0.85rem 0;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(72vh, 560px);
  display: flex;
  align-items: center;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(180deg, #0d1a2e 0%, var(--bg-deep) 55%, var(--bg-deep) 100%);
}

.hero-aurora {
  position: absolute;
  inset: -40% -20%;
  background:
    radial-gradient(ellipse 55% 40% at 20% 20%, rgba(61, 156, 240, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 45% at 85% 30%, rgba(61, 212, 195, 0.2), transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(61, 156, 240, 0.12), transparent 55%);
  animation: auroraShift 14s ease-in-out infinite alternate;
  opacity: 0.9;
}

.hero-orbs {
  position: absolute;
  inset: 0;
}

.hero-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: orbDrift 18s ease-in-out infinite;
}

.hero-orbs .orb-a {
  width: min(42vw, 380px);
  height: min(42vw, 380px);
  left: -8%;
  top: 10%;
  background: rgba(61, 156, 240, 0.35);
  animation-delay: 0s;
}

.hero-orbs .orb-b {
  width: min(35vw, 300px);
  height: min(35vw, 300px);
  right: -5%;
  top: 35%;
  background: rgba(61, 212, 195, 0.22);
  animation-delay: -6s;
  animation-duration: 22s;
}

.hero-orbs .orb-c {
  width: min(28vw, 240px);
  height: min(28vw, 240px);
  left: 40%;
  bottom: -5%;
  background: rgba(94, 176, 245, 0.2);
  animation-delay: -12s;
  animation-duration: 20s;
}

.hero-gridlines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 10%, transparent 75%);
  animation: gridDrift 24s linear infinite;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-tag {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-soft);
  border: 1px solid rgba(61, 156, 240, 0.4);
  border-radius: 999px;
  letter-spacing: 0.06em;
  box-shadow: 0 0 0 0 rgba(61, 156, 240, 0.25);
  animation: tagPulse 3.2s ease-in-out infinite;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  transition:
    background 0.25s var(--ease-out),
    color 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out),
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.btn-primary {
  background: var(--accent);
  color: #0a1628;
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(61, 156, 240, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-ghost:hover {
  border-color: rgba(61, 156, 240, 0.55);
  color: var(--accent-soft);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(61, 156, 240, 0.12);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-sub.en {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 0.5rem;
  font-size: 1.65rem;
  font-weight: 700;
}

.section-title-inner {
  position: relative;
  display: inline-block;
  padding-bottom: 0.35rem;
}

.section-title-inner::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  max-width: 120px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--software), transparent);
  transform: translateX(-50%) scaleX(0.35);
  animation: titleLine 2.4s ease-in-out infinite alternate;
}

/* Scroll / load reveals */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(6px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out),
    filter 0.55s ease;
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.about-card {
  position: relative;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color 0.35s var(--ease-out),
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 120px at 50% -20%, rgba(61, 156, 240, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.about-card:hover::before {
  opacity: 1;
}

.card-tilt:hover {
  transform: translateY(-4px) perspective(800px) rotateX(2deg);
  border-color: rgba(61, 156, 240, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.about-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--accent);
}

.about-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Games */
.games {
  background: linear-gradient(180deg, transparent, rgba(61, 156, 240, 0.04));
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.game-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color 0.3s var(--ease-out),
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}

.card-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.07) 48%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.07) 52%,
    transparent 60%
  );
  transform: translateX(-120%) skewX(-12deg);
  transition: transform 0.65s var(--ease-out);
  pointer-events: none;
  z-index: 2;
}

.card-shine:hover::after {
  transform: translateX(120%) skewX(-12deg);
}

.game-card:hover {
  border-color: rgba(61, 156, 240, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.game-thumb {
  position: relative;
  height: 140px;
  background: var(--thumb, #1a3a5c);
  background-size: 200% 200%;
  animation: thumbBreathe 10s ease-in-out infinite;
}

.game-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 22, 40, 0.55) 100%);
  pointer-events: none;
}

.game-body {
  position: relative;
  z-index: 3;
  padding: 1.25rem 1.35rem 1.4rem;
}

.game-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.game-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Software */
.software {
  background:
    linear-gradient(180deg, rgba(61, 212, 195, 0.06), transparent 45%),
    linear-gradient(180deg, transparent, rgba(10, 22, 40, 0.85));
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.software-card {
  position: relative;
  padding: 1.5rem 1.4rem 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color 0.3s var(--ease-out),
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}

.software-card:hover {
  border-color: rgba(61, 212, 195, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.software-icon {
  position: relative;
  z-index: 3;
  font-size: 1.45rem;
  line-height: 1;
  margin-bottom: 0.65rem;
  color: var(--software);
  filter: drop-shadow(0 0 10px rgba(61, 212, 195, 0.35));
  animation: iconFloat 6s ease-in-out infinite;
}

.software-card:nth-child(2) .software-icon {
  animation-delay: -1.5s;
}

.software-card:nth-child(3) .software-icon {
  animation-delay: -3s;
}

.software-card:nth-child(4) .software-icon {
  animation-delay: -4.5s;
}

.software-card h3 {
  position: relative;
  z-index: 3;
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: #dffaf6;
}

.software-card p {
  position: relative;
  z-index: 3;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Business */
.biz-list {
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.biz-list li {
  position: relative;
  padding: 1rem 0 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.biz-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(61, 156, 240, 0.45);
  animation: dotPulse 2.8s ease-out infinite;
}

.biz-list li:nth-child(2)::before {
  animation-delay: 0.4s;
}

.biz-list li:nth-child(3)::before {
  animation-delay: 0.8s;
}

.biz-list li:nth-child(4)::before {
  animation-delay: 1.2s;
}

.biz-list li:last-child {
  border-bottom: 0;
}

/* Contact */
.contact {
  padding-bottom: 5rem;
}

.contact-showcase {
  position: relative;
  max-width: 880px;
  margin-inline: auto;
  padding: 2rem 1.75rem 1.75rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background:
    linear-gradient(165deg, rgba(17, 31, 51, 0.98) 0%, rgba(10, 22, 40, 0.92) 100%);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transition:
    border-color 0.35s var(--ease-out),
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.contact-showcase:hover {
  border-color: rgba(61, 156, 240, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(61, 156, 240, 0.08);
}

.contact-showcase__glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(ellipse 55% 70% at 50% 0%, rgba(61, 156, 240, 0.18), transparent 65%);
  pointer-events: none;
  animation: contactGlow 9s ease-in-out infinite alternate;
}

.contact-panels {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
}

.contact-panels__rule {
  width: 1px;
  margin: 0.5rem 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(61, 156, 240, 0.35) 25%,
    rgba(61, 212, 195, 0.28) 75%,
    transparent 100%
  );
  opacity: 0.85;
}

.contact-panel {
  padding: 0.5rem 1.25rem 1rem;
  text-align: center;
}

.contact-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 0.75rem;
  border-radius: 14px;
  color: var(--accent-soft);
  background: rgba(61, 156, 240, 0.12);
  border: 1px solid rgba(61, 156, 240, 0.22);
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.35s ease,
    background 0.35s ease;
}

.contact-panel--mail .contact-panel__icon {
  color: var(--software);
  background: rgba(61, 212, 195, 0.1);
  border-color: rgba(61, 212, 195, 0.25);
}

.contact-panel:hover .contact-panel__icon {
  transform: scale(1.06) translateY(-2px);
}

.contact-panel h3 {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-panel__value {
  margin: 0 0 0.75rem;
}

.contact-panel__value a {
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  word-break: break-all;
}

.contact-panel__value a:hover {
  color: var(--accent-soft);
  text-decoration: none;
}

.contact-panel--mail .contact-panel__value a:hover {
  color: #9cf0e6;
}

.contact-panel__hint {
  margin: 0;
  max-width: 34ch;
  margin-inline: auto;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.contact-showcase__chips {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
}

.contact-chip {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.contact-chip:hover {
  border-color: rgba(61, 156, 240, 0.35);
  color: var(--text);
}

.contact-showcase__note {
  position: relative;
  z-index: 3;
  margin: 1.1rem 0 0;
  text-align: center;
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 52ch;
  margin-inline: auto;
}

@media (max-width: 640px) {
  .contact-panels {
    grid-template-columns: 1fr;
  }

  .contact-panels__rule {
    width: 100%;
    height: 1px;
    margin: 1rem 0;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(61, 156, 240, 0.35) 30%,
      rgba(61, 212, 195, 0.28) 70%,
      transparent 100%
    );
  }

  .contact-panel {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.muted {
  font-size: 0.85rem !important;
  opacity: 0.9;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: #070f1a;
}

.footer-inner {
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-nav a:hover {
  color: var(--accent-soft);
  text-decoration: none;
  transform: translateY(-1px);
}

.copyright {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.copyright a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.copyright a:hover {
  color: var(--accent-soft);
  border-bottom-color: rgba(110, 184, 247, 0.45);
}

/* Keyframes */
@keyframes auroraShift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-4%, 3%) scale(1.05);
  }
}

@keyframes orbDrift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(6%, -5%);
  }
}

@keyframes gridDrift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 48px 48px, 48px 48px;
  }
}

@keyframes tagPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(61, 156, 240, 0.2);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(61, 156, 240, 0);
  }
}

@keyframes titleLine {
  0% {
    transform: translateX(-50%) scaleX(0.28);
    opacity: 0.65;
  }
  100% {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
  }
}

@keyframes thumbBreathe {
  0%,
  100% {
    background-position: 0% 40%;
  }
  50% {
    background-position: 100% 60%;
  }
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes contactGlow {
  0% {
    opacity: 0.55;
    transform: translateX(-3%) scale(1);
  }
  100% {
    opacity: 0.85;
    transform: translateX(3%) scale(1.03);
  }
}

@keyframes dotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(61, 156, 240, 0.35);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(61, 156, 240, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(61, 156, 240, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-aurora,
  .hero-orbs .orb,
  .hero-gridlines,
  .hero-tag,
  .section-title-inner::after,
  .game-thumb,
  .software-icon,
  .biz-list li::before,
  .contact-showcase__glow {
    animation: none !important;
  }

  .section-title-inner::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .card-shine::after {
    display: none;
  }

  .card-tilt:hover,
  .logo:hover,
  .game-card:hover,
  .software-card:hover,
  .contact-showcase:hover,
  .contact-panel:hover .contact-panel__icon,
  .btn-primary:hover,
  .btn-ghost:hover,
  .footer-nav a:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .game-card:hover,
  .software-card:hover,
  .contact-showcase:hover {
    box-shadow: none !important;
  }

  .logo:hover .logo-name {
    filter: none !important;
  }
}
