/* Serhan Recepçe — gaming / cinematic dark theme */
:root {
  --bg-deep: #06040c;
  --bg-card: rgba(18, 12, 32, 0.55);
  --text: #e8e4f5;
  --text-muted: #9a90b8;
  --neon-purple: #b84fff;
  --neon-blue: #3d9dff;
  --neon-cyan: #5cf0ff;
  --border: rgba(180, 140, 255, 0.2);
  --glass-blur: 16px;
  --radius: 14px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body:not(.admin-body).is-hovering .cursor-glow {
  transform: scale(1.15);
  opacity: 0.45;
}

a {
  color: var(--neon-cyan);
}

a:hover {
  color: var(--neon-purple);
}

.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;
}

.muted {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- Custom cursor (desktop) --- */
.cursor-glow,
.cursor-dot {
  pointer-events: none;
  position: fixed;
  z-index: 9999;
  mix-blend-mode: screen;
  display: none;
}

/* Özel imleç sadece ana site; admin panelinde normal imleç kullanılır */
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  body:not(.admin-body) .cursor-glow,
  body:not(.admin-body) .cursor-dot {
    display: block;
  }
  body:not(.admin-body) {
    cursor: none;
  }
  body:not(.admin-body) a,
  body:not(.admin-body) button,
  body:not(.admin-body) input,
  body:not(.admin-body) textarea,
  body:not(.admin-body) select {
    cursor: none;
  }
}

.cursor-glow {
  width: 180px;
  height: 180px;
  margin: -90px 0 0 -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 79, 255, 0.35), transparent 65%);
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0.28;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 12px var(--neon-cyan);
}

/* --- Glass --- */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text);
  text-shadow: 0 0 20px rgba(184, 79, 255, 0.5);
  display: flex;
  align-items: center;
  max-width: min(200px, 42vw);
}

