:root {
  --bg: #050606;
  --bg-2: #0d0f10;
  --panel: #111314;
  --panel-2: #191b1d;
  --line: #34383a;
  --line-soft: rgba(255, 255, 255, 0.16);
  --text: #f7fbff;
  --muted: #8b8f93;
  --soft: #c6c9ca;
  --blue: #69a7ff;
  --blue-2: #2f6df6;
  --cyan: #2ee8c7;
  --purple: #b38cff;
  --gold: #ffd166;
  --silver: #d7d9da;
  --smoke: #6d7477;
  --radius: 14px;
  --cursor-x: 50vw;
  --cursor-y: 50vh;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.12), transparent 410px),
    radial-gradient(circle at 12% 88%, rgba(137, 143, 146, 0.14), transparent 380px),
    linear-gradient(180deg, #030404 0%, #090b0c 48%, #050606 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 0;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.075) 26%, transparent 66%);
  filter: blur(18px);
  mix-blend-mode: screen;
  transform: translate3d(calc(var(--cursor-x) - 230px), calc(var(--cursor-y) - 230px), 0);
  transition: opacity 220ms ease;
  will-change: transform, opacity;
}

.cursor-glow.is-active {
  opacity: 1;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

body::before,
body::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

body::before {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1.7px),
    radial-gradient(circle, rgba(255, 255, 255, 0.11) 1px, transparent 1.8px);
  background-position: 0 0, 80px 120px;
  background-size: 160px 160px, 240px 240px;
  opacity: 0.38;
}

body::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

body::before {
  animation: star-drift 22s linear infinite;
}

body::after {
  animation: grid-drift 30s linear infinite;
}

html::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

html::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

html::before {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.46) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(46, 232, 199, 0.34) 0 1.1px, transparent 1.9px),
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 0 1.2px, transparent 2px);
  background-position: 18px 36px, 148px 82px, 74px 164px;
  background-size: 210px 210px, 320px 320px, 460px 460px;
  opacity: 0.34;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.18));
  animation: particle-float 34s linear infinite;
}

html::after {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.13), transparent 2px),
    radial-gradient(circle at 62% 18%, rgba(255, 255, 255, 0.12), transparent 2px),
    radial-gradient(circle at 78% 62%, rgba(46, 232, 199, 0.14), transparent 2.4px),
    radial-gradient(circle at 32% 74%, rgba(255, 255, 255, 0.1), transparent 2px);
  background-size: 520px 520px;
  opacity: 0.42;
  animation: particle-sway 18s ease-in-out infinite alternate;
}

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

button {
  font: inherit;
}

.shell {
  width: min(1216px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 6, 6, 0.82);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 66px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  width: max-content;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  margin-bottom: 16px;
  width: 76px;
  height: 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: brightness(0.58) contrast(1.05) saturate(0.82);
  opacity: 0.92;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  padding: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 180ms ease;
}

.lang-btn:hover {
  color: var(--text);
}

.lang-btn.active {
  background: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(20, 21, 22, 0.92);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: 100%;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 22px;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.15;
  text-align: center;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  border-color: rgba(46, 232, 199, 0.62);
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  color: #03100f;
  box-shadow: 0 16px 36px rgba(46, 232, 199, 0.18), 0 8px 28px rgba(47, 109, 246, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(46, 232, 199, 0.24), 0 10px 32px rgba(47, 109, 246, 0.22);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  color: #eef4f5;
}

.btn-secondary:hover {
  border-color: rgba(46, 232, 199, 0.48);
  background: rgba(46, 232, 199, 0.1);
  color: var(--text);
}

.nav-btn {
  min-height: 38px;
  border-radius: 14px;
  padding-inline: 20px;
}

.badge {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #d7d9da;
  padding: 7px 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.badge.small {
  margin-bottom: 24px;
}

.badge i.badge-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}

.hero {
  min-height: calc(100vh - 66px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.86fr);
  align-items: center;
  gap: 70px;
  padding: 84px 0 76px;
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 30px 0 26px;
  font-size: clamp(58px, 7vw, 96px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 span,
.page-hero h1 {
  background: linear-gradient(100deg, #ffffff 0%, #b9fff1 42%, #78aaff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 560px;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 28px;
}

.hero-stats {
  max-width: 590px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(46, 232, 199, 0.22);
}

.hero-stats div {
  min-width: 0;
}

.hero-stats strong {
  display: block;
  color: var(--text);
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: #8da0a5;
  font-size: 12px;
}

.hero-art {
  position: relative;
  min-height: 500px;
}

.brand-slab {
  position: absolute;
  inset: 36px -18px 18px auto;
  width: min(92%, 470px);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.72)),
    url("../img/logo-wall.png") center / cover no-repeat;
  opacity: 0.28;
  filter: brightness(0.42) contrast(1.05) saturate(0.72);
  pointer-events: none;
  mask-image: radial-gradient(circle at 58% 50%, black 0%, transparent 72%);
}

img[src*="logo-wall"] {
  filter: brightness(0.42) contrast(1.05) saturate(0.72);
  opacity: 0.8;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(46, 232, 199, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero-art::before {
  width: 390px;
  height: 390px;
  right: -54px;
  bottom: -56px;
}

.hero-art::after {
  width: 286px;
  height: 286px;
  right: 12px;
  bottom: 12px;
}

.avatar-frame {
  position: absolute;
  right: 12px;
  top: 92px;
  width: min(74%, 360px);
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(35, 38, 40, 0.84), rgba(5, 6, 6, 0.92));
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.avatar-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.42) 1px, transparent 1.4px);
  background-size: 36px 36px;
  opacity: 0.22;
}

.avatar-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
  pointer-events: none;
}

