/* 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.hero-anim-off .hero-canvas,
.hero.hero-anim-off .particles {
  display: none;
}

.hero.hero-anim-soft .hero-glow {
  opacity: 0.62;
  filter: blur(42px);
}

.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: takip / abone / Katıl şeridi (Son içerikler üstü) --- */
.home-follow-strip {
  padding-top: 2.8rem;
  padding-bottom: 0.75rem;
}

.home-follow-strip-head {
  text-align: center;
  margin-bottom: 1.9rem;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.home-follow-strip-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
  padding: 0.24rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(92, 240, 255, 0.35);
  color: #9defff;
  background: rgba(92, 240, 255, 0.1);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.home-follow-strip-title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.home-follow-strip-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.66;
  color: var(--text-muted);
}

.home-follow-strip-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.05rem;
  align-items: stretch;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 760px) {
  .home-follow-strip-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .home-follow-strip-groups {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.home-follow-strip-groups--1 {
  max-width: 23rem;
}

.home-follow-strip-groups--2 {
  max-width: 44rem;
}

.home-follow-strip-groups--3 {
  max-width: 66rem;
}

.home-follow-group {
  position: relative;
  overflow: hidden;
  padding: 1.05rem 1.05rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: 0 16px 42px rgba(3, 6, 16, 0.45);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  text-align: center;
}

.home-follow-group::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -12%;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.home-follow-group::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid transparent;
}

.home-follow-group:hover {
  transform: translateY(-4px);
  border-color: rgba(92, 240, 255, 0.34);
  box-shadow: 0 18px 44px rgba(3, 6, 16, 0.55);
}

.home-follow-group-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.home-follow-group-label--stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.home-follow-group-avatar {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.44);
  box-shadow: 0 8px 18px rgba(6, 10, 22, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.home-follow-platform-name {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.home-follow-group--youtube .home-follow-group-label {
  color: rgba(255, 120, 120, 0.95);
}

.home-follow-group--youtube::after {
  border-color: rgba(255, 92, 92, 0.25);
}

.home-follow-group--twitch .home-follow-group-label {
  color: rgba(180, 140, 255, 0.95);
}

.home-follow-group--twitch::after {
  border-color: rgba(169, 112, 255, 0.25);
}

.home-follow-group--kick .home-follow-group-label {
  color: rgba(120, 220, 140, 0.95);
}

.home-follow-group--kick::after {
  border-color: rgba(83, 252, 24, 0.22);
}

.home-follow-group-meta {
  margin: -0.05rem 0 0.2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 26ch;
}

.home-follow-group-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  width: 100%;
}

.home-follow-group-actions .btn {
  min-width: 7.25rem;
  flex: 1 1 42%;
  box-shadow: 0 8px 20px rgba(8, 12, 26, 0.35);
}

.home-follow-toast {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%) translateY(12px);
  z-index: 120;
  max-width: min(92vw, 520px);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(132, 202, 255, 0.4);
  background: linear-gradient(105deg, rgba(35, 119, 235, 0.88), rgba(40, 185, 208, 0.86));
  color: #f4fdff;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 14px 34px rgba(4, 24, 52, 0.45);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.home-follow-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* --- Ana sayfa: İş birlikleri / Sponsorlar --- */
.home-sponsors {
  padding-top: 2.2rem;
  padding-bottom: 2.4rem;
}

.home-sponsors-head {
  text-align: center;
  margin-bottom: 1.15rem;
}

.home-sponsors-lead {
  margin: 0.45rem auto 0;
  max-width: 56rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.home-sponsors-empty {
  text-align: center;
}

.home-sponsors-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.home-sponsors-track {
  display: flex;
  align-items: stretch;
  gap: 0.8rem;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.home-sponsors-track.is-loop {
  width: max-content;
  flex-wrap: nowrap;
  justify-content: flex-start;
  animation: homeSponsorsLeft 38s linear infinite;
}

.home-sponsors-track.is-loop:hover {
  animation-play-state: paused;
}

.home-newsletter {
  padding-top: 0.6rem;
  padding-bottom: 2.8rem;
}

.home-newsletter-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.15rem 1.1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.home-inline-contact {
  padding-top: 0.25rem;
  padding-bottom: 2.8rem;
}

.home-inline-contact-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.15rem 1.1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.home-inline-contact-lead {
  margin: 0 0 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.home-newsletter-card .section-title {
  margin-bottom: 0.35rem;
}

.home-newsletter-lead {
  margin: 0 0 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.home-newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
}

.home-newsletter-form--contact {
  grid-template-columns: 1fr;
}

.home-newsletter-form input[type="email"] {
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 18, 37, 0.6);
  color: var(--text);
  padding: 0.6rem 0.75rem;
}

.home-newsletter-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.home-newsletter-contact-grid .field {
  margin: 0;
}

.home-newsletter-contact-grid-full {
  grid-column: 1 / -1;
}

.home-newsletter-contact-grid textarea {
  min-height: 110px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 18, 37, 0.6);
  color: var(--text);
  padding: 0.65rem 0.75rem;
  resize: vertical;
}

@media (max-width: 640px) {
  .home-newsletter-form {
    grid-template-columns: 1fr;
  }
  .home-newsletter-contact-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes homeSponsorsLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.home-sponsor-item {
  width: 220px;
  min-height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.75rem 0.8rem 0.85rem;
  border-radius: 14px;
}

.home-sponsor-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.home-sponsor-logo-wrap {
  width: 78px;
  height: 78px;
  margin: 0 auto 0.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 8px 16px rgba(5, 10, 22, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-sponsor-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.home-sponsor-logo-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
}

.home-sponsor-name {
  margin: 0;
  text-align: center;
  font-size: 0.92rem;
}

.home-sponsor-note {
  margin: 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
  .home-sponsors-track.is-loop {
    animation: none;
  }
}

/* --- Ana sayfa: son içerik (kanal başına 2 + Twitch 2 klip) --- */
.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;
}

/* YouTube / Twitch / Shorts — ayrı bloklar */
.home-video-sections {
  display: flex;
  flex-direction: column;
  gap: 2.85rem;
  max-width: min(72rem, 100%);
  margin: 0 auto;
}

.home-video-pillar {
  min-width: 0;
}

.home-video-pillar-head {
  margin-bottom: 1.1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .home-video-pillar-head {
    text-align: left;
  }
}

.home-video-pillar-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 0 0 0.4rem;
  font-size: clamp(1.3rem, 3.2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1.2;
}

@media (min-width: 640px) {
  .home-video-pillar-title {
    justify-content: flex-start;
  }
}

.home-video-pillar-desc {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.home-video-pillar--youtube .home-video-pillar-title {
  text-shadow: 0 0 28px rgba(255, 60, 60, 0.2);
}

.home-video-pillar--twitch .home-video-pillar-title {
  color: #e9deff;
  text-shadow: 0 0 24px rgba(145, 70, 255, 0.35);
}

.home-video-pillar-name--shorts {
  background: linear-gradient(90deg, #ff5c9a, #ff7a3d, var(--neon-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Platform rozetleri (dekoratif) */
.home-video-pillar-icon {
  display: block;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 11px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.home-video-pillar-icon--youtube {
  background: linear-gradient(145deg, #ff4040, #b80000);
}

.home-video-pillar-icon--youtube::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-36%, -50%);
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.home-video-pillar-icon--twitch {
  background: linear-gradient(145deg, #a970ff, #5c16c5);
}

.home-video-pillar-icon--twitch::after {
  content: "";
  position: absolute;
  inset: 7px 6px 6px 7px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  border-bottom-width: 4px;
}

.home-video-pillar-icon--shorts {
  background: linear-gradient(145deg, #ff2d6a, #ff6b2c);
}

.home-video-pillar-icon--shorts::before,
.home-video-pillar-icon--shorts::after {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  width: 5px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
}

.home-video-pillar-icon--shorts::before {
  left: 8px;
}

.home-video-pillar-icon--shorts::after {
  right: 8px;
}

.home-video-pillar-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
  width: 100%;
}

@media (min-width: 720px) {
  .home-video-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

.home-video-pillar-grid--shorts {
  max-width: min(520px, 100%);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 520px) {
  .home-video-pillar-grid--shorts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: min(680px, 100%);
  }
}

.home-video-pillar-card {
  max-width: 100%;
  margin: 0 auto;
}

.home-video-pillar--youtube .home-video-pillar-card,
.home-video-pillar--twitch .home-video-pillar-card {
  width: 100%;
}

/* Başlık: tam metin, taşma kırpılmaz */
.home-video-item-title {
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  font-weight: 600;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
  white-space: normal;
  padding: 1rem 1.2rem 1.2rem;
  margin: 0;
}

.home-video-pillar-card--short {
  max-width: min(360px, 100%);
}

.home-video-pillar-card--short .home-video-item-title {
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Ana sayfa short başlığı: genel .video-card--short .video-title küçük punto ezmeyi */
.home-latest .video-card--short .home-video-item-title {
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  line-height: 1.5;
}

/* Short önizleme (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;
  }
}

/* --- 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;
}

.pricing-grid--wide {
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .pricing-grid--wide {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .pricing-grid--wide {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card .pricing-desc {
  margin-bottom: 1rem;
}

.service-card-image-wrap {
  margin: 0 0 0.9rem;
}

.service-card-image {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.service-feature-list {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}

.service-feature-list li {
  margin-bottom: 0.25rem;
}

.service-plan-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.service-plan-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.service-plan-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.service-plan-name {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--neon-cyan);
}

.service-plan-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neon-purple);
}

.service-plan-suffix {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.75;
  margin-left: 0.2rem;
}

.service-plan-form {
  margin: 0;
  flex-shrink: 0;
}

.service-no-price {
  margin: 0 0 1rem;
}

.service-detail-block {
  margin: 0 0 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 0.5rem 0.85rem;
  background: rgba(0, 0, 0, 0.2);
}

.service-detail-block summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-muted);
}

.service-detail-body {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.service-card-footer {
  margin: 0;
  margin-top: auto;
  padding-top: 0.5rem;
}

.nav-cart-badge {
  font-size: 0.88rem;
  color: var(--neon-cyan);
}

.nav-cart-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  padding: 0.1rem 0.35rem;
  margin-left: 0.25rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(184, 79, 255, 0.25);
  border: 1px solid rgba(184, 79, 255, 0.45);
}

.service-cart-section {
  padding-top: 0.5rem;
}

.service-cart-card {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
}

.service-cart-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.service-cart-line {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.service-cart-line:last-child {
  border-bottom: none;
}

.service-cart-line-main {
  min-width: 0;
}

.service-cart-line-main .muted {
  display: block;
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

.service-cart-line-price {
  font-weight: 700;
  color: var(--neon-purple);
  white-space: nowrap;
}

.service-cart-remove-form {
  margin: 0;
}

.service-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 0;
  margin-bottom: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 1.1rem;
}

.service-cart-note {
  margin: 0 0 1rem;
}

.service-cart-breakdown {
  margin: 0.35rem 0 0.8rem;
  display: grid;
  gap: 0.25rem;
}

.service-cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.checkout-section .checkout-form {
  padding: 1.5rem;
  border-radius: var(--radius);
}

.checkout-form-title {
  font-size: 1.1rem;
  margin: 1.25rem 0 0.75rem;
}

.checkout-form-title:first-child {
  margin-top: 0;
}

.checkout-pay-methods {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.checkout-pay-option {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.95rem;
}

.checkout-pay-option input {
  margin-top: 0.2rem;
}

.checkout-form-actions {
  margin-top: 1.25rem;
}

.checkout-cost-summary {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.25rem;
}

.checkout-after-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* —— Müşteri paneli (birleşik kabuk) —— */
.customer-dashboard-section {
  padding-top: 0.35rem;
  padding-bottom: 2.5rem;
}

.customer-shell {
  position: relative;
  border-radius: var(--radius);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  background: linear-gradient(
    155deg,
    rgba(22, 14, 40, 0.92) 0%,
    rgba(12, 8, 24, 0.96) 45%,
    rgba(8, 18, 48, 0.85) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(184, 140, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 28px 80px rgba(0, 0, 0, 0.55),
    0 0 100px rgba(92, 240, 255, 0.04);
  overflow: hidden;
}

.customer-shell::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon-purple),
    var(--neon-cyan),
    var(--neon-blue),
    transparent
  );
  opacity: 0.65;
  pointer-events: none;
}

.customer-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(184, 79, 255, 0.12), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(61, 157, 255, 0.1), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.customer-shell > * {
  position: relative;
  z-index: 1;
}

.customer-shell .glass {
  background: rgba(10, 12, 28, 0.55);
  border-color: rgba(184, 140, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 12px 32px rgba(0, 0, 0, 0.35);
}

.customer-dashboard {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.customer-welcome {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem 1.5rem;
  padding: 1.35rem 1.4rem;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(
    125deg,
    rgba(184, 79, 255, 0.09) 0%,
    rgba(8, 18, 48, 0.35) 55%,
    rgba(0, 0, 0, 0.15) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.customer-welcome-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--neon-cyan);
  background: linear-gradient(145deg, rgba(184, 79, 255, 0.35), rgba(61, 157, 255, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 24px rgba(92, 240, 255, 0.12);
}

.customer-welcome-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.customer-welcome-name {
  margin: 0.15rem 0 0;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .customer-welcome-name {
    background: linear-gradient(90deg, var(--text) 0%, #e0d8ff 50%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.customer-welcome-email {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
}

.customer-welcome-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.customer-stat-pill {
  min-width: 5.2rem;
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(184, 140, 255, 0.12);
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.customer-stat-pill:hover {
  border-color: rgba(92, 240, 255, 0.2);
  box-shadow: 0 0 20px rgba(92, 240, 255, 0.06);
}

.customer-stat-pill.is-complete {
  border-color: rgba(0, 255, 180, 0.35);
  background: rgba(0, 255, 180, 0.05);
}

.customer-stat-pill__value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neon-cyan);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.customer-stat-pill.is-complete .customer-stat-pill__value {
  color: #5fe0b8;
}

.customer-stat-pill__label {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.customer-notice-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.customer-notice {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.92rem;
  border: 1px solid transparent;
  backdrop-filter: blur(8px);
}

.customer-notice--success {
  background: rgba(0, 200, 140, 0.1);
  border-color: rgba(0, 200, 140, 0.28);
  color: #b8f5e0;
}

.customer-notice--error {
  background: rgba(255, 80, 100, 0.1);
  border-color: rgba(255, 80, 100, 0.35);
  color: #ffc9d0;
}

.customer-hosting-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  padding: 1.1rem 1.25rem;
  align-items: start;
  border-radius: var(--radius);
  border: 1px solid transparent;
  backdrop-filter: blur(10px);
}

.customer-hosting-banner.is-ok {
  border-color: rgba(0, 220, 160, 0.22);
  background: linear-gradient(
    115deg,
    rgba(0, 220, 160, 0.1) 0%,
    rgba(12, 24, 40, 0.5) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.customer-hosting-banner.is-warn {
  border-color: rgba(255, 180, 80, 0.28);
  background: linear-gradient(
    115deg,
    rgba(255, 180, 80, 0.12) 0%,
    rgba(32, 18, 12, 0.45) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.customer-hosting-banner__icon {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--neon-cyan);
  opacity: 0.9;
}

.customer-hosting-banner.is-warn .customer-hosting-banner__icon {
  color: #ffc46b;
}

.customer-hosting-banner__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.customer-hosting-banner__body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.customer-hosting-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.customer-hosting-tags li {
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(184, 140, 255, 0.22);
  color: rgba(232, 228, 245, 0.75);
}

.customer-panel-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  align-items: start;
}

.customer-sidebar {
  padding: 1.2rem 1.2rem;
  position: sticky;
  top: 1rem;
  border-radius: var(--radius);
}

.customer-sidebar-title {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.customer-progress-ring {
  --p: 0;
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: conic-gradient(
    var(--neon-cyan) calc(var(--p) * 1%),
    rgba(255, 255, 255, 0.08) 0
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.customer-progress-ring::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: rgba(10, 12, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.customer-progress-ring__label {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neon-cyan);
  font-variant-numeric: tabular-nums;
}

.customer-sidebar-hint {
  text-align: center;
  margin: 0 0 1rem;
}

.customer-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.customer-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.customer-checklist li.is-done {
  color: rgba(255, 255, 255, 0.92);
}

.customer-checklist__mark {
  flex-shrink: 0;
  width: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

.customer-checklist li.is-done .customer-checklist__mark {
  color: #5fe0b8;
}

.customer-panel-main {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.customer-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(184, 140, 255, 0.12);
}

.customer-card-head--row {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.customer-card-head__step {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neon-cyan);
  background: linear-gradient(145deg, rgba(184, 79, 255, 0.35), rgba(61, 157, 255, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.customer-card-head__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.customer-card-head__desc {
  margin: 0.25rem 0 0;
}

.customer-orders-count {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 140, 255, 0.22);
  background: rgba(0, 0, 0, 0.25);
}

.customer-form-card {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
}

.customer-profile-form .field input,
.customer-profile-form .field textarea {
  border-radius: 0.65rem;
  border-color: rgba(184, 140, 255, 0.18);
  background: rgba(0, 0, 0, 0.38);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.customer-profile-form .field input:focus,
.customer-profile-form .field textarea:focus {
  border-color: rgba(92, 240, 255, 0.45);
  box-shadow: 0 0 0 2px rgba(184, 79, 255, 0.2);
}

.customer-profile-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.customer-form-section {
  padding-top: 0.25rem;
}

.customer-form-section + .customer-form-section {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(184, 140, 255, 0.08);
}

.customer-form-section__title {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 228, 245, 0.75);
}

.customer-form-section__hint {
  margin: -0.35rem 0 0.65rem;
}

.customer-form-section__grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customer-form-actions {
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(184, 140, 255, 0.08);
}

.customer-orders-card {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
}

.customer-empty-state {
  text-align: center;
  padding: 2rem 1rem 1.5rem;
}

.customer-empty-state__icon {
  font-size: 2rem;
  opacity: 0.35;
  margin-bottom: 0.5rem;
}

.customer-empty-state__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.customer-empty-state__text {
  margin: 0 0 1rem;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9rem;
  line-height: 1.45;
}

.customer-inline-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customer-orders-wrap {
  overflow-x: auto;
  margin: 0 -0.25rem;
  padding: 0 0.25rem;
  border-radius: 10px;
}

.customer-orders-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
}

.customer-orders-table th,
.customer-orders-table td {
  padding: 0.7rem 0.55rem;
  border-bottom: 1px solid rgba(184, 140, 255, 0.1);
  text-align: left;
  font-size: 0.88rem;
  vertical-align: middle;
}

.customer-orders-table th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.customer-orders-table tbody tr:hover td {
  background: rgba(184, 79, 255, 0.06);
}

.customer-orders-table__date {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.75);
  font-variant-numeric: tabular-nums;
}

.customer-orders-table__amount {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.customer-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.customer-status-badge--paid {
  color: #8ef5d0;
  background: rgba(0, 200, 140, 0.15);
  border-color: rgba(0, 200, 140, 0.35);
}

.customer-status-badge--pending {
  color: #ffd28a;
  background: rgba(255, 180, 80, 0.12);
  border-color: rgba(255, 180, 80, 0.35);
}

.customer-status-badge--awaiting {
  color: #a8d4ff;
  background: rgba(80, 160, 255, 0.12);
  border-color: rgba(80, 160, 255, 0.3);
}

.customer-status-badge--failed {
  color: #ffb4bc;
  background: rgba(255, 80, 100, 0.12);
  border-color: rgba(255, 80, 100, 0.35);
}

.customer-status-badge--cancelled {
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.customer-status-badge--neutral {
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.08);
}

.customer-orders-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.customer-order-block {
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(184, 140, 255, 0.12);
}

.customer-order-block__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.customer-order-block__date {
  display: block;
  margin-top: 0.25rem;
}

.customer-order-block__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.88rem;
}

.customer-order-block__pay {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.customer-order-block__total {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.customer-order-lines-wrap {
  overflow-x: auto;
  margin-bottom: 0.75rem;
}

.customer-order-lines {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
  font-size: 0.85rem;
}

.customer-order-lines th,
.customer-order-lines td {
  padding: 0.45rem 0.35rem;
  border-bottom: 1px solid rgba(184, 140, 255, 0.08);
  text-align: left;
}

.customer-order-lines th {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.customer-order-hosting {
  margin-top: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(184, 140, 255, 0.18);
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.9rem;
}

.customer-order-hosting__title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--neon-cyan);
}

.customer-order-hosting__body,
.customer-order-hosting__msg {
  margin: 0;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.customer-order-hosting__dl {
  margin: 0 0 0.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  font-size: 0.9rem;
}

.customer-order-hosting__dl dt {
  margin: 0;
  color: var(--text-muted);
  font-weight: 600;
}

.customer-order-hosting__dl dd {
  margin: 0;
}

.customer-order-hosting--payment .customer-order-hosting__title,
.customer-order-hosting--provisioning .customer-order-hosting__title {
  color: #ffc46b;
}

.customer-order-hosting--suspended .customer-order-hosting__title {
  color: #ff8f8f;
}

.customer-order-hosting--active .customer-order-hosting__title {
  color: #5fe0b8;
}

.payment-ref-code {
  font-size: 0.95rem;
  word-break: break-all;
  padding: 0.2rem 0.4rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.35);
}

.payment-summary-card {
  padding: 0.9rem 1rem;
  margin-bottom: 0.8rem;
}

.payment-summary-card p {
  margin: 0 0 0.35rem;
}

.payment-summary-card p:last-child {
  margin-bottom: 0;
}

.payment-havale-items {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.payment-havale-extra {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 520px) {
  .service-cart-line {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .customer-panel-grid {
    grid-template-columns: 1fr;
  }

  .customer-sidebar {
    position: static;
  }

  .customer-welcome {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .customer-welcome-stats {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .customer-inline-grid,
  .customer-form-section__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .customer-welcome {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .customer-welcome-avatar {
    margin: 0 auto;
  }

  .customer-welcome-stats {
    justify-content: center;
  }
}

.service-breadcrumb {
  margin: 0 0 0.75rem;
}

.service-breadcrumb a {
  color: var(--neon-cyan);
}

.service-category-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .service-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .service-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-category-card {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-category-card-title {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  color: var(--neon-cyan);
}

.service-category-card-excerpt {
  flex: 1;
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-category-card-meta {
  margin: 0 0 1rem;
}

.service-cat-overview-title {
  margin-bottom: 0.25rem;
}

/* --- Ana sayfa: hizmet kategorileri --- */
.home-service-categories {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}

.home-service-cat-head {
  text-align: center;
  margin-bottom: 1.75rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.home-service-cat-head .section-title {
  margin-bottom: 0.5rem;
}

.home-service-cat-lead {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.home-service-cat-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .home-service-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .home-service-cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-service-cat-card {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.home-service-cat-card-title {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
  color: var(--neon-cyan);
}

.home-service-cat-card-excerpt {
  flex: 1;
  margin: 0 0 0.65rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.home-service-cat-card-meta {
  margin: 0 0 0.85rem;
}

/* --- 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);
}

.contact-form-card {
  position: relative;
}

.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-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--neon-cyan);
}

.footer-legal-sep {
  opacity: 0.45;
}

.footer-cookies-hint {
  margin: 0.5rem 0 0;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.legal-card .section-title {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.legal-card .section-title:first-of-type {
  margin-top: 0;
}

.legal-card ul {
  text-align: left;
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.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;
  }
}
