@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-orange: #FF5A1F;
  --primary-orange-hover: #E4480E;
  --primary-orange-light: rgba(255, 90, 31, 0.15);
  --primary-orange-glow: rgba(255, 90, 31, 0.35);
  --bg-dark: #08090C;
  --bg-card: #0E1118;
  --bg-card-hover: #141822;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(255, 90, 31, 0.4);
  --text-muted: #8E96A4;
  --text-light: #F4F5F7;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Fira Code', monospace;
  --radius: 1rem;
  --accent: oklch(0.89 0 0);
  --destructive-foreground: oklch(0.985 0 0);
}

.dark {
  --background: oklch(0.125 0 0);
  --accent: oklch(0.229 0 0);
  --destructive-foreground: oklch(0.985 0 0);
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  selection-background-color: var(--primary-orange);
  selection-color: #ffffff;
}

::selection {
  background-color: var(--primary-orange);
  color: #ffffff;
}

/* Custom Cyber Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #08090c;
}
::-webkit-scrollbar-thumb {
  background: #1f2430;
  border-radius: 4px;
  border: 1px solid rgba(255, 90, 31, 0.2);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-orange);
}

/* Monospace font utility */
.font-mono {
  font-family: var(--font-mono);
}

/* Cyber Grid Background */
.cyber-grid-bg {
  background-color: #08090C;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255, 90, 31, 0.08) 0%, transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
}

/* Brand glow effects */
.orange-glow {
  box-shadow: 0 0 25px var(--primary-orange-glow);
}

.orange-glow-sm {
  box-shadow: 0 0 12px var(--primary-orange-glow);
}

.text-orange-gradient {
  background: linear-gradient(135deg, #FF7B47 0%, #FF5A1F 50%, #E03E05 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Cyber Focus Corner styling (Inspired directly by Logo) */
.cyber-box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all 0.25s ease-in-out;
}

.cyber-box:hover {
  border-color: var(--border-color-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 90, 31, 0.1);
}

.cyber-corner {
  position: relative;
}

.cyber-corner::before,
.cyber-corner::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  pointer-events: none;
  transition: border-color 0.2s ease;
}

.cyber-corner::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--primary-orange);
  border-left: 2px solid var(--primary-orange);
}

.cyber-corner::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--primary-orange);
  border-right: 2px solid var(--primary-orange);
}

/* Marquee / Live Ticker */
@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
}

.ticker-content {
  display: inline-flex;
  animation: ticker 35s linear infinite;
}

.ticker-content:hover {
  animation-play-state: paused;
}