.avatar-photo {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 1;
  width: 106%;
  height: 106%;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%);
  filter: grayscale(0.2) contrast(1.08) drop-shadow(0 0 26px rgba(255, 255, 255, 0.12));
}

.available-pill {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 4;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 32px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(3, 8, 9, 0.22);
  color: #f1f1f1;
  padding: 7px 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px) saturate(1.3);
  animation: floaty-pill 5.2s ease-in-out infinite;
}

.code-chip,
.metric-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 10, 11, 0.2);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px) saturate(1.28);
  animation: floaty 6s ease-in-out infinite;
}

.metric-card {
  border-radius: 17px;
  padding: 15px 18px;
}

.metric-card strong {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.metric-card span {
  display: block;
  margin-top: 7px;
  color: #9ba7ab;
  font-size: 12px;
}

.metric-top {
  right: 0;
  top: 252px;
  animation-duration: 5.6s;
  animation-delay: 0.2s;
}

.metric-bottom {
  left: 12px;
  bottom: 78px;
  animation-duration: 7.4s;
  animation-delay: 1s;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes floaty-pill {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

.ticker {
  border-top: 1px solid rgba(46, 232, 199, 0.18);
  border-bottom: 1px solid rgba(46, 232, 199, 0.18);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 80px;
  padding: 12px 0;
  color: #91a5a8;
  font-size: 13px;
  animation: ticker 120s linear infinite;
}

.ticker-track span {
  position: relative;
  font-weight: 700;
}

.ticker-track span::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes star-drift {
  to {
    background-position: 160px 160px, 320px 360px;
  }
}

@keyframes grid-drift {
  to {
    background-position: 80px 80px, 80px 80px;
  }
}

@keyframes particle-float {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.28;
  }

  50% {
    transform: translate3d(-22px, 28px, 0);
    opacity: 0.42;
  }

  100% {
    transform: translate3d(-44px, 56px, 0);
    opacity: 0.28;
  }
}

@keyframes particle-sway {
  from {
    transform: translate3d(-14px, -10px, 0) scale(1);
  }

  to {
    transform: translate3d(18px, 20px, 0) scale(1.04);
  }
}

section {
  padding: 108px 0;
  border-bottom: 1px solid rgba(46, 232, 199, 0.14);
}

.section-head {
  max-width: 620px;
  margin-bottom: 64px;
}

.section-head h2,
.about-panel h2,
.split-copy h2,
.contact-panel h2,
.cta h2 {
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 900;
}

.section-head p,
.about-panel p,
.split-copy p,
.contact-panel p,
.cta p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.info-card {
  min-height: 254px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(6, 10, 13, 0.96);
  padding: 32px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(46, 232, 199, 0.48);
  background: rgba(7, 15, 17, 0.98);
  box-shadow: 0 24px 60px rgba(46, 232, 199, 0.08), 0 18px 44px rgba(0, 0, 0, 0.24);
}

.icon-box {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(46, 232, 199, 0.46);
  border-radius: 10px;
  background: rgba(46, 232, 199, 0.14);
  color: var(--cyan);
  box-shadow: inset 0 0 24px rgba(46, 232, 199, 0.08);
}

.icon-box svg,
.contact-icon svg,
.play-indicator svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-box.cyan {
  border-color: rgba(105, 167, 255, 0.44);
  background: rgba(105, 167, 255, 0.14);
  color: var(--blue);
}

.icon-box.purple {
  border-color: rgba(179, 140, 255, 0.42);
  background: rgba(179, 140, 255, 0.14);
  color: var(--purple);
}

.info-card h3 {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.info-card p {
  color: var(--muted);
  font-size: 15px;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 54px;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 16%, rgba(45, 104, 240, 0.16), transparent 290px),
    rgba(8, 17, 33, 0.76);
  padding: 46px;
}

/* ── About Grid Layout ── */
.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.about-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-top: 60px;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.image-panel,
.contact-visual {
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: #050606;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
  width: 100%;
}

.image-panel {
  min-height: 340px;
}

.image-panel::after,
.contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.48)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09), transparent 28%);
  pointer-events: none;
}

.image-panel img,
.contact-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 50px;
  padding: 0;
  justify-content: center;
}

.about-stat {
  min-width: 0;
  text-align: center;
  position: relative;
}

.about-stat:not(:last-child)::after {
  display: none;
}

.about-stat strong {
  display: block;
  color: #a8d4ff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.about-stat > span:last-child {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.split-copy {
  padding: 18px 0;
}

.about-right .about-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-list {
  display: grid;
  gap: 14px;
}

.about-list div {
  min-width: 0;
  border: 1px solid rgba(46, 232, 199, 0.2);
  border-radius: 12px;
  background: rgba(5, 13, 14, 0.68);
  padding: 18px;
}

.about-list span {
  display: block;
  color: var(--cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.about-list strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.cta {
  text-align: left;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.contact-profile-card,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(6, 10, 13, 0.96);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  min-width: 0;
}

.contact-profile-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.profile-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile-avatar-frame {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 10, 11, 0.22);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.profile-avatar-frame img {
  width: 100%;
  height: 100%;
  border-radius: 13px;
  object-fit: cover;
}

.status-glow-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--cyan);
  border: 2px solid #060a0d;
  box-shadow: 0 0 10px var(--cyan);
  z-index: 2;
}

.profile-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile-meta strong {
  font-size: 19px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
}

.status-text {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--cyan);
  line-height: 1;
}

.profile-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 12px;
}

.detail-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.detail-label {
  font-size: 11px;
  font-weight: 900;
  color: #667186;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.profile-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.socials-title {
  font-size: 11px;
  font-weight: 900;
  color: #667186;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.social-btn {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
  padding: 0;
  text-decoration: none;
}

