:root {
  --bg-main: #06090f;
  --bg-section: #0b111c;
  --bg-card: rgba(15, 23, 42, 0.45);
  --bg-card-solid: #141b29;

  --stroke: rgba(255, 255, 255, 0.07);
  --stroke-strong: rgba(0, 217, 255, 0.4);

  --txt-main: #f8fafc;
  --txt-dim: #94a3b8;
  --txt-muted: #64748b;

  --neon: #00d9ff;
  --neon-soft: rgba(0, 217, 255, 0.4);
  --neon-glow: rgba(0, 217, 255, 0.7);

  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
  --radius-full: 999px;

  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", sans-serif;

  --transition-fast: 0.18s ease;
  --transition-mid: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  background-color: var(--bg-main);
  color: var(--txt-main);
  font-family: var(--font-main);
  line-height: 1.5;
}

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

/* screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hidden {
  display: none !important;
}

/* layout container */
.container {
  width: 100%;
  max-width: 1280px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}

/* ============ NAVBAR ============ */

.site-header {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 15, 22, 0.6);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--stroke);
  transition: box-shadow var(--transition-fast),
    border var(--transition-fast);
}

.nav-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--txt-main);
  gap: 0.75rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 0.5rem;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 217, 255, 0.3) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  box-shadow: 0 0 20px var(--neon-soft);
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  line-height: 1.1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.brand-top {
  font-size: 0.7rem;
  font-weight: 700;
}

.brand-bottom {
  font-size: 0.8rem;
  color: var(--txt-main);
}

/* desktop nav */
.main-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}

.nav-link {
  color: var(--txt-dim);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.nav-link:hover {
  color: var(--txt-main);
}

/* playstore pill button */
.btn-ghost {
  border-radius: var(--radius-full);
  border: 1px solid var(--stroke-strong);
  color: var(--neon);
  font-weight: 600;
  padding: 0.6rem 1rem;
  text-decoration: none;
  font-size: 0.8rem;
  background: rgba(0, 217, 255, 0.07);
  box-shadow: 0 0 20px var(--neon-soft);
  transition: all var(--transition-fast);
  line-height: 1.1;
}
.btn-ghost:hover {
  background: rgba(0, 217, 255, 0.15);
  box-shadow: 0 0 30px var(--neon);
  color: #fff;
  text-shadow: 0 0 10px var(--neon-glow), 0 0 30px var(--neon-glow);
}

/* language toggle */
.lang-toggle {
  border-radius: var(--radius-full);
  border: 1px solid var(--stroke);
  background: rgba(15, 23, 42, 0.5);
  color: var(--txt-main);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.6rem 0.8rem;
  cursor: pointer;
  box-shadow: 0 0 12px var(--neon-soft);
  transition: all var(--transition-fast);
  text-transform: uppercase;
}
.lang-toggle:hover {
  border-color: var(--stroke-strong);
  box-shadow: 0 0 20px var(--neon-soft), 0 0 30px var(--neon-soft);
  color: #fff;
}

/* mobile menu button */
.mobile-menu-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border-radius: 0.5rem;
  border: 1px solid var(--stroke);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.mobile-menu-btn:hover {
  border-color: var(--stroke-strong);
  box-shadow: 0 0 20px var(--neon-soft);
}
@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.burger-line {
  width: 20px;
  height: 2px;
  background: var(--txt-main);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--neon-soft);
}

/* mobile dropdown */
.mobile-menu {
  background: rgba(10, 15, 22, 0.9);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--stroke);
  padding: 1rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-link {
  color: var(--txt-main);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

/* ============ HERO ============ */

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 80px; /* navbar boşluğu */
  display: flex;
  align-items: center;
  background-color: var(--bg-main);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(0, 217, 255, 0.35) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  mix-blend-mode: screen;
  opacity: 0.4;
  transition: background var(--transition-fast);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(6, 9, 15, 0.6) 40%,
    rgba(6, 9, 15, 1) 80%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 760px;
}

.hero-title {
  font-size: clamp(2.5rem, 2vw + 2rem, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.typed-text {
  display: inline-block;
  min-width: 1ch;
}
.typed-caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--neon);
  margin-left: 4px;
  box-shadow: 0 0 8px var(--neon-glow), 0 0 16px var(--neon-glow);
  animation: caretBlink 1s steps(1) infinite;
  vertical-align: -0.15em;
}
@keyframes caretBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.hero-sub {
  margin: 1.5rem auto 0;
  font-size: 1.05rem;
  max-width: 36rem;
  color: var(--txt-dim);
  line-height: 1.6;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 480px) {
  .hero-cta {
    flex-direction: row;
  }
}