/* Pulse badge */
.pulse-dot {
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background-color: inherit;
  animation: pulse-ring 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(2.2);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

/* Drag and Drop Zone */
.dropzone-active {
  border-color: var(--primary-orange) !important;
  background-color: rgba(255, 90, 31, 0.05) !important;
}

/* Terminal scanline effect */
.terminal-window {
  background: #080a0f;
  border: 1px solid #1f2533;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.terminal-header {
  background: #0d111a;
  border-bottom: 1px solid #1f2533;
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

/* 21st.dev Dropdown Navigation Component Styles */
.nav-dropdown-item {
  position: relative;
}

.nav-dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.nav-dropdown-item:hover .nav-dropdown-menu,
.nav-dropdown-item:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-item:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-card {
  border-radius: 16px !important;
  background-color: rgba(12, 14, 21, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 90, 31, 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* 21st.dev Lumen Button & Bell Notify Design ("buton tasarımı") */
.lumen-button {
  position: relative;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  background: #050608;
  color: #fff;
  cursor: pointer;
  padding: 0.7rem 1.6rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 0.04em 0.06em 0 #fff, inset 0 1em 1em 0 rgba(255, 255, 255, 0.2), inset 0 0.2em 0.2em 0 #e3b695;
  border: 1px solid rgba(255, 90, 31, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  overflow: visible;
  animation: lumenbtn 5s ease-in-out infinite;
  z-index: 1;
}

.lumen-button:hover,
.lumen-button:focus-visible {
  color: #fff;
  text-shadow: 0 0 12px #fff, 0 0 18px #ff5a1f;
  border-color: rgba(255, 90, 31, 0.85);
  outline: none;
  transform: translateY(-1px);
}

.lumen-button::before {
  content: '';
  display: block;
  width: 100%;
  height: 70%;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%) scale(1.4);
  background: #ff5a1f;
  z-index: -1;
  filter: blur(14px);
  border-radius: 100%;
  opacity: 0.55;
  animation: lumen 5s ease-in-out infinite;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

.lumen-button:hover::before {
  opacity: 0.9;
  transform: translateY(-50%) scale(1.8);
}

@keyframes lumenbtn {
  0% {
    box-shadow: inset 0 0.04em 0.06em 0 #fff,
      inset -0.16em 1em 1em 0 rgba(255, 255, 255, 0.25),
      inset -0.16em 0.2em 0.4em 0 #e3b695;
  }
  50% {
    box-shadow: inset 0 0.04em 0.06em 0 #fff,
      inset 0.16em 1em 1em 0 rgba(255, 255, 255, 0.25),
      inset 0.16em 0.2em 0.4em 0 #e3b695;
  }
  100% {
    box-shadow: inset 0 0.04em 0.06em 0 #fff,
      inset -0.16em 1em 1em 0 rgba(255, 255, 255, 0.25),
      inset -0.16em 0.2em 0.4em 0 #e3b695;
  }
}

@keyframes lumen {
  0% {
    translate: -0.6em 0;
  }
  50% {
    translate: 0.6em 0;
  }
  100% {
    translate: -0.6em 0;
  }
}

/* 21st.dev Bell Notify Styles */
#bell-interactive-stage {
  font-size: 3.4px;
  --base-clr: #b7b5b4;
  --degofrot: 0.8;
}

#bell-interactive-stage * {
  transition: filter 0.4s ease-in-out, box-shadow 0.4s ease-in-out,
    opacity 0.4s ease-in-out, color 0.4s ease-in-out,
    background 0.4s ease-in-out, text-shadow 0.4s ease-in-out;
}
#bell-interactive-stage *::before,
#bell-interactive-stage *::after {
  transition: filter 0.4s ease-in-out, box-shadow 0.4s ease-in-out,
    opacity 0.4s ease-in-out, color 0.4s ease-in-out,
    background 0.4s ease-in-out, text-shadow 0.4s ease-in-out;
}

.bell-container,
.bell-container * {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.bell-container {
  width: 80em;
  height: 80em;
  cursor: pointer;
  transform-origin: 50% -50vh;
  animation: bell 5s ease-in-out infinite;
  outline: none;
}

@keyframes bell {
  0% {
    rotate: calc(1deg * var(--degofrot));
  }
  50% {
    rotate: calc(-1deg * var(--degofrot));
  }
  100% {
    rotate: calc(1deg * var(--degofrot));
  }
}

.rope {
  height: 50vh;
  width: 2em;
  translate: 0 -52%;
  background: linear-gradient(
      90deg,
      #2d54744d 0%,
      #000b 30%,
      transparent 100%
    ),
    repeating-linear-gradient(-70deg, #252525, #888 2%, #3a3a3a 3%);
}

.bell-top {
  width: 14%;
  height: 14%;
  border-radius: 50%;
  translate: 0 -28em;
  background: var(--base-clr);
  box-shadow: inset -1em -0.5em 2em 0.5em #fff,
    inset 1em -1em 2em 3em #000, 0 -0.1em 0.4em 0.3em #c6eaffa8;
}

.bell-base {
  width: 50%;
  height: 50%;
  border-radius: 50%;
  translate: 0 -24%;
  background: var(--base-clr);
  box-shadow: 0 -0.1em 0.4em 0.2em #c6eaffa8;
}
.bell-base:before {
  content: '';
  background-image: radial-gradient(
    circle at -80% -12%,
    transparent 50em,
    var(--base-clr) 50em
  );
  position: absolute;
  translate: -18em 20em;
  width: 100%;
  height: 80%;
}
.bell-base:after {
  content: '';
  background-image: radial-gradient(
    circle at -80% -12%,
    transparent 50.1em,
    #cacaca 50.3em,
    var(--base-clr) 50.5em
  );
  position: absolute;
  translate: 18em 20em;
  width: 100%;
  height: 80%;
  transform: rotateY(180deg);
}
.bell-base:nth-of-type(3) {
  filter: brightness(3) blur(1em);
  scale: 0.74 0.84;
  translate: 0em -11em;
}

.shadow-l1 {
  width: 30em;
  height: 42em;
  border-radius: 50%;
  rotate: 12deg;
  translate: -3em -6em;
  filter: blur(2em);
  background: #797a80;
}
.shadow-l2 {
  width: 130%;
  height: 90%;
  filter: blur(5em);
  translate: -6em 9em;
}
.shadow-l2::before {
  display: block;
  content: '';
  width: 68%;
  height: 64%;
  border-radius: 50%;
  rotate: -54deg;
  translate: -8em 2em;
  scale: 1;
  background: #000000;
}

.glow {
  width: 100%;
  height: 100%;
  filter: brightness(2) blur(2em);
}
.glow::before {
  clip-path: polygon(
    9% 83%, 12% 79%, 15% 74%, 18% 68%, 20% 62%, 22% 56%, 23% 50%, 24% 43%, 25% 38%, 25% 34%,
    26% 29%, 26% 26%, 27% 22%, 29% 19%, 30% 15%, 32% 13%, 34% 10%, 37% 7%, 41% 5%, 44% 4%,
    47% 3%, 51% 3%, 55% 3%, 58% 5%, 62% 6%, 73% 29%, 72% 25%, 70% 20%, 67% 16%, 63% 12%,
    60% 9%, 58% 8%, 55% 7%, 52% 6%, 48% 6%, 44% 8%, 41% 9%, 37% 12%, 36% 14%, 33% 16%,
    31% 20%, 30% 23%, 29% 26%, 28% 31%, 27% 36%, 27% 39%, 26% 44%, 26% 48%, 26% 52%,
    25% 56%, 23% 61%, 22% 65%, 21% 69%, 19% 72%, 17% 75%, 15% 78%, 13% 81%
  );
  width: 100%;
  height: 80%;
  translate: 0 6em;
  scale: 0.94 0.94;
  background: #fff3;
  display: block;
  content: '';
}
.glow2 {
  width: 100%;
  height: 100%;
  filter: brightness(1) blur(0.3em);
  opacity: 0.1;
}
.glow2::before {
  clip-path: polygon(
    9.21% 83%, 12.28% 79%, 15.35% 74%, 18.41% 68%, 20.46% 62%, 22.51% 56%, 23.53% 50%,
    24.55% 43%, 25.58% 34%, 26.6% 29%, 27.62% 22%, 29.16% 18.5%, 30.95% 15.75%, 32.74% 13%,
    34.78% 10%, 37.85% 7%, 41.94% 5%, 45.01% 4%, 48.08% 3%, 52.17% 3%, 56.27% 3%, 64.01% 6.36%,
    55.75% 4.5%, 47.83% 4.75%, 42.84% 5.88%, 39.51% 7.88%, 36.45% 10.38%, 33.38% 14.88%,
    30.69% 19%, 29.67% 22.5%, 28.8% 26.72%, 28.21% 31.36%, 26.92% 38.44%, 26.57% 43.67%,
    25.51% 48.34%, 25% 54.34%, 23.4% 60.69%, 21.23% 65.38%, 18.41% 71.5%, 16.88% 74.75%, 12.28% 80.5%
  );
  width: 100%;
  height: 84%;
  translate: -1em 8.4em;
  scale: 1;
  background: #fff3;
  display: block;
  content: '';
}

.left-glow {
  --lgc: #5d819666;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  translate: 0 -24%;
  background: transparent;
  box-shadow: inset 1em 0em 1em 0.2em var(--lgc);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}
.left-glow2 {
  --lgc2: #5d819666;
  width: 49%;
  height: 50%;
  background-image: radial-gradient(
    circle at -80% -12%,
    transparent 50em,
    var(--lgc2) 50.3em,
    transparent 52em
  );
  position: absolute;
  translate: -19em 10.35em;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 0 78%);
}
.r-glow {
  --lgc: #fffaf680;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  translate: 0 -24%;
  background: transparent;
  box-shadow: inset 1em 0em 1em 0.2em var(--lgc);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  transform: rotateY(180deg);
}
.r-glow2 {
  --lgc2: #fffaf680;
  width: 49%;
  height: 50%;
  background-image: radial-gradient(
    circle at -80% -12%,
    transparent 50em,
    var(--lgc2) 50.3em,
    transparent 52em
  );
  position: absolute;
  translate: 18.2em 10.35em;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 0 78%);
  transform: rotateY(180deg) rotateZ(-2deg);
}

.mid-ring.small {
  translate: 0.04em -8em;
  scale: 0.8 0.5;
}
.mid-ring {
  width: 64%;
  height: 10%;
  border-radius: 50%;
  translate: -0.1em 10em;
  box-shadow: inset -0.3em 1.3em 0.4em -1em #fff5,
    -0.2em -1.2em 0.4em -0.4em #505050,
    -0.1em -1.8em 0.4em -0.4em #fff5, 0 -2.5em 0.4em -1em #000000;
  mix-blend-mode: hard-light;
  filter: brightness(0.8);
}
.mid-ring::before,
.mid-ring::after {
  content: '';
  display: block;
  background: #000;
  width: 2em;
  height: 2em;
  top: 10%;
  border-radius: 50%;
  position: absolute;
}
.mid-ring::after {
  right: -2%;
}
.mid-ring::before {
  left: -2%;
}

.bell-buff-t {
  background: #fff2;
  width: 72%;
  height: 12%;
  border-radius: 50%;
  translate: 0 16em;
  filter: blur(1em);
}
.bell-buff {
  background: linear-gradient(90deg, black 40%, var(--base-clr) 90%);
  width: 88%;
  height: 20%;
  border-radius: 50% 50% 50% 50% / 50% 50% 30% 30%;
  translate: 0 20em;
  box-shadow: inset 1em 0 2em -1em #5d819666,
    inset -1em 0 2em -1em #fff;
}
.bell-btm {
  width: 88%;
  height: 18%;
  border-radius: 50%;
  translate: 0 23em;
  background: linear-gradient(90deg, black 40%, var(--base-clr) 90%);
}
.bell-btm2 {
  width: 74%;
  height: 12%;
  border-radius: 50%;
  translate: 0 24em;
  background: #fffff6;
  box-shadow: 0 0 1em 0.6em #ffe9d4, -0.8em 0.2em 2em 1em #cca37f,
      -5.4em -0.6em 3em -1em #ce6e1abb, 6em -0.6em 3em -1em #ce6e1abb,
      inset 0em 30.3em 0.3em -30em #c7962d, inset 0 -2em 2em -2em #ffe9d4,
      inset 0em -1em 2em 1em #ce6e1a66;
  filter: brightness(1);
}
.off .bell-btm2 {
  filter: brightness(0.02);
}

.bell-ring-container {
  width: 74%;
  height: 24%;
  border-radius: 50% 50% 50% 50% / 25% 25% 0% 0%;
  translate: 0 29.2em;
  overflow: hidden;
}
.bell-ring {
  width: 12em;
  height: 12em;
  background: #fff;
  border-radius: 50%;
  translate: 0 -6em;
  box-shadow: 0 0.8em 1em -0.3em #f8e1d0,
    inset 0 -6em 4em -4em #e3b695, inset 0 1em 3em 1em #fff4,
    inset 0 2em 3em 1em #fff, inset 0 100em 0 100em #2c2c2c;
}
.off .bell-ring {
  background: #000;
  box-shadow: 0 0.8em 1em -0.3em #0000,
    inset 0 -6em 4em -4em #e3b69500, inset 0 1em 3em 1em #fff0,
    inset 0 -2em 3em 1em #fff2, inset 0 100em 0 100em #000;
}

.bell-rays {
  mix-blend-mode: soft-light;
  box-shadow: inset 0 -21em 4em -20em #000;
  width: 100%;
  height: 140%;
  translate: 0 -4em;
  border-radius: 50%;
}
.bell-rays::before {
  content: '';
  display: block;
  width: 100em;
  height: 100em;
  transform-origin: 50% 50%;
  position: absolute;
  left: -21em;
  top: -77em;
  border-radius: 100%;
  filter: blur(0.6em);
  background: repeating-conic-gradient(
    at 50% 50%,
    #fff2 0%,
    transparent 0.6%,
    #fff2 0.8%
  );
  animation: radiate 1s linear infinite;
}
.off .bell-rays {
  opacity: 0;
}
@keyframes radiate {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 6deg;
  }
}

.volumetric {
  width: 98%;
  height: 224%;
  translate: 0 124em;
  opacity: 0.2;
}
.volumetric .vl {
  width: 100%;
  height: 100%;
  transform-origin: 50% 20em;
  rotate: 22deg;
  box-shadow: inset 40em 0 20em -20em #fff1;
}
.volumetric .vr {
  width: 100%;
  height: 100%;
  transform-origin: 50% 20em;
  rotate: -22deg;
  box-shadow: inset -40em 0 20em -20em #fff1;
}
.off .volumetric {
  opacity: 0;
}

.grain {
  z-index: 10;
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  background: radial-gradient(circle at 50% 50%, #000, #0000),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  filter: contrast(100%) brightness(200%) grayscale(1) opacity(0.168);
  mix-blend-mode: screen;
}

/* 21st.dev Coverflow Carousel Styles ("card tasarımı") */
.coverflow-wrapper {
  --cf-card: clamp(170px, 22vw, 250px);
}

.coverflow-stage {
  perspective: calc(var(--cf-card) * 3.2);
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.coverflow-stage:active {
  cursor: grabbing;
}

.coverflow-card {
  position: absolute;
  left: 50%;
  top: 0;
  width: var(--cf-card);
  height: calc(var(--cf-card) * 1.35);
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.85), 0 0 20px rgba(255, 90, 31, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
  will-change: transform, opacity;
  background: #0d1017;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.coverflow-card:hover {
  border-color: rgba(255, 90, 31, 0.7);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 90, 31, 0.3);
}

/* 21st.dev Coach Scheduling Card Styles ("etkinlik takvimi") */
.scheduling-card-container {
  background-color: #0d1017;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 90, 31, 0.1);
  overflow: hidden;
  position: relative;
}

.scheduling-slot-btn {
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scheduling-slot-btn:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.04);
  border-color: #ff5a1f;
  background-color: rgba(255, 90, 31, 0.15);
  color: #fff;
}

.scheduling-confirm-panel {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

/* 21st.dev Parallax Scroll Feature Section - Dinamik Akıcı Derinlik */
.parallax-fullpage-section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

.parallax-feature-row {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out;
  will-change: transform;
}

.parallax-text-col {
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.parallax-clip-image {
  opacity: 1;
  clip-path: none;
  border-radius: 1.5rem;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
  will-change: transform;
}

.parallax-clip-image img {
  will-change: transform;
  transform: scale(1.05);
  transition: transform 0.2s ease-out;
}

.parallax-feature-row:hover .parallax-clip-image {
  border-color: rgba(255, 90, 31, 0.45);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8), 0 0 30px -5px rgba(255, 90, 31, 0.2);
}
/* 21st.dev Social Links & Navbar Kayıt Ol Pill ("sosyal medya iconları nevbarda kayıt olun butona sığdır uzat biraz") */
.navbar-social-register-pill {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(10, 11, 15, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.6), 0 0 15px -3px rgba(255, 90, 31, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-social-register-pill:hover {
  border-color: rgba(255, 90, 31, 0.4);
  box-shadow: 0 6px 25px -2px rgba(0, 0, 0, 0.8), 0 0 20px -2px rgba(255, 90, 31, 0.25);
}

.navbar-social-icon-btn {
  transition: all 0.2s ease;
}

.navbar-social-icon-btn:hover {
  transform: translateY(-1.5px) scale(1.1);
}

/* Vercel Navbar Styles (vercel-navbar.tsx adapted for Siber Günlük TR) */
.vercel-nav-item {
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.vercel-nav-item .icon-box {
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.vercel-nav-item:hover .icon-box {
  background-color: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
  transform: scale(1.05);
}

.vercel-profile-menu {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96) translateY(-8px);
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
  pointer-events: none;
}

.vercel-profile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.vercel-dropdown-item {
  transition: all 0.15s ease;
}

.vercel-dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

/* ==========================================
   SOC & Siber Güvenlik Yönetim Paneli Stilleri
   ========================================== */
#admin-panel-modal {
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter 0.25s ease;
}

#admin-panel-modal:not(.hidden) {
  animation: adminModalFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes adminModalFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.985);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* SIEM Terminal Custom Scrollbar */
#siem-terminal::-webkit-scrollbar {
  width: 6px;
}
#siem-terminal::-webkit-scrollbar-track {
  background: #040508;
}
#siem-terminal::-webkit-scrollbar-thumb {
  background: #1f2433;
  border-radius: 3px;
  border: 1px solid rgba(255, 90, 31, 0.2);
}
#siem-terminal::-webkit-scrollbar-thumb:hover {
  background: #ff5a1f;
}