.social-btn svg,
.social-btn img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.social-btn svg {
  fill: currentColor;
}

.social-btn:hover {
  border-color: rgba(46, 232, 199, 0.46);
  background: rgba(46, 232, 199, 0.1);
  color: var(--text);
}

.social-btn.is-copied {
  border-color: rgba(46, 232, 199, 0.5);
  background: rgba(46, 232, 199, 0.12);
  color: var(--cyan);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 16px;
  padding: 32px;
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form .wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(1, 4, 9, 0.9);
  color: var(--text);
  padding: 0 16px;
  font: inherit;
  min-width: 0;
  outline: none;
}

.contact-form input {
  height: 50px;
}

.contact-form textarea {
  min-height: 162px;
  resize: vertical;
  padding-top: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6f7b91;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(46, 232, 199, 0.52);
}

.contact-form .btn {
  width: 100%;
  min-height: 48px;
}

.contact-form .btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-status {
  grid-column: 1 / -1;
  font-size: 13px;
  font-weight: 600;
  min-height: 18px;
}

.form-status.is-success {
  color: var(--cyan);
}

.form-status.is-error {
  color: #ff6b6b;
}

.site-footer {
  padding: 58px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 6, 6, 0.92);
  backdrop-filter: blur(16px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 42px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid p {
  max-width: 250px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid nav,
.footer-grid>div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-grid strong {
  color: var(--cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.footer-grid a:not(.brand):not(.btn) {
  color: var(--muted);
  font-size: 14px;
}

.footer-btn {
  width: max-content;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-socials>a,
.footer-socials>button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--soft);
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.footer-socials>a:hover,
.footer-socials>button:hover {
  border-color: rgba(46, 232, 199, 0.46);
  background: rgba(46, 232, 199, 0.1);
  color: var(--text);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 19px;
  height: 19px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 32px;
  color: #53627a;
  font-size: 13px;
}

.page-hero {
  padding: 86px 0 54px;
  border-bottom: 0;
}

.page-hero h1 {
  margin-bottom: 18px;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
}

.projects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 32px;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(6, 10, 13, 0.94);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(46, 232, 199, 0.46);
  box-shadow: 0 24px 60px rgba(46, 232, 199, 0.08), 0 18px 44px rgba(0, 0, 0, 0.24);
}

.project-media {
  position: relative;
  aspect-ratio: 1078 / 540;
  overflow: hidden;
  border-bottom: 1px solid rgba(46, 232, 199, 0.16);
  background:
    radial-gradient(circle at 50% 50%, rgba(46, 232, 199, 0.08), transparent 70%),
    linear-gradient(135deg, rgba(8, 12, 14, 0.98), rgba(4, 5, 6, 0.98));
}

.project-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 180ms ease, transform 300ms ease;
}

.project-card.has-video .project-media video {
  opacity: 1;
}

.project-card.has-video:hover .project-media video {
  transform: scale(1);
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
  color: var(--soft);
  min-width: 0;
}

.project-card.has-video .video-placeholder {
  opacity: 0;
}

.video-placeholder span {
  color: var(--cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.video-placeholder strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.project-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  max-width: calc(100% - 32px);
  border: 1px solid rgba(46, 232, 199, 0.48);
  border-radius: 999px;
  background: rgba(12, 70, 66, 0.68);
  color: #9effef;
  padding: 7px 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.project-tag.cyan {
  border-color: rgba(105, 167, 255, 0.46);
  color: #c8ddff;
  background: rgba(31, 74, 132, 0.58);
}

.project-tag.purple {
  border-color: rgba(179, 140, 255, 0.46);
  color: #d8c8ff;
  background: rgba(68, 48, 116, 0.58);
}

.play-indicator {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(46, 232, 199, 0.42);
  border-radius: 999px;
  background: rgba(8, 13, 14, 0.76);
  color: var(--cyan);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
}

.play-indicator svg {
  width: 24px;
  height: 24px;
  margin-left: 2px;
  fill: currentColor;
  stroke: none;
}

.project-body {
  padding: 24px;
}

.project-body h2 {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 9px;
  overflow-wrap: anywhere;
}

.project-body p {
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.reveal {
  opacity: 0;
  filter: blur(12px);
  transform: translate3d(0, 42px, 0) scale(0.98);
  transition:
    opacity 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.reveal.reveal-left {
  transform: translate3d(-46px, 28px, 0) scale(0.98);
}

.reveal.reveal-right {
  transform: translate3d(46px, 28px, 0) scale(0.98);
}

.reveal.reveal-zoom {
  transform: translate3d(0, 24px, 0) scale(0.94);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .cursor-glow {
    display: none;
  }

  html::before,
  html::after,
  body::before,
  body::after {
    animation: none !important;
  }

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

@media (max-width: 1040px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(8, 9, 9, 0.98);
    overflow: hidden;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 15px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 42px;
  }

  .hero-art {
    min-height: 520px;
    max-width: 620px;
  }

  .about-panel {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .about-left {
    padding-top: 0;
  }

  .about-right .about-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-stats {
    gap: 24px;
  }

  .projects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 32px, 1216px);
  }

  .lang-pill,
  .nav-btn {
    display: none;
  }

  .hero {
    padding-top: 56px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .lead {
    font-size: 16px;
  }

  .hero-stats,
  .service-grid,
  .projects,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stats div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: baseline;
  }

  .hero-art {
    min-height: 470px;
  }

  .avatar-frame {
    right: 0;
    top: 104px;
    width: 88%;
    min-height: 400px;
  }

  .code-chip,
  .metric-card {
    display: none;
  }

  section {
    padding: 78px 0;
  }

  .about-panel {
    padding: 28px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .contact-panel {
    gap: 20px;
  }

  .image-panel,
  .contact-visual {
    min-height: 280px;
  }

  .about-stats {
    gap: 20px;
  }

  .about-right .about-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 460px) {

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .avatar-frame {
    width: 100%;
  }

  .brand-logo {
    width: 64px;
  }

  .brand {
    font-size: 15px;
    gap: 8px;
  }

  .badge {
    font-size: 11px;
    padding-inline: 12px;
  }

  .contact-card,
  .mini-profile,
  .social-card {
    padding: 16px;
  }

  .about-stat strong {
    font-size: clamp(28px, 3.5vw, 40px);
  }

  .about-right .about-list {
    grid-template-columns: 1fr;
  }
}

::selection {
  background: var(--blue);
  color: white;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue-2);
  outline-offset: 3px;
}

/* ==========================================
   KOPYALAMA POP-UP'I (Discord kullanıcı adı)
   ========================================== */

.social-links a,
.social-links button,
.footer-socials a,
.footer-socials button {
  position: relative;
}

.copy-popup {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(9, 12, 14, 0.98);
  border: 1px solid rgba(46, 232, 199, 0.4);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 7px 12px;
  border-radius: 9px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  z-index: 20;
}

.copy-popup::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(46, 232, 199, 0.4);
}

.copy-popup.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Metin etiketli kopyalama butonu (ör. iletişim bölümündeki "Discord" butonu):
   pop-up yerine yazının kendisi 1 saniyeliğine "Copied/Kopyalandı" olur. */
.social-links button.is-copied {
  border-color: rgba(46, 232, 199, 0.5);
  background: rgba(46, 232, 199, 0.12);
  color: var(--cyan);
}

.social-links button.is-copied .social-icon {
  color: var(--cyan);
}

/* ==========================================
   DISCORD İKONU
   ========================================== */

.social-icon.discord-icon svg,
.footer-socials .discord-icon svg {
  fill: currentColor;
  stroke: none;
}

.social-icon.discord-icon,
.footer-socials .discord-icon svg {
  width: 20px;
  height: 15px;
}

.footer-socials .discord-icon svg {
  width: 22px;
  height: 16px;
}

/* ==========================================
   ROBLOX SEÇENEK POP-UP'I (Profil / Topluluk)
   ========================================== */

.roblox-popup {
  position: absolute;
  left: 50%;
  --popup-shift: 0px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 150px;
  max-width: calc(100vw - 24px);
  background: rgba(9, 12, 14, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
  z-index: 30;
}

/* Yön JS tarafından belirlenir (yeterli boş alan olan tarafa açılır), böylece
   ekranın veya sayfanın altına/üstüne taşıp kırpılmaz. */
.roblox-popup.dir-up {
  bottom: calc(100% + 12px);
  transform: translateX(calc(-50% + var(--popup-shift))) translateY(6px);
}

.roblox-popup.dir-down {
  top: calc(100% + 12px);
  transform: translateX(calc(-50% + var(--popup-shift))) translateY(-6px);
}

.roblox-popup.dir-up.show,
.roblox-popup.dir-down.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(calc(-50% + var(--popup-shift))) translateY(0);
}

.roblox-popup.dir-up::after {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - var(--popup-shift));
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.14);
}

.roblox-popup.dir-down::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: calc(50% - var(--popup-shift));
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.roblox-popup-item {
  display: block;
  padding: 9px 14px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
  color: var(--soft);
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease;
}

.roblox-popup-item:hover,
.roblox-popup-item:focus-visible {
  background: rgba(46, 232, 199, 0.12);
  color: var(--text);
}

/* ==========================================
   ROBLOX İKONU (görsel dosya kullanımı)
   ========================================== */

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

.footer-socials img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

/* ==========================================
   PORTFOLYO FİLTRELERİ (Categories Filter)
   ========================================== */

.portfolio-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.filter-btn:hover {
  border-color: rgba(46, 232, 199, 0.4);
  color: var(--text);
  transform: translateY(-1px);
}

.filter-btn.active {
  border-color: rgba(46, 232, 199, 0.6);
  background: linear-gradient(135deg, rgba(46, 232, 199, 0.16) 0%, rgba(105, 167, 255, 0.16) 100%);
  color: var(--cyan);
  box-shadow: 0 8px 24px rgba(46, 232, 199, 0.08);
}

.portfolio-sub-filters {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.filter-btn.sub-filter-btn {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.filter-btn.sub-filter-btn.active {
  background: linear-gradient(135deg, rgba(46, 232, 199, 0.16) 0%, rgba(105, 167, 255, 0.16) 100%);
  border-color: rgba(46, 232, 199, 0.6);
}

/* ==========================================
   YENİ VİDEO YER TUTUCU VE TELKAFES GRİDİ
   ========================================== */

.project-media .video-placeholder {
  z-index: 1;
  background: 
    radial-gradient(circle at 50% 50%, rgba(46, 232, 199, 0.06), transparent 80%),
    #050809;
}

.wireframe-grid {
  position: absolute;
  inset: 0;
  background-size: 24px 24px;
  background-image: 
    linear-gradient(rgba(46, 232, 199, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 232, 199, 0.03) 1px, transparent 1px);
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
  opacity: 0.8;
  pointer-events: none;
}

.placeholder-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--cyan);
  opacity: 0.76;
}

.placeholder-filename {
  font-size: 13px;
  color: var(--soft);
  opacity: 0.65;
}

/* ==========================================
   SPEC DETAY LIGHTBOX MODAL (Lightbox)
   ========================================== */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 4, 5, 0.85);
  backdrop-filter: blur(14px);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.lightbox-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-modal {
  position: relative;
  width: min(960px, 100%);
  height: min(600px, 85vh);
  background: rgba(9, 12, 14, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 40px rgba(46, 232, 199, 0.05);
  transform: scale(0.95) translateY(10px);
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.lightbox-overlay.show .lightbox-modal {
  transform: scale(1) translateY(0);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 100;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(9, 12, 14, 0.8);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 180ms ease;
}

.lightbox-close:hover {
  border-color: rgba(46, 232, 199, 0.5);
  background: rgba(46, 232, 199, 0.1);
  color: var(--cyan);
  transform: scale(1.05);
}

.lightbox-content {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  flex: 1;
  min-height: 0;
  height: 100%;
}

.lightbox-media {
  position: relative;
  background: #050608;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}

.lightbox-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox-info {
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  background: rgba(13, 15, 16, 0.98);
}

.lightbox-header {
  margin-bottom: 20px;
}

.lightbox-header h2 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.15;
  margin-top: 10px;
  color: var(--text);
}

.lightbox-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.lightbox-specs {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-bottom: 32px;
}

.lightbox-specs h3 {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-item:first-child {
  grid-column: 1 / -1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 12px;
  margin-bottom: 4px;
}

.spec-item span {
  font-size: 12px;
  color: #667186;
  font-weight: 700;
}

.spec-item strong {
  font-size: 16px;
  color: var(--text);
  font-weight: 800;
}

.spec-value-group {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.spec-limit {
  font-size: 12px !important;
  color: #4a5464 !important;
  font-weight: 600 !important;
}

.spec-bar-wrapper {
  margin-top: 6px;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

.spec-bar {
  height: 100%;
  border-radius: 999px;
  width: 0%;
  transition: width 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
  background-color: var(--cyan);
}

.lightbox-actions {
  display: flex;
  gap: 12px;
}

.lightbox-actions button,
.lightbox-actions a {
  flex: 1;
  min-height: 46px;
}

/* ==========================================
   CSS 3D TELKAFES MODEL GÖRÜNTÜLEYİCİ (Wireframe Viewport)
   ========================================== */

.lightbox-wireframe-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: 
    radial-gradient(circle at 50% 50%, rgba(46, 232, 199, 0.08), transparent 75%),
    #05080a;
  overflow: hidden;
  perspective: 600px;
}

.wireframe-grid-bg {
  position: absolute;
  inset: -100px;
  background-size: 32px 32px;
  background-image: 
    linear-gradient(rgba(46, 232, 199, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 232, 199, 0.04) 1px, transparent 1px);
  transform: rotateX(70deg) translateZ(-40px);
  mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 65%);
  pointer-events: none;
}

.spinning-mesh-cube {
  position: relative;
  width: 110px;
  height: 110px;
  transform-style: preserve-3d;
  animation: spin-mesh 14s linear infinite;
}

.cube-face {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(46, 232, 199, 0.32);
  background: rgba(46, 232, 199, 0.015);
  box-shadow: inset 0 0 16px rgba(46, 232, 199, 0.05);
}

.cube-face::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(45deg, transparent 49.5%, rgba(46, 232, 199, 0.16) 49.5%, rgba(46, 232, 199, 0.16) 50.5%, transparent 50.5%),
    linear-gradient(-45deg, transparent 49.5%, rgba(46, 232, 199, 0.16) 49.5%, rgba(46, 232, 199, 0.16) 50.5%, transparent 50.5%);
}

.face-front  { transform: rotateY(  0deg) translateZ(55px); }
.face-back   { transform: rotateY(180deg) translateZ(55px); }
.face-left   { transform: rotateY(-90deg) translateZ(55px); }
.face-right  { transform: rotateY( 90deg) translateZ(55px); }
.face-top    { transform: rotateX( 90deg) translateZ(55px); }
.face-bottom { transform: rotateX(-90deg) translateZ(55px); }

.wireframe-overlay-specs {
  position: absolute;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: "JetBrains Mono", monospace;
  text-align: center;
  pointer-events: none;
}

.wireframe-overlay-specs span {
  font-size: 11px;
  font-weight: 800;
  color: var(--cyan);
  opacity: 0.65;
  letter-spacing: 0.08em;
}

.wireframe-overlay-specs strong {
  font-size: 12px;
  color: var(--text);
  opacity: 0.85;
}

@keyframes spin-mesh {
  from {
    transform: rotateX(20deg) rotateY(0deg) rotateZ(0deg);
  }
  to {
    transform: rotateX(20deg) rotateY(360deg) rotateZ(360deg);
  }
}

/* ==========================================
   LIGHTBOX RESPONSIVE AYARLARI
   ========================================== */

@media (max-width: 820px) {
  .lightbox-modal {
    height: calc(100vh - 32px);
    max-height: calc(100vh - 32px);
  }
  
  .lightbox-content {
    grid-template-columns: 1fr;
    overflow-y: auto;
    height: auto;
  }
  
  .lightbox-media {
    height: 260px;
    min-height: 260px;
    aspect-ratio: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .lightbox-info {
    height: auto;
    overflow-y: visible;
    padding: 28px 24px;
  }
  
  .lightbox-header h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .lightbox-overlay {
    padding: 12px;
  }
  
  .lightbox-info {
    padding: 20px;
  }
  
  .lightbox-actions {
    flex-direction: column;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   ROBLOX MESAJ BALONU (Hero Speech Bubble)
   ========================================== */

.chat-bubble-hero {
  position: absolute;
  top: 95px;
  left: 15px;
  width: 250px;
  background: rgba(9, 12, 14, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 12px 18px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 
    0 12px 36px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 10;
  backdrop-filter: blur(12px);
  animation: bubble-float 6s ease-in-out infinite;
}

/* Çift katmanlı kuyruk (kenarlık efekti için) */
.chat-bubble-hero::before {
  content: "";
  position: absolute;
  bottom: 21px;
  right: -10px;
  border-width: 9px 0 9px 11px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.15);
  display: block;
  width: 0;
  z-index: -1;
}

.chat-bubble-hero::after {
  content: "";
  position: absolute;
  bottom: 22px;
  right: -8px;
  border-width: 8px 0 8px 10px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(9, 12, 14, 0.95);
  display: block;
  width: 0;
  z-index: 1;
}

@keyframes bubble-float {
  0%, 100% {
    transform: translateY(0) rotate(-1.5deg);
  }
  50% {
    transform: translateY(-8px) rotate(1.5deg);
  }
}

@keyframes bubble-float-mob {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -6px);
  }
}

@media (max-width: 1040px) and (min-width: 761px) {
  .chat-bubble-hero {
    left: 40px;
    top: 105px;
  }
}

@media (max-width: 760px) {
  .chat-bubble-hero {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 310px;
    z-index: 10;
    animation: bubble-float-mob 6s ease-in-out infinite;
  }
  
  .chat-bubble-hero::before {
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.15) transparent;
    z-index: -1;
  }

  .chat-bubble-hero::after {
    bottom: -8px;
    right: 50%;
    transform: translateX(50%);
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: rgba(9, 12, 14, 0.95) transparent;
    z-index: 1;
  }
}

/* ==========================================
   ROBLOX DİNAMİK THUMBNAIL STILLERI
   ========================================== */

.roblox-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  background: transparent;
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card:hover .roblox-thumbnail-img {
  transform: scale(1.04);
}

.lightbox-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  background: transparent;
  display: block;
}

/* ==========================================
   GOOGLE 3D MODEL VIEWER
   ========================================== */
.lightbox-media model-viewer {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(46, 232, 199, 0.04), transparent 75%), #050608;
  display: block;
}

/* ==========================================
   CORS VE MODEL HATA UYARILARI
   ========================================== */
.cors-warning-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(9, 12, 14, 0.65);
  backdrop-filter: blur(8px);
  z-index: 10;
  padding: 20px;
  color: var(--text);
  text-align: center;
}