.logo img {
  display: block;
  max-height: 40px;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-toggle {
  display: flex;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease;
}

.nav-toggle::before {
  transform: translateY(-5px);
}

.nav-toggle::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

@media (min-width: 880px) {
  .nav-toggle {
    display: none;
  }
}

.nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.25rem;
  background: rgba(8, 5, 16, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav.is-open {
  display: flex;
}

.nav a {
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.5rem 0;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav a:hover {
  color: var(--text);
  text-shadow: 0 0 12px rgba(92, 240, 255, 0.4);
}

.nav-cta {
  color: var(--neon-cyan) !important;
  font-weight: 600;
}

@media (min-width: 880px) {
  .nav {
    display: flex;
    flex-direction: row;
    position: static;
    padding: 0;
    background: transparent;
    border: none;
    gap: 1.25rem;
    align-items: center;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.25rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.hero-grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(184, 79, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 157, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: perspective(400px) rotateX(60deg);
  transform-origin: center top;
  animation: grid-drift 28s linear infinite;
}

@keyframes grid-drift {
  to {
    background-position: 0 480px, 480px 0;
  }
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: pulse-glow 8s ease-in-out infinite alternate;
}

.hero-glow-1 {
  width: min(70vw, 420px);
  height: min(70vw, 420px);
  background: var(--neon-purple);
  top: 10%;
  left: 15%;
}

.hero-glow-2 {
  width: min(60vw, 360px);
  height: min(60vw, 360px);
  background: var(--neon-blue);
  bottom: 5%;
  right: 10%;
  animation-delay: -3s;
}

@keyframes pulse-glow {
  from {
    transform: scale(1);
    opacity: 0.25;
  }
  to {
    transform: scale(1.08);
    opacity: 0.45;
  }
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  bottom: -10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
  opacity: 0.5;
  animation: float-up linear infinite;
}

@keyframes float-up {
  to {
    transform: translateY(-110vh) translateX(12px);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.hero-kicker {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.neon-text {
  color: var(--text);
  text-shadow:
    0 0 10px rgba(184, 79, 255, 0.8),
    0 0 28px rgba(61, 157, 255, 0.5);
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.glitch {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  z-index: -1;
  pointer-events: none;
}

.glitch::before {
  color: var(--neon-cyan);
  animation: glitch-1 3s infinite linear alternate-reverse;
  opacity: 0.35;
}

.glitch::after {
  color: var(--neon-purple);
  animation: glitch-2 2.5s infinite linear alternate;
  opacity: 0.35;
}

@keyframes glitch-1 {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 1px);
  }
  40% {
    transform: translate(2px, -1px);
  }
  100% {
    transform: translate(0);
  }
}

@keyframes glitch-2 {
  0% {
    transform: translate(0);
  }
  25% {
    transform: translate(2px, 0);
  }
  50% {
    transform: translate(-1px, 2px);
  }
  100% {
    transform: translate(0);
  }
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--neon-purple), var(--neon-blue));
  color: #fff;
  box-shadow: 0 0 24px rgba(184, 79, 255, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: var(--border);
}

.btn-block {
  width: 100%;
}

.hero-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  position: relative;
}

.social-btn:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--neon-purple);
  box-shadow: 0 8px 24px rgba(184, 79, 255, 0.25);
}

.social-btn[data-platform="twitch"]::after {
  content: "Tw";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #a970ff;
}

.social-btn[data-platform="youtube"]::after {
  content: "YT";
  font-size: 0.6rem;
  font-weight: 800;
  color: #ff4d4d;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-btn[data-platform="kick"]::after {
  content: "K";
  font-weight: 800;
  color: #53fc18;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-btn[data-platform="tiktok"]::after {
  content: "TT";
  font-size: 0.55rem;
  font-weight: 800;
  color: #fff;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-btn[data-platform="instagram"]::after {
  content: "IG";
  font-size: 0.55rem;
  font-weight: 800;
  color: #f58529;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-btn[data-platform="facebook"]::after {
  content: "f";
  font-weight: 800;
  color: #1877f2;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-btn:not([data-platform])::after {
  content: "●";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  color: var(--text-muted);
}

/* --- Sections --- */
.section {
  padding: 3.5rem 1.25rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.container.narrow {
  max-width: 640px;
}

.section-title {
  font-size: 1.75rem;
  margin: 0 0 0.75rem;
}

.section-lead {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid var(--border);
  background: rgba(184, 79, 255, 0.08);
}

/* --- Ana sayfa: son içerik (tür başına 1 video) --- */
.home-latest {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.home-latest-head {
  text-align: center;
  margin-bottom: 2rem;
}

.home-latest-head .section-title {
  margin-bottom: 0.5rem;
}

.home-latest-lead {
  color: var(--text-muted);
  margin: 0 auto 1rem;
  max-width: 38rem;
  line-height: 1.55;
  font-size: 0.95rem;
}

.home-latest-more {
  margin-top: 0.25rem;
}

.home-latest-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}

.home-latest-grid > .home-latest-card {
  min-width: 0;
  width: 100%;
}

@media (min-width: 900px) {
  .home-latest-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-latest-card {
  display: flex;
  flex-direction: column;
}

/* Short önizleme: ızgara içinde yükseklik + embed (youtube-nocookie bazı Short’larda sorun çıkarabiliyor) */
.home-latest .video-wrap--short-home {
  height: auto;
  padding-bottom: 0;
  width: 100%;
  max-width: min(320px, 100%);
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 9 / 16;
  background: #000;
}

@supports not (aspect-ratio: 9 / 16) {
  .home-latest .video-wrap--short-home {
    height: 0;
    padding-bottom: 177.78%;
    aspect-ratio: unset;
  }
}

.home-latest-badge {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--neon-cyan);
}

.home-latest-badge--twitch {
  color: #c4b5fd;
}

.home-latest-badge--short {
  color: var(--neon-purple);
}

/* --- Ana sayfa: Hakkımda (admin’den düzenlenir) --- */
.home-about {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.home-about-head {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.home-about-head .section-title {
  margin-bottom: 0.5rem;
}

.home-about-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.home-about-card-title {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  color: var(--neon-cyan);
}

.home-about-body {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.home-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.home-about-split.split {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .home-about-split.split {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Ana sayfa: Projeler hakkında (admin/home-projects) --- */
.home-projects {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.home-projects-head {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.home-projects-head .section-title {
  margin-bottom: 0.5rem;
}

.home-projects-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.home-projects-empty {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.55;
}

.home-projects-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 720px) {
  .home-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .home-projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  min-width: 0;
}

.home-project-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--border);
}

.home-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-project-media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(184, 79, 255, 0.12), rgba(0, 245, 255, 0.08));
}

.home-project-placeholder-ic {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  opacity: 0.6;
}

.home-project-body-wrap {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}

.home-project-title {
  margin: 0;
  font-size: 1.12rem;
  color: var(--neon-cyan);
}

.home-project-tagline {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.home-project-body {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  flex: 1;
}

.home-project-cta {
  margin: 0.35rem 0 0;
}

/* --- Page hero / About cinematic --- */
.page-hero {
  position: relative;
  padding: 4rem 1.25rem 3rem;
  overflow: hidden;
}

.page-hero.compact {
  padding-top: 2.5rem;
}

.page-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.5rem;
}

.page-intro {
  color: var(--text-muted);
  margin: 0;
  max-width: 560px;
}

.page-hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-hero {
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.rain-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.city-lights {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(61, 157, 255, 0.15), transparent),
    linear-gradient(to top, rgba(6, 4, 12, 0.95), transparent 55%);
  pointer-events: none;
}

.about-content .split {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .about-content .split {
    grid-template-columns: 1fr 1fr;
  }
}

.about-card {
  padding: 1.5rem;
  border-radius: var(--radius);
}

.about-card h2 {
  margin-top: 0;
  color: var(--neon-cyan);
}

.about-card-body {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.98rem;
}

.about-card-cta {
  margin: 1.1rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
}

.about-card-cta a {
  color: var(--neon-cyan);
  font-weight: 600;
}

.about-card-cta a:hover {
  text-decoration: underline;
}

/* --- Portfolio grid --- */
.video-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(184, 79, 255, 0.15);
}

.video-card--twitch {
  border-left: 3px solid #9146ff;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-title {
  margin: 0;
  padding: 1rem 1.15rem 1.25rem;
  font-size: 1rem;
}

.portfolio-section-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 3rem 0 0.35rem;
}

.container > .portfolio-section-title:first-of-type {
  margin-top: 0;
}

.portfolio-section-intro {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.shorts-grid {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .shorts-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

.video-wrap--short {
  padding-bottom: 177.78%;
  max-width: 280px;
  margin: 0 auto;
}

.video-card--short .video-title {
  font-size: 0.9rem;
  padding: 0.75rem 0.5rem 1rem;
  text-align: center;
}

.empty-state {
  padding: 2rem;
  text-align: center;
  border-radius: var(--radius);
  color: var(--text-muted);
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(92, 240, 255, 0.45);
}

.pricing-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.pricing-desc {
  flex: 1;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

.pricing-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--neon-purple);
  margin: 0 0 1rem;
}

.pricing-price .currency {
  font-size: 1rem;
  opacity: 0.8;
  margin-right: 0.15rem;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 880px) {
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.contact-form-card,
.contact-side {
  padding: 1.5rem;
  border-radius: var(--radius);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.field input,
.field textarea {
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font: inherit;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--neon-purple);
  box-shadow: 0 0 0 2px rgba(184, 79, 255, 0.2);
}

.form-status {
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.form-status.is-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
}

.form-status.is-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}

.contact-social-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-social-list li {
  margin-bottom: 0.5rem;
}

.contact-social-list a {
  text-decoration: none;
}

/* --- Auth --- */
.auth-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  max-width: 420px;
  margin: 0 auto;
}

.auth-alt {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Reveal on scroll --- */
[data-reveal],
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-reveal].is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --- Footer --- */
.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  text-align: center;
}

.footer-brand {
  margin: 0 0 1rem;
  font-weight: 600;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.social-chip {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.social-chip:hover {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@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;
  }

  [data-reveal],
  .reveal {
    opacity: 1;
    transform: none;
  }
}