/* Tab button transition */
.admin-tab-btn {
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

/* DEFCON Card Active Glow */
#defcon-card-2 {
  box-shadow: 0 0 25px rgba(255, 90, 31, 0.15);
}

#defcon-card-1.active-defcon {
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
  border-color: #ef4444 !important;
}







/* ==========================================================================
   21st.dev Animated Dock - Renk Temaları, Sol/Sağ Pozisyon & Neon Glow
   ========================================================================== */
#social-animated-dock {
  transition: left 0.3s ease, right 0.3s ease, transform 0.2s ease, opacity 0.3s ease;
}

#social-animated-dock.dock-pos-left {
  left: 1rem !important;
  right: auto !important;
}
#social-animated-dock.dock-pos-left .dock-tooltip {
  left: 100% !important;
  right: auto !important;
  margin-left: 0.75rem !important;
  margin-right: 0 !important;
}

#social-animated-dock.dock-pos-right {
  right: 1rem !important;
  left: auto !important;
}
#social-animated-dock.dock-pos-right .dock-tooltip {
  right: 100% !important;
  left: auto !important;
  margin-right: 0.75rem !important;
  margin-left: 0 !important;
}

/* Glow Effect */
#social-animated-dock.dock-glow .dock-item svg {
  filter: drop-shadow(0 0 7px var(--brand-color, currentColor));
}