.cors-warning-content {
  background: rgba(13, 17, 20, 0.95);
  border: 1px solid rgba(255, 171, 0, 0.25);
  border-radius: 16px;
  padding: 24px;
  max-width: 460px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 171, 0, 0.04);
}

.cors-warning-content h3 {
  color: #ffab00;
  font-size: 16px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.cors-warning-content p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 20px;
}

.cors-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-bottom: 18px;
}

.cors-steps span {
  font-size: 12px;
  font-weight: 800;
  color: var(--soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cors-steps code {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--cyan);
  line-height: 1.4;
  word-break: break-all;
}

.cors-fallback-notice {
  font-size: 11.5px;
  color: var(--muted);
  font-style: italic;
  display: block;
}

.model-error-banner {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 82, 82, 0.14);
  border: 1px solid rgba(255, 82, 82, 0.3);
  color: #ff5252;
  font-size: 12px;
  font-weight: 800;
  padding: 9px 18px;
  border-radius: 9px;
  backdrop-filter: blur(6px);
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   ARKA PLAN DEKORATİF GEOMETRİK ŞEKİLLER (Floating Shapes)
   ========================================== */

.bg-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Content in front, grids behind */
  pointer-events: none;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
  transition: opacity 300ms ease;
  will-change: transform;
}