/* Fancy moving scanline */
.scanline {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0) 2px,
    rgba(0, 217, 255, 0.03) 2px,
    rgba(0, 217, 255, 0.03) 3px
  );
  opacity: 0.35;
  mix-blend-mode: screen;
  animation: scanMove 6s linear infinite;
  pointer-events: none;
}
@keyframes scanMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* hero tags / pills */
.hero-tags {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--txt-dim);
}
@media (min-width: 480px) {
  .hero-tags {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-full);
  padding: 0.5rem 0.75rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8);
}
.tag-pill .dot {
  width: 6px;
  height: 6px;
  background: var(--neon);
  border-radius: 999px;
  box-shadow: 0 0 10px var(--neon-glow), 0 0 20px var(--neon-glow);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.2;
  }
}

/* ============ BUTTONS ============ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid var(--stroke-strong);
  background: radial-gradient(
      circle at 50% 0%,
      rgba(0, 217, 255, 0.4) 0%,
      rgba(0, 0, 0, 0) 70%
    ),
    rgba(0, 217, 255, 0.08);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.8rem 1.1rem;
  text-decoration: none;
  box-shadow: 0 0 15px var(--neon-soft), 0 30px 60px -10px rgb(0 0 0 / 0.9);
  transition: all var(--transition-fast);
  text-shadow: 0 0 10px var(--neon-glow), 0 0 24px var(--neon-glow);
}
.btn-primary:hover {
  box-shadow: 0 0 25px var(--neon), 0 30px 80px -8px rgb(0 0 0 / 1);
  background: rgba(0, 217, 255, 0.15);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid var(--stroke);
  background: rgba(15, 23, 42, 0.5);
  color: var(--txt-main);
  font-weight: 500;
  font-size: 0.8rem;
  padding: 0.8rem 1.1rem;
  text-decoration: none;
  box-shadow: 0 24px 48px -12px rgb(0 0 0 / 0.8);
  transition: all var(--transition-fast);
}
.btn-outline:hover {
  border-color: var(--stroke-strong);
  box-shadow: 0 0 20px var(--neon-soft);
  color: #fff;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  width: 100%;
  border: 1px solid var(--stroke-strong);
  background: rgba(0, 217, 255, 0.07);
  color: var(--neon);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.7rem 1rem;
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-fast);
  box-shadow: 0 0 20px var(--neon-soft);
}
.btn-store:hover {
  background: rgba(0, 217, 255, 0.15);
  color: #fff;
  text-shadow: 0 0 10px var(--neon-glow), 0 0 20px var(--neon-glow);
  box-shadow: 0 0 24px var(--neon);
}

.btn-job {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid var(--stroke-strong);
  background: rgba(0, 217, 255, 0.07);
  color: var(--neon);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.7rem 1rem;
  text-decoration: none;
  text-align: center;
  width: fit-content;
  box-shadow: 0 0 16px var(--neon-soft);
  transition: all var(--transition-fast);
}
.btn-job:hover {
  background: rgba(0, 217, 255, 0.15);
  color: #fff;
  text-shadow: 0 0 10px var(--neon-glow), 0 0 20px var(--neon-glow);
  box-shadow: 0 0 24px var(--neon);
}

/* link neon */
.link-neon {
  color: var(--neon);
  text-decoration: none;
  font-weight: 600;
  text-shadow: 0 0 8px var(--neon-glow), 0 0 16px var(--neon-glow);
  transition: all var(--transition-fast);
}
.link-neon:hover {
  color: #fff;
  text-shadow: 0 0 10px var(--neon), 0 0 28px var(--neon);
}

/* text neon */
.neon-text {
  color: var(--neon);
  text-shadow: 0 0 8px var(--neon-glow), 0 0 16px var(--neon-glow),
    0 0 48px var(--neon-glow);
}

/* ============ SECTION GENERIC ============ */

.section {
  position: relative;
  padding: 4rem 0;
  background-color: var(--bg-main);
}

.section-dark {
  background-color: var(--bg-section);
  background-image: radial-gradient(
    circle at 10% 0%,
    rgba(0, 217, 255, 0.08) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  box-shadow: inset 0 60px 120px rgba(0, 0, 0, 0.8),
    0 60px 120px rgba(0, 0, 0, 0.9);
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.section-title {
  font-size: clamp(1.8rem, 0.6vw + 1rem, 2rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-desc {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--txt-dim);
  line-height: 1.6;
}

/* ============ GAMES GRID ============ */

.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 480px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1440px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 48px -12px rgb(0 0 0 / 0.9);
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  transition: box-shadow var(--transition-fast),
    border var(--transition-fast), background var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.game-card:hover {
  border-color: var(--stroke-strong);
  box-shadow: 0 40px 80px -16px rgba(0, 217, 255, 0.3),
    0 60px 120px -20px rgb(0 0 0 / 1);
  background: radial-gradient(
      circle at 10% 0%,
      rgba(0, 217, 255, 0.08) 0%,
      rgba(0, 0, 0, 0) 60%
    ),
    var(--bg-card);
}

.game-head {
  display: flex;
  gap: 1rem;
}

.game-icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--bg-card-solid);
  border: 1px solid var(--stroke);
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 24px 48px -12px rgb(0 0 0 / 1);
}
.game-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game-icon-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 217, 255, 0.2) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  mix-blend-mode: screen;
  opacity: 0.4;
}