/* Renk Temaları */
#social-animated-dock[data-dock-theme="orange"] .dock-item:not(:first-child) {
  color: #f97316 !important;
  border-color: rgba(249, 115, 22, 0.45) !important;
}
#social-animated-dock[data-dock-theme="orange"].dock-glow .dock-item:not(:first-child) svg {
  filter: drop-shadow(0 0 8px #f97316) !important;
}

#social-animated-dock[data-dock-theme="green"] .dock-item:not(:first-child) {
  color: #10b981 !important;
  border-color: rgba(16, 185, 129, 0.45) !important;
}
#social-animated-dock[data-dock-theme="green"].dock-glow .dock-item:not(:first-child) svg {
  filter: drop-shadow(0 0 8px #10b981) !important;
}

#social-animated-dock[data-dock-theme="blue"] .dock-item:not(:first-child) {
  color: #06b6d4 !important;
  border-color: rgba(6, 182, 212, 0.45) !important;
}
#social-animated-dock[data-dock-theme="blue"].dock-glow .dock-item:not(:first-child) svg {
  filter: drop-shadow(0 0 8px #06b6d4) !important;
}

#social-animated-dock[data-dock-theme="purple"] .dock-item:not(:first-child) {
  color: #a855f7 !important;
  border-color: rgba(168, 85, 247, 0.45) !important;
}
#social-animated-dock[data-dock-theme="purple"].dock-glow .dock-item:not(:first-child) svg {
  filter: drop-shadow(0 0 8px #a855f7) !important;
}