.bg-shape-inner {
  display: block;
  width: 100%;
  height: 100%;
}

.bg-shape-inner svg {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px currentColor);
}

/* Position shapes on left and right sides, staggered */

/* Top Left */
.shape-cube-1 {
  left: 4%;
  top: 15vh;
  width: 110px;
  height: 110px;
  animation: float-rotate-1 26s ease-in-out infinite alternate;
}

/* Middle Right */
.shape-sphere-1 {
  right: 5%;
  top: 48vh;
  width: 130px;
  height: 130px;
  animation: float-sway-1 22s ease-in-out infinite alternate;
}

/* Middle Left */
.shape-cone-1 {
  left: 6%;
  top: 50vh;
  width: 100px;
  height: 100px;
  animation: float-rotate-2 28s ease-in-out infinite alternate;
}

/* Bottom Right */
.shape-torus-1 {
  right: 6%;
  top: 75vh;
  width: 115px;
  height: 115px;
  animation: float-rotate-3 32s ease-in-out infinite alternate;
}

/* Top Right */
.shape-sphere-2 {
  right: 7%;
  top: 20vh;
  width: 80px;
  height: 80px;
  animation: float-sway-2 18s ease-in-out infinite alternate;
}

/* Bottom Left */
.shape-cube-2 {
  left: 5%;
  top: 80vh;
  width: 90px;
  height: 90px;
  animation: float-rotate-1 24s ease-in-out infinite alternate;
}