.game-meta {
  flex: 1;
  min-width: 0;
}

.game-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--txt-main);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
  margin: 0;
}

.badge {
  font-size: 0.6rem;
  font-weight: 700;
  background: rgba(0, 217, 255, 0.15);
  color: var(--neon);
  border: 1px solid var(--stroke-strong);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 12px var(--neon-soft);
}

.game-text {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--txt-dim);
  line-height: 1.5;
}

.game-stats {
  margin: 1rem 0 1.25rem;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 0.5rem;
  column-gap: 0.75rem;
}

.game-stats li {
  display: flex;
  flex-direction: column;
}
.label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--txt-muted);
  font-weight: 500;
}
.value {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--txt-main);
}

/* ============ ABOUT / KURUMSAL ============ */

.section-grid {
  background-color: var(--bg-main);
}

.about-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

.about-left .section-title {
  margin-bottom: 1rem;
}

.about-text {
  color: var(--txt-dim);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  border-left: 2px solid var(--stroke-strong);
}
.about-list li {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1rem;
  background: rgba(15, 23, 42, 0.4);
  border-bottom: 1px solid var(--stroke);
}
.about-list li:last-child {
  border-bottom: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.about-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--txt-muted);
  font-weight: 500;
}
.about-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--txt-main);
}

.about-right {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
}

.stat-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 24px 48px -12px rgb(0 0 0 / 0.9);
}
.stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--txt-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ============ JOBS / KARIYER ============ */

.jobs-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .jobs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .jobs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.job-card {
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: 0 24px 48px -12px rgb(0 0 0 / 0.9);
  backdrop-filter: blur(20px);
}

.job-title {
  color: var(--txt-main);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.job-text {
  color: var(--txt-dim);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

/* ============ CONTACT ============ */

.contact-wrap {
  max-width: 768px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  box-shadow: 0 24px 48px -12px rgb(0 0 0 / 0.9);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(0, 217, 255, 0.15) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
}

.contact-desc {
  color: var(--txt-dim);
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.contact-grid {
  display: grid;
  gap: 1rem 2rem;
}
@media (min-width: 480px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.contact-block {
  display: flex;
  flex-direction: column;
}
.contact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--txt-muted);
  font-weight: 500;
}
.contact-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--txt-main);
  line-height: 1.4;
  word-break: break-word;
}

.contact-note {
  color: var(--txt-muted);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-top: 1.5rem;
}

/* PRIVACY PAGE BODY TEXT */
.legal-text {
  color: var(--txt-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}
.legal-text h2 {
  color: var(--txt-main);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-text a {
  color: var(--neon);
  text-decoration: none;
}
.legal-text a:hover {
  text-decoration: underline;
}

/* ============ FOOTER ============ */

.site-footer {
  background: #000000;
  background-image: radial-gradient(
    circle at 100% 0%,
    rgba(0, 217, 255, 0.07) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  border-top: 1px solid var(--stroke);
  padding: 3rem 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--txt-dim);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  object-fit: contain;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 217, 255, 0.3) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  box-shadow: 0 0 20px var(--neon-soft);
}

.footer-about {
  color: var(--txt-dim);
  font-size: 0.8rem;
}

.footer-copy {
  color: var(--txt-muted);
  font-size: 0.7rem;
}

.footer-head {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--txt-muted);
  letter-spacing: 0.08em;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-link {
  color: var(--txt-dim);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8rem;
  display: inline-block;
  line-height: 1.4;
  transition: all var(--transition-fast);
}
.footer-link:hover {
  color: #fff;
  text-shadow: 0 0 8px var(--neon-glow), 0 0 20px var(--neon-glow);
}

/* ============ SCROLL REVEAL ANIMATION ============ */

/* Başlangıç hali (JS sonra .reveal ekliyor) */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.6s linear;
  will-change: transform, opacity;
}

[data-reveal].reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ============ PARALLAX HEADER SHADOW ON SCROLL ============ */

.scrolled-header {
  box-shadow: 0 30px 80px -10px rgb(0 0 0 / 0.9),
    0 0 30px rgba(0, 217, 255, 0.4);
  border-bottom-color: var(--stroke-strong);
}