#social-animated-dock[data-dock-theme="monochrome"] .dock-item:not(:first-child) {
  color: #e2e8f0 !important;
  border-color: rgba(226, 232, 240, 0.35) !important;
}
#social-animated-dock[data-dock-theme="monochrome"].dock-glow .dock-item:not(:first-child) svg {
  filter: drop-shadow(0 0 6px #ffffff) !important;
}

#social-animated-dock[data-dock-theme="custom"] .dock-item:not(:first-child) {
  color: var(--dock-custom-color, #f97316) !important;
  border-color: var(--dock-custom-color, #f97316) !important;
}
#social-animated-dock[data-dock-theme="custom"].dock-glow .dock-item:not(:first-child) svg {
  filter: drop-shadow(0 0 8px var(--dock-custom-color, #f97316)) !important;
}

/* ==========================================================================
   KRİTİK MODAL Z-INDEX KURALLARI (WordPress & Mobil Katman Önceliği)
   WordPress #wpadminbar (99999) ve yapışkan başlıkların üstünde kalır.
   ========================================================================== */
#auth-modal,
#search-modal,
#threat-map-modal,
#admin-panel-modal,
#kvkk-modal,
#lab-sandbox-modal,
#event-ticket-modal,
#threat-dossier-modal,
#cve-detail-modal,
#coach-booking-modal,
#article-modal,
#mobile-drawer-modal,
#dock-settings-modal {
  z-index: 999999 !important;
  position: fixed !important;
}

/* Sayfa bölümlerinde tuval arka planının görünmesini sağlayan hafif şeffaflık */
.cyber-section-translucent {
  background-color: rgba(9, 11, 16, 0.88) !important;
  backdrop-filter: blur(2px);
}

/* Mobil Menü Çekmecesi (Slide-Over Drawer) */
#mobile-menu-drawer {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}
#mobile-menu-drawer.drawer-closed {
  transform: translateX(100%);
  pointer-events: none;
  opacity: 0;
}
#mobile-menu-drawer.drawer-open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}

/* Saldırı Zinciri Taktiksel HUD ve Lazer Akışı */
.killchain-node-active {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(234, 88, 12, 0.1));
  border-color: #f97316 !important;
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.35), inset 0 0 10px rgba(249, 115, 22, 0.15);
}

.killchain-laser-beam {
  background: linear-gradient(90deg, transparent, #f97316, transparent);
  background-size: 200% 100%;
  animation: laserStream 2s linear infinite;
}

@keyframes laserStream {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Terminal Yanıp Sönen İmleç */
.terminal-cursor-blink {
  animation: terminalBlink 1s step-end infinite;
}
@keyframes terminalBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