.float-anim-1 { animation: float-rotate-1 26s ease-in-out infinite alternate; }
.float-anim-2 { animation: float-sway-1 22s ease-in-out infinite alternate; }
.float-anim-3 { animation: float-rotate-2 28s ease-in-out infinite alternate; }
.float-anim-4 { animation: float-rotate-3 32s ease-in-out infinite alternate; }
.float-anim-5 { animation: float-sway-2 18s ease-in-out infinite alternate; }

@keyframes float-rotate-1 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(-10px, -24px, 0) rotate(90deg);
  }
  100% {
    transform: translate3d(15px, 12px, 0) rotate(180deg);
  }
}

@keyframes float-rotate-2 {
  0% {
    transform: translate3d(0, 0, 0) rotate(15deg);
  }
  50% {
    transform: translate3d(12px, -30px, 0) rotate(-60deg);
  }
  100% {
    transform: translate3d(-8px, 15px, 0) rotate(45deg);
  }
}

@keyframes float-rotate-3 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(-15px, 20px, 0) rotate(120deg) scale(0.95);
  }
  100% {
    transform: translate3d(10px, -15px, 0) rotate(240deg) scale(1.05);
  }
}

@keyframes float-sway-1 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -22px, 0) scale(1.06);
  }
  100% {
    transform: translate3d(-12px, 18px, 0) scale(0.95);
  }
}

@keyframes float-sway-2 {
  0% {
    transform: translate3d(0, 0, 0) rotate(-10deg);
  }
  50% {
    transform: translate3d(-14px, 18px, 0) rotate(20deg);
  }
  100% {
    transform: translate3d(12px, -12px, 0) rotate(-15deg);
  }
}

/* Hide or fade on smaller layout widths to prevent content overlap */
@media (max-width: 1200px) {
  .bg-shape {
    opacity: 0.18;
  }
}

@media (max-width: 900px) {
  .bg-decorations {
    display: none;
  }
}

/* ==========================================
   COLLABORATORS PAGE STYLES
   ========================================== */
.collabs-section {
  padding: 60px 0 100px;
}

.collabs-section-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--text);
  border-left: 3px solid var(--cyan);
  padding-left: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Kişiler - Horizontal Scroll */
.collab-scroll-wrapper {
  position: relative;
  margin-bottom: 48px;
}

.collab-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 16px 8px 32px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  scroll-behavior: smooth;
  
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.collab-scroll::-webkit-scrollbar {
  display: none;
}

.collab-scroll.active-drag {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

/* Card Styles */
.collab-card, .collab-group-card {
  flex: 0 0 calc((100% - 3 * 24px) / 4);
  scroll-snap-align: start;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(6, 10, 13, 0.94);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  min-width: 170px;
  box-sizing: border-box;
}

.collab-card:hover, .collab-group-card:hover {
  transform: translateY(-5px);
  border-color: rgba(46, 232, 199, 0.46);
  box-shadow: 0 24px 60px rgba(46, 232, 199, 0.08), 0 18px 44px rgba(0, 0, 0, 0.24);
}

.collab-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.collab-avatar-frame {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: border-color 220ms ease;
}

.collab-card:hover .collab-avatar-frame {
  border-color: var(--cyan);
}

.collab-avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collab-identity {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.collab-display-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.collab-username {
  font-size: 11px;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.collab-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  width: max-content;
  color: var(--soft);
}

.collab-tag.cyan {
  border-color: rgba(46, 232, 199, 0.38);
  background: rgba(46, 232, 199, 0.08);
  color: var(--cyan);
}

.collab-tag.purple {
  border-color: rgba(179, 140, 255, 0.38);
  background: rgba(179, 140, 255, 0.08);
  color: var(--purple);
}

.collab-tag.gold {
  border-color: rgba(255, 209, 102, 0.38);
  background: rgba(255, 209, 102, 0.08);
  color: var(--gold);
}

.collab-bio {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  min-height: 54px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.collab-action {
  margin-top: auto;
}

.collab-action .btn {
  width: 100%;
  min-height: 34px;
  font-size: 12px;
  border-radius: 8px;
  padding: 6px 12px;
}

/* Divider */
.collabs-divider {
  border: 0;
  height: 1px;
  background: var(--line-soft);
  margin: 48px 0;
  opacity: 0.35;
}

/* Gruplar stili */
.collab-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.collab-group-emblem-frame {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: border-color 220ms ease;
}

.collab-group-card:hover .collab-group-emblem-frame {
  border-color: var(--cyan);
}

.collab-group-emblem-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collab-group-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.collab-group-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.collab-group-stats {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}

.collab-group-members {
  font-size: 9px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(255, 209, 102, 0.08);
  border: 1px solid rgba(255, 209, 102, 0.22);
  padding: 1px 6px;
  border-radius: 999px;
  width: max-content;
}

.collab-group-role {
  font-size: 9px;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(46, 232, 199, 0.08);
  border: 1px solid rgba(46, 232, 199, 0.22);
  padding: 1px 6px;
  border-radius: 999px;
  width: max-content;
}

.collab-group-desc {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  min-height: 54px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.collab-group-action {
  margin-top: auto;
}

.collab-group-action .btn {
  width: 100%;
  min-height: 34px;
  font-size: 12px;
  border-radius: 8px;
  padding: 6px 12px;
}



/* ==========================================
   ESTIMATOR / SIPARIS HESAPLAMA STILLERI
   ========================================== */
.estimator {
  padding: 80px 0;
}

.estimator-container {
  max-width: 820px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  border: 1px solid rgba(46, 232, 199, 0.15);
  border-radius: var(--radius);
  background: radial-gradient(circle at 10% 10%, rgba(46, 232, 199, 0.03), transparent 50%), radial-gradient(circle at 90% 90%, rgba(179, 140, 255, 0.03), transparent 50%), rgba(6, 10, 13, 0.95);
  padding: 32px;
  box-sizing: border-box;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(46, 232, 199, 0.03), 0 0 50px rgba(179, 140, 255, 0.03);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.estimator-container::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(46, 232, 199, 0.02) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.estimator-form, .estimator-result {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .estimator-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
}

.estimator-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.estimator-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.estimator-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--cyan);
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(46, 232, 199, 0.15);
}

.estimator-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.est-option-btn {
  flex: 1;
  min-width: 100px;
  position: relative;
  text-align: center;
  padding: 12px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  background: rgba(255, 255, 255, 0.01);
}

.est-option-btn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.est-option-btn:hover {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

.est-option-btn.active {
  border-color: var(--cyan);
  color: var(--text);
  background: rgba(46, 232, 199, 0.08);
  box-shadow: 0 0 15px rgba(46, 232, 199, 0.15), inset 0 0 12px rgba(46, 232, 199, 0.05);
  text-shadow: 0 0 8px rgba(46, 232, 199, 0.3);
}

.estimator-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.est-checkbox {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  cursor: pointer;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  background: rgba(255, 255, 255, 0.01);
}

.est-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.est-checkbox:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
  transform: translateX(4px);
}

.chk-box {
  width: 18px;
  height: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 220ms ease;
  background: rgba(255, 255, 255, 0.02);
}

.est-checkbox input:checked ~ .chk-box {
  border-color: var(--cyan);
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  box-shadow: 0 0 10px rgba(46, 232, 199, 0.4);
}

.chk-box::after {
  content: "";
  display: none;
  width: 4px;
  height: 8px;
  border: solid #050608;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.est-checkbox input:checked ~ .chk-box::after {
  display: block;
}

.chk-label {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  transition: color 220ms ease;
}

.est-checkbox:hover .chk-label {
  color: var(--text);
}

.est-checkbox input:checked ~ .chk-label {
  color: var(--text);
}

.chk-label strong {
  color: var(--cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  transition: text-shadow 220ms ease;
}

.est-checkbox input:checked ~ .chk-label strong {
  text-shadow: 0 0 8px rgba(46, 232, 199, 0.4);
}

.estimator-result {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .estimator-result {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
    padding-top: 24px;
  }
}

.result-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.result-header span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.price-display {
  display: flex;
  align-items: baseline;
  color: var(--text);
}

.price-display .currency {
  font-size: 24px;
  font-weight: 900;
  color: var(--cyan);
  margin-right: 4px;
}

.price-display .price-val {
  font-size: 54px;
  font-weight: 900;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(46, 232, 199, 0.2);
  display: inline-block;
}

@keyframes priceBump {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
    color: var(--cyan);
    text-shadow: 0 0 30px rgba(46, 232, 199, 0.5), 0 0 10px rgba(46, 232, 199, 0.3);
  }
  100% {
    transform: scale(1);
  }
}

.price-val.price-bump {
  animation: priceBump 320ms cubic-bezier(0.175, 0.885, 0.32, 1.2) both;
}

.result-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

/* ==========================================
   FAQ ACCORDION STILLERI
   ========================================== */
.faq {
  padding: 80px 0;
}

.faq-accordion {
  max-width: 820px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(6, 10, 13, 0.94);
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.faq-item:hover {
  border-color: rgba(46, 232, 199, 0.28);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  font-family: inherit;
}

.faq-trigger:focus-visible {
  background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
  font-size: 20px;
  color: var(--cyan);
  transition: transform 220ms ease;
  font-family: "JetBrains Mono", monospace;
}

.faq-item.active {
  border-color: rgba(46, 232, 199, 0.46);
  box-shadow: 0 12px 30px rgba(46, 232, 199, 0.04);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

/* ==========================================
   404 HATA SAYFASI STILLERI
   ========================================== */
.error-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #050608;
  position: relative;
  overflow: hidden;
}

.error-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 10;
  max-width: 460px;
  padding: 24px;
}

.error-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(46, 232, 199, 0.12), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.error-badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: 0.15em;
  font-family: "JetBrains Mono", monospace;
  margin-bottom: 12px;
}

.error-code {
  font-size: 110px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.04em;
  font-family: "JetBrains Mono", monospace;
  text-shadow: 0 0 40px rgba(46, 232, 199, 0.18);
}

.error-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin: 16px 0 12px;
}

.error-message {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 32px;
}

/* Media Queries for Responsive Dual Slider column widths */
@media (max-width: 1200px) {
  .collab-card, .collab-group-card {
    flex: 0 0 calc((100% - 2 * 20px) / 3);
  }
  .collab-scroll {
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .collab-card, .collab-group-card {
    flex: 0 0 calc((100% - 1 * 16px) / 2);
  }
  .collab-scroll {
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .collab-card, .collab-group-card {
    flex: 0 0 80%;
  }
  .collab-scroll {
    gap: 12px;
  }
}

/* ==========================================
   GEÇİCİ OLARAK KALDIRILAN ESTIMATOR STILLERI
   ========================================== */
.estimator-disabled-container {
  display: block !important;
  max-width: 720px;
  margin: 32px auto 0;
  text-align: center;
  padding: 44px 32px;
}

.estimator-notice-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.status-badge.warning {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 171, 0, 0.1);
  border: 1px solid rgba(255, 171, 0, 0.3);
  color: #ffab00;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 99px;
  text-transform: uppercase;
}

.status-badge.warning .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffab00;
  box-shadow: 0 0 10px #ffab00;
  animation: pulseWarning 2s infinite ease-in-out;
}

@keyframes pulseWarning {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.8); }
}

.notice-body h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.notice-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

.notice-action {
  margin-top: 8px;
}

.btn-discord-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
  color: #ffffff !important;
  padding: 16px 36px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(88, 101, 242, 0.35), 0 0 20px rgba(88, 101, 242, 0.2);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms ease, filter 220ms ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-discord-large:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(88, 101, 242, 0.5), 0 0 30px rgba(88, 101, 242, 0.4);
  filter: brightness(1.1);
}

.btn-discord-large svg {
  width: 32px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

.discord-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-main-text {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.btn-sub-text {
  font-size: 12px;
  opacity: 0.85;
  font-weight: 500;
  font-family: "JetBrains Mono", monospace;
}