@charset "UTF-8";


/* =========================================
   ULTRA PREMIUM DESIGN SYSTEM
   Next-Level · Cinematic · Breathtaking
   ========================================= */
:root {
  /* Brand Colors */
  --brand-primary: #00d4ff;
  --brand-secondary: #0099cc;
  --brand-dark: #006688;
  --brand-glow: rgba(0, 212, 255, 0.4);
  --brand-glow-soft: rgba(0, 212, 255, 0.15);

  /* Theme (Değiştirilebilir) */
  --theme-color: #00d4ff;
  --df-green: #00d4ff;
  --df-green-dark: #0099cc;
  --df-green-light: #66e5ff;
  --theme-rgb: 0, 212, 255;

  /* Dark Palette */
  --bg-base: #020408;
  --bg-layer1: #060d14;
  --bg-layer2: #0a1520;
  --bg-layer3: #0f1e2e;
  --bg-card: rgba(8, 20, 35, 0.8);
  --bg-card-hover: rgba(12, 28, 48, 0.95);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.07);

  /* Text */
  --text-primary: #e8f4f8;
  --text-secondary: rgba(232, 244, 248, 0.6);
  --text-muted: rgba(232, 244, 248, 0.35);

  /* Legacy vars (uyumluluk) */
  --df-black: #020408;
  --df-dark: #060d14;
  --df-gray-dark: #0a1520;
  --df-gray: #1a2d3d;
  --df-gray-mid: rgba(232, 244, 248, 0.5);
  --df-gray-light: rgba(232, 244, 248, 0.4);
  --df-gray-border: rgba(255, 255, 255, 0.08);
  --df-white: #ffffff;
  --df-off-white: #0a1520;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-2xl: 48px;
  --radius-full: 100px;

  /* Shadows */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.3);
  --shadow-glow-sm: 0 0 20px rgba(0, 212, 255, 0.2);

  /* Transitions */
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =========================================
   GENEL TEMA MODLARI (GLOBAL THEMES)
   ========================================= */

/* 1. Koyu (Dark - Varsayılan) */
[data-theme="dark"] {
    --bg-dark: #0a0a0f;
    --surface-dark: #12121a;
    --surface-glass: rgba(18, 18, 26, 0.6);
    --bg-base: linear-gradient(135deg, #020408, #0a1118);
    --bg-layer1: rgba(6, 13, 20, 0.6);
    --bg-layer2: rgba(10, 21, 32, 0.6);
    --bg-layer3: rgba(15, 30, 46, 0.6);
    --bg-card: rgba(8, 20, 35, 0.8);
    --bg-card-hover: rgba(12, 28, 48, 0.95);
    --text-primary: #e8f4f8;
    --text-secondary: rgba(232, 244, 248, 0.6);
    --text-muted: rgba(232, 244, 248, 0.35);
    --theme-color: #00d4ff;
    --theme-color-rgb: 0, 212, 255;
}

/* 2. Beyaz (Light) */
[data-theme="light"] {
    --bg-dark: #f8fafc;
    --surface-dark: #ffffff;
    --surface-glass: rgba(255, 255, 255, 0.8);
    --bg-base: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    --bg-layer1: rgba(255, 255, 255, 0.6);
    --bg-layer2: rgba(248, 250, 252, 0.6);
    --bg-layer3: rgba(241, 245, 249, 0.6);
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-card-hover: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --theme-color: #3b82f6;
    --theme-color-rgb: 59, 130, 246;
}

/* Helper: Light Mode Text (For white background sections in dark theme) */
.light-mode-text {
    --text-primary: #0f172a !important;
    --text-secondary: #475569 !important;
    --text-muted: #94a3b8 !important;
    color: #0f172a !important;
}
.light-mode-text h1, .light-mode-text h2, .light-mode-text h3, 
.light-mode-text h4, .light-mode-text h5, .light-mode-text h6 {
    color: #0f172a !important;
}
.light-mode-text p, .light-mode-text span, .light-mode-text div, 
.light-mode-text li, .light-mode-text td, .light-mode-text th, .light-mode-text label {
    color: #475569 !important;
}
.light-mode-text i {
    color: inherit;
}
.light-mode-text b, .light-mode-text strong {
    color: #0f172a !important;
}

/* 3. Ocean (Okyanus - Mavi/Yeşil Gradyan) */
[data-theme="ocean"] {
    --bg-dark: #0f172a;
    --surface-dark: #064e3b;
    --surface-glass: rgba(6, 78, 59, 0.6);
    --bg-base: linear-gradient(135deg, #020617, #059669);
    --bg-layer1: rgba(6, 78, 59, 0.5);
    --bg-layer2: rgba(15, 23, 42, 0.5);
    --bg-layer3: rgba(20, 30, 50, 0.5);
    --bg-card: rgba(6, 78, 59, 0.7);
    --bg-card-hover: rgba(6, 78, 59, 0.9);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.45);
    --theme-color: #10b981;
    --theme-color-rgb: 16, 185, 129;
}

/* 4. Sunset (Gün Batımı - Turuncu/Mor Gradyan) */
[data-theme="sunset"] {
    --bg-dark: #2e0618;
    --surface-dark: #431407;
    --surface-glass: rgba(67, 20, 7, 0.6);
    --bg-base: linear-gradient(135deg, #2e0618, #9a3412);
    --bg-layer1: rgba(67, 20, 7, 0.5);
    --bg-layer2: rgba(46, 6, 24, 0.5);
    --bg-layer3: rgba(56, 16, 34, 0.5);
    --bg-card: rgba(67, 20, 7, 0.7);
    --bg-card-hover: rgba(67, 20, 7, 0.9);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.45);
    --theme-color: #f97316;
    --theme-color-rgb: 249, 115, 22;
}

/* 5. Berry (Orman Meyvesi - Mor/Pembe Gradyan) */
[data-theme="berry"] {
    --bg-dark: #3b0764;
    --surface-dark: #4c1d95;
    --surface-glass: rgba(76, 29, 149, 0.6);
    --bg-base: linear-gradient(135deg, #2e1065, #a21caf);
    --bg-layer1: rgba(76, 29, 149, 0.5);
    --bg-layer2: rgba(107, 33, 168, 0.5);
    --bg-layer3: rgba(127, 43, 188, 0.5);
    --bg-card: rgba(88, 28, 135, 0.7);
    --bg-card-hover: rgba(88, 28, 135, 0.9);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.45);
    --theme-color: #d946ef;
    --theme-color-rgb: 217, 70, 239;
}

/* 6. Midnight (Gece Yarısı - Koyu Siyah/Lacivert Gradyan) */
[data-theme="midnight"] {
    --bg-dark: #020617;
    --surface-dark: #0f172a;
    --surface-glass: rgba(15, 23, 42, 0.6);
    --bg-base: linear-gradient(135deg, #020617, #1d4ed8);
    --bg-layer1: rgba(15, 23, 42, 0.5);
    --bg-layer2: rgba(30, 41, 59, 0.5);
    --bg-layer3: rgba(40, 51, 69, 0.5);
    --bg-card: rgba(15, 23, 42, 0.8);
    --bg-card-hover: rgba(15, 23, 42, 0.95);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.45);
    --theme-color: #8b5cf6;
    --theme-color-rgb: 139, 92, 246;
}

/* 7. Forest (Zümrüt - Siyah/Yeşil Gradyan) */
[data-theme="forest"] {
    --bg-dark: #022c22;
    --surface-dark: #064e3b;
    --surface-glass: rgba(6, 78, 59, 0.6);
    --bg-base: linear-gradient(135deg, #020617, #047857);
    --bg-layer1: rgba(6, 78, 59, 0.5);
    --bg-layer2: rgba(4, 120, 87, 0.5);
    --bg-layer3: rgba(14, 130, 97, 0.5);
    --bg-card: rgba(6, 78, 59, 0.8);
    --bg-card-hover: rgba(6, 78, 59, 0.95);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.45);
    --theme-color: #22c55e;
    --theme-color-rgb: 34, 197, 94;
}

/* 8. Gold (Siyah/Altın Işıltı) */
[data-theme="gold"] {
    --bg-dark: #292524;
    --surface-dark: #44403c;
    --surface-glass: rgba(68, 64, 60, 0.6);
    --bg-base: linear-gradient(135deg, #1c1917, #854d0e);
    --bg-layer1: rgba(68, 64, 60, 0.5);
    --bg-layer2: rgba(87, 83, 78, 0.5);
    --bg-layer3: rgba(97, 93, 88, 0.5);
    --bg-card: rgba(68, 64, 60, 0.8);
    --bg-card-hover: rgba(68, 64, 60, 0.95);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.45);
    --theme-color: #eab308;
    --theme-color-rgb: 234, 179, 8;
}

/* 9. Aqua (Turkuaz/Mavi Gradyan) */
[data-theme="aqua"] {
    --bg-dark: #083344;
    --surface-dark: #164e63;
    --surface-glass: rgba(22, 78, 99, 0.6);
    --bg-base: linear-gradient(135deg, #082f49, #0e7490);
    --bg-layer1: rgba(22, 78, 99, 0.5);
    --bg-layer2: rgba(21, 94, 117, 0.5);
    --bg-layer3: rgba(31, 104, 127, 0.5);
    --bg-card: rgba(22, 78, 99, 0.8);
    --bg-card-hover: rgba(22, 78, 99, 0.95);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.45);
    --theme-color: #06b6d4;
    --theme-color-rgb: 6, 182, 212;
}

/* 10. Rose (Gül Kurusu - Siyah/Kırmızı Gradyan) */
[data-theme="rose"] {
    --bg-dark: #4c0519;
    --surface-dark: #881337;
    --surface-glass: rgba(136, 19, 55, 0.6);
    --bg-base: linear-gradient(135deg, #4c0519, #be123c);
    --bg-layer1: rgba(136, 19, 55, 0.5);
    --bg-layer2: rgba(159, 18, 57, 0.5);
    --bg-layer3: rgba(169, 28, 67, 0.5);
    --bg-card: rgba(136, 19, 55, 0.8);
    --bg-card-hover: rgba(136, 19, 55, 0.95);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.45);
    --theme-color: #f43f5e;
    --theme-color-rgb: 244, 63, 94;
}

/* 11. Royal (Kraliyet - Lacivert/Elektrik Mavi Gradyan) */
[data-theme="royal"] {
    --bg-dark: #091d3e;
    --surface-dark: #0c2a5a;
    --surface-glass: rgba(9, 29, 62, 0.6);
    --bg-base: linear-gradient(to right, #091d3e, #104cba, #091d3e);
    --bg-layer1: rgba(9, 29, 62, 0.6);
    --bg-layer2: rgba(12, 42, 90, 0.6);
    --bg-layer3: rgba(16, 56, 120, 0.6);
    --bg-card: rgba(9, 29, 62, 0.8);
    --bg-card-hover: rgba(12, 42, 90, 0.95);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.45);
    --theme-color: #3b82f6;
    --theme-color-rgb: 59, 130, 246;
}

/* =========================================
   BASE RESET & GLOBAL
   ========================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* Accessibility: Support for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', 'Inter', sans-serif;
  background: var(--bg-base);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Aurora Arka Plan */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  animation: auroraShift 12s ease-in-out infinite alternate;
}
body::after {
  content: '';
  position: fixed;
  bottom: -30%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse at center,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  animation: auroraShift 15s ease-in-out infinite alternate-reverse;
}

@keyframes auroraShift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, 5%) scale(1.1); }
  100% { transform: translate(-3%, 8%) scale(0.95); }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.accent-text { color: var(--theme-color); }
.water-bg-container { display: none; }
.theme-text { color: var(--theme-color) !important; }
.theme-bg { background: var(--theme-color) !important; color: var(--bg-base) !important; }

/* =========================================
   FLOATING PARTICLES CANVAS
   ========================================= */
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* =========================================
   ULTRA HEADER — Cinematic Floating Nav
   ========================================= */
.juda-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1380px;
  z-index: 200000 !important;
  pointer-events: auto !important;
  background: var(--bg-layer1);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(var(--theme-rgb), 0.15);
  border-radius: var(--radius-full);
  padding: 0 10px 0 20px;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
}

.juda-header.scrolled {
  top: 8px;
  background: var(--bg-card);
  border-color: rgba(var(--theme-rgb), 0.25);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6), 0 0 40px rgba(var(--theme-rgb), 0.1);
}

body.inner-page .juda-header {
  background: var(--bg-card);
  border-color: rgba(var(--theme-rgb), 0.15);
}

.juda-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 8px;
  overflow: visible;
  min-width: 0;
}

/* Brand / Logo */
.juda-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.juda-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--theme-color), var(--df-green-dark));
  color: var(--bg-base);
  transition: var(--transition-spring);
  box-shadow: 0 4px 16px var(--brand-glow-soft);
  position: relative;
  overflow: hidden;
}

.juda-logo-icon::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transition: var(--transition-slow);
}

.juda-brand:hover .juda-logo-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 32px var(--brand-glow);
}

.juda-brand:hover .juda-logo-icon::before {
  top: 100%;
  left: 100%;
}

.juda-logo-text {
  font-weight: 800;
  font-size: 1rem;
  color: var(--theme-color);
  letter-spacing: -0.01em;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
}

/* Center Navigation */
.juda-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.juda-nav > ul {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

.juda-nav > ul > li {
  position: relative;
}

.juda-nav a {
  font-weight: 500;
  padding: 10px 16px;
  color: var(--text-secondary);
  font-size: 0.87rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.juda-nav > ul > li > a:hover,
.juda-nav > ul > li > a.active {
  color: var(--theme-color);
  background: rgba(var(--theme-rgb), 0.08);
}

.juda-nav a i {
  color: var(--theme-color);
}

.dropdown-arrow {
  font-size: 0.65rem;
  transition: transform 0.3s;
}

.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.juda-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--surface-dark);
  border: 1px solid rgba(var(--theme-rgb), 0.2);
  border-radius: var(--radius-lg);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 212, 255, 0.05);
}

.has-dropdown:hover > .juda-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.juda-dropdown a {
  padding: 11px 16px !important;
  color: var(--text-secondary) !important;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  font-weight: 500;
}

.juda-dropdown a:hover {
  background: rgba(var(--theme-rgb), 0.1) !important;
  color: var(--theme-color) !important;
  padding-left: 22px !important;
}

.juda-dropdown a:hover i {
  color: var(--theme-color) !important;
}

/* Submenu */
.juda-submenu {
  position: absolute;
  top: -8px;
  left: calc(100% + 8px);
  background: var(--surface-dark);
  border: 1px solid rgba(var(--theme-rgb), 0.2);
  border-radius: var(--radius-lg);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  padding: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.has-submenu:hover > .juda-submenu {
  opacity: 1;
  visibility: visible;
}

/* Right Actions */
.juda-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.juda-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--glass-bg);
  color: var(--text-secondary);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.juda-icon-btn:hover {
  background: rgba(0, 212, 255, 0.1);
  color: var(--theme-color);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.juda-btn-primary {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
}
.juda-btn-primary:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--theme-color);
}

.juda-btn-accent {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--theme-color), var(--df-green-dark));
  color: var(--bg-base);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-spring);
  border: none;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 20px var(--brand-glow-soft);
  position: relative;
  overflow: hidden;
}

.juda-btn-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}

.juda-btn-accent:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px var(--brand-glow);
}
.juda-btn-accent:hover::before { opacity: 1; }

.juda-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-size: 1.1rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 1020;
  position: relative;
}
.juda-mobile-toggle:hover { border-color: rgba(0,212,255,0.3); color: var(--theme-color); }

/* =========================================
   ULTRA HERO SECTION — Cinematic Full Screen
   ========================================= */
.juda-hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--bg-base);
  z-index: 1;
}

body.inner-page .juda-hero { display: none; }

/* Slider Slides */
.juda-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.juda-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease, transform 12s ease-out;
  filter: saturate(0.6) brightness(0.7);
}

.juda-slide.active img {
  opacity: 1;
  filter: saturate(0.8) brightness(0.55);
}

/* Slider Effect: Zoom In (Büyüyerek Gelir) */
.effect-zoom-in img { transform: scale(1.08); }
.effect-zoom-in.active img { transform: scale(1); }

/* Slider Effect: Zoom Out (Küçülerek Uzaklaş) */
.effect-zoom-out img { transform: scale(1.15); }
.effect-zoom-out.active img { transform: scale(1); }

/* Slider Effect: Slide Up (Aşağıdan Yukarı Kayar) */
.effect-slide-up img { transform: translateY(8%); }
.effect-slide-up.active img { transform: translateY(0); }

/* Slider Effect: Fade Right (Soldan Sağa Belirir) */
.effect-fade-right img { transform: translateX(-5%); }
.effect-fade-right.active img { transform: translateX(0); }

/* Slider Effect: Blur In (Bulanıktan Nete) */
.effect-blur-in img { filter: blur(20px) saturate(0.6) brightness(0.7); transform: scale(1.05); }
.effect-blur-in.active img { filter: blur(0) saturate(0.8) brightness(0.55); transform: scale(1); }

/* =========================================
   TEXT ANIMATION EFFECTS (HERO)
   ========================================= */
.text-effect-container {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.text-fade-up { transform: translateY(40px); }
.text-zoom-in { transform: scale(0.8); }
.text-slide-right { transform: translateX(-50px); }
.text-bounce { transform: translateY(-50px); }

.text-animate-active {
  opacity: 1 !important;
  transform: translate(0,0) scale(1) !important;
}

/* Sinematik Overlay */
.juda-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to right, rgba(2, 4, 8, 0.9) 0%, rgba(2, 4, 8, 0.5) 50%, transparent 100%),
    linear-gradient(to top, rgba(2, 4, 8, 0.8) 0%, transparent 50%);
}

/* Scan line efekti */
.juda-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  z-index: 3;
  pointer-events: none;
}

/* Hero İçerik */
.juda-hero-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}

/* Left Side */
.juda-hero-left {
  flex: 1;
  max-width: 700px;
  min-height: 450px; /* Reserve space to prevent CLS */
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: heroReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s both;
  will-change: transform, opacity;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(15px); /* Reduced from 40px to minimize shift */
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.juda-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--theme-color);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  border: 1px solid rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.juda-hero-badge::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  animation: shimmerBadge 3s ease infinite;
}

@keyframes shimmerBadge {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.juda-hero-badge i {
  font-size: 0.75rem;
  animation: pulseStar 2s ease infinite;
}

@keyframes pulseStar {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3) rotate(20deg); }
}

.juda-hero-title {
  font-size: clamp(3rem, 5.5vw, 5rem);
  color: var(--text-primary);
  line-height: 1.05;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-family: 'Outfit', sans-serif;
  display: block;
  min-height: 1.1em; /* Reserve at least one line height */
}

.juda-hero-title .accent-text {
  background: linear-gradient(135deg, var(--theme-color), var(--df-green-light), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.juda-hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

/* Stats */
.juda-hero-stats {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  width: fit-content;
  overflow: hidden;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(0, 212, 255, 0.05); }

.stat-icon {
  font-size: 1.2rem;
  color: var(--theme-color);
  margin-bottom: 6px;
  opacity: 0.8;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--theme-color);
  line-height: 1;
  letter-spacing: -0.03em;
  font-family: 'Outfit', sans-serif;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* CTA Butonları */
.juda-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.juda-cta-btn {
  padding: 15px 34px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-spring);
  cursor: pointer;
  border: none;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.juda-cta-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.juda-cta-btn:hover i { transform: translateX(5px); }

.cta-filled {
  background: linear-gradient(135deg, var(--theme-color), var(--df-green-dark));
  color: var(--bg-base);
  box-shadow: 0 8px 32px var(--brand-glow-soft);
}

.cta-filled::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}

.cta-filled:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px var(--brand-glow);
}
.cta-filled:hover::before { opacity: 1; }

.cta-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.cta-outline:hover {
  border-color: var(--theme-color);
  color: var(--theme-color);
  background: rgba(0, 212, 255, 0.06);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.1);
}

/* Right Card — Premium Glassmorphism */
.juda-hero-right {
  flex-shrink: 0;
  width: 380px;
  animation: heroReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.juda-hero-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(30px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: var(--transition);
}

.juda-hero-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 212, 255, 0.08);
  transform: translateY(-4px);
}

.juda-hero-card::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -40%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.juda-hero-card::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 100, 180, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.card-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--theme-color), var(--df-green-dark));
  color: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-spring);
  box-shadow: 0 8px 24px var(--brand-glow-soft);
}

.juda-hero-card:hover .card-icon-circle {
  transform: rotate(-8deg) scale(1.1);
  box-shadow: 0 12px 32px var(--brand-glow);
}

.juda-hero-card h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.juda-hero-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.card-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.card-avatars {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--bg-base);
  border: 2px solid var(--bg-base);
  margin-left: -10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.avatar:first-child { margin-left: 0; }

.card-clients-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 100, 180, 0.1));
  padding: 10px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 212, 255, 0.15);
}

.clients-count {
  font-weight: 800;
  font-size: 1rem;
  color: var(--theme-color);
  line-height: 1;
  font-family: 'Outfit', sans-serif;
}

.clients-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Slider Dots */
.juda-slider-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 5%;
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}

.juda-dot {
  width: 30px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.juda-dot::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--theme-color);
  transition: none;
}

.juda-dot.active {
  background: rgba(0, 212, 255, 0.3);
  width: 60px;
}

.juda-dot.active::after {
  left: 0;
  transition: left 6s linear;
}

/* =========================================
   TRUST BAR — Ultra Dark Glass
   ========================================= */
.trust-bar {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 212, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.04);
  margin-top: -50px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 10;
}

.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, transparent 50%, rgba(0, 100, 180, 0.03) 100%);
  pointer-events: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.trust-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.05), transparent);
  opacity: 0;
  transition: var(--transition);
}

.trust-item:hover::before { opacity: 1; }
.trust-item:last-child { border-right: none; }

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: var(--theme-color);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.15);
  transition: var(--transition-spring);
}

.trust-item:hover .trust-icon {
  background: linear-gradient(135deg, var(--theme-color), var(--df-green-dark));
  color: var(--bg-base);
  border-color: transparent;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px var(--brand-glow-soft);
}

.trust-info h4 {
  font-size: 0.92rem;
  margin-bottom: 2px;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.trust-info p { color: var(--text-muted); font-size: 0.8rem; }

/* =========================================
   ✦ ULTRA PREMIUM SECTION BAŞLIKLARI (GLASS WINDOW)
   ========================================= */
.premium-title-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 3rem 0 3rem;
  z-index: 5;
  width: fit-content;
  max-width: 100%;
  
  /* Glass Window Effect */
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 
    0 30px 60px rgba(0,0,0,0.5), 
    inset 0 1px 0 rgba(255,255,255,0.1);
  border-radius: 32px;
  padding: 30px 50px;
}

/* Pseudo element for glowing background orb */
.premium-title-wrap::before {
  content: '';
  position: absolute;
  top: -30px; left: -30px; right: -30px; bottom: -30px;
  background: radial-gradient(circle at center, rgba(34, 211, 238, 0.15), transparent 70%);
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
}

.premium-title-wrap.align-center {
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  border-top: 4px solid #22d3ee;
}

.premium-title-wrap.align-left,
.premium-title-wrap.align-leftx {
  align-items: flex-start;
  text-align: left;
  border-left: none;
  border-right: 4px solid #22d3ee;
  border-radius: 0 32px 32px 0;
  
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50% + 50px);
  
  animation: slideWindowIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.premium-title-wrap.align-leftx h2 {
  font-weight: 300 !important;
  letter-spacing: 0.02em !important;
  margin-bottom: -4px !important; /* Başlık altındaki boşluk iyice daraltıldı */
}
.premium-title-wrap.align-leftx {
  padding: 0 50px 8px 500px !important; /* Çok geniş sol girinti */
  margin: 0.2rem 0 !important;
  width: 51vw !important; /* Ekranın yarısı kadar genişlik */
  box-shadow: inset 0 8px 15px rgba(0,0,0,0.4), inset 0 2px 5px rgba(0,0,0,0.3) !important; 
}
.premium-title-wrap.align-righthizmetler {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Yazıyı kutunun (pencerenin) sol başına al */
  text-align: left;
  padding: 0 0 8px 60px !important; /* Kutunun içindeki sol pay */
  margin-left: auto !important;
  margin-right: calc(50% - 50vw) !important;
  width: 62vw !important; 
  border-radius: 32px 0 0 32px !important;
  border-left: 4px solid var(--theme-color) !important;
  border-right: none !important;
  box-shadow: inset 0 8px 15px rgba(0,0,0,0.4), inset 0 2px 5px rgba(0,0,0,0.3) !important; 
}
.premium-title-wrap.align-righthizmetler h2 {
  font-weight: 300 !important;
  letter-spacing: 0.02em !important;
  margin-bottom: -4px !important;
  display: flex;
  flex-direction: row; /* Sıralamayı normale döndürdük */
  align-items: center;
  gap: 20px;
}
.premium-title-wrap.align-righthizmetler h2 .highlight {
  font-weight: 500 !important;
  padding-bottom: 2px !important;
}
.premium-title-wrap.align-righthizmetler p {
  margin-top: 0 !important;
  font-size: 0.85rem !important;
}
.premium-title-wrap.align-leftx h2 .highlight {
  font-weight: 500 !important;
  padding-bottom: 2px !important;
}
.premium-title-wrap.align-leftx p {
  margin-top: 0 !important;
  font-size: 0.85rem !important;
}

.premium-title-wrap.align-right {
  align-items: flex-end;
  text-align: right;
  border-right: none;
  border-left: 4px solid #22d3ee;
  border-radius: 32px 0 0 32px;
  
  margin-left: auto;
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50% + 50px);
  
  animation: slideWindowInRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideWindowIn {
  0% { transform: translateX(-100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideWindowInRight {
  0% { transform: translateX(100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@media (max-width: 768px) {
  .premium-title-wrap {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .premium-title-wrap.align-leftx p,
  .premium-title-wrap.align-lefthizmetler p,
  .premium-title-wrap.align-righthizmetler p {
    display: none !important; /* Mobilde alt yazıyı kaldır */
  }
  .premium-title-wrap.align-leftx h2,
  .premium-title-wrap.align-lefthizmetler h2,
  .premium-title-wrap.align-righthizmetler h2 {
    font-size: 1.15rem !important; /* Yazının kırılmaması için biraz daha küçülttük */
    gap: 12px !important;
    white-space: nowrap; /* Tek satırda düz çıkması için */
  }
  .premium-title-wrap.align-left,
  .premium-title-wrap.align-leftx,
  .premium-title-wrap.align-lefthizmetler {
    margin-left: -15px !important;
    padding-left: 20px !important; 
    border-radius: 0 20px 20px 0 !important;
    width: calc(100% + 15px) !important;
    align-items: flex-start !important;
    text-align: left !important;
  }
  .premium-title-wrap.align-leftx,
  .premium-title-wrap.align-lefthizmetler {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .premium-title-wrap.align-right,
  .premium-title-wrap.align-righthizmetler {
    margin-right: -15px !important;
    padding-right: 20px !important;
    border-radius: 20px 0 0 20px !important;
    width: calc(100% + 15px) !important;
    align-items: flex-end !important;
    text-align: right !important;
  }
  .premium-title-wrap.align-righthizmetler {
    align-items: flex-start !important; /* Mobilde yazıyı düzeltmek için sola alıyoruz */
    text-align: left !important;
    padding-left: 20px !important;
    padding-right: 0 !important;
    margin-right: -15px !important;
    border-radius: 20px 0 0 20px !important;
  }
}

/* Şık Badge (Eyebrow) */
.premium-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.15));
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 0 15px rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

/* Işık Yansıması Animasyonu */
.premium-title-badge::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: badge-shine 5s ease-in-out infinite;
  transform: skewX(-20deg);
}
@keyframes badge-shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.premium-title-badge i {
  font-size: 1rem;
  color: #22d3ee;
  filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.8));
}

.premium-title-wrap h2 {
  font-size: clamp(2rem, 2vw, 3rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  text-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

/* Başlık içi vurgu (Glowing Cyan Gradient Text) */
.premium-title-wrap h2 .highlight {
  background: linear-gradient(135deg, #cffafe 0%, #22d3ee 50%, #0891b2 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: title-gradient 5s ease-in-out infinite alternate;
  position: relative;
  display: inline-block;
  padding-right: 5px;
  /* Altını çizmek için padding ekledik */
  padding-bottom: 10px;
}
@keyframes title-gradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Alt Çizgi Vurgusu - Neon Çizgi */
.premium-title-wrap h2 .highlight::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #22d3ee, transparent);
  z-index: 1;
  border-radius: 4px;
  box-shadow: 0 0 15px #22d3ee;
}

/* Açıklama Metni */
.premium-title-wrap p {
  font-size: 1.1rem;
  color: #f1f5f9;
  max-width: 650px;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Ortalanmış açıklama metni için margin auto */
.premium-title-wrap.align-center p {
  margin: 0 auto;
}

/* === Ana Sayfa Bölüm Ayrımları === */
.why-us-section,
.faydali-area,
.footer-reviews-section {
  position: relative;
}

/* =========================================
   ÜRÜN KARTLARI — 3D Premium Cards
   ========================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 2rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-slow);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0, 212, 255, 0.03) 0%,
    transparent 50%,
    rgba(0, 100, 180, 0.02) 100%
  );
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.product-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 212, 255, 0.06);
  transform: translateY(-8px);
}

.product-card:hover::before { opacity: 1; }

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--theme-color), var(--df-green-dark));
  color: var(--bg-base);
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  z-index: 10;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 16px var(--brand-glow-soft);
}

.product-img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: var(--bg-layer2);
  padding: 2.5rem;
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-slow);
}

.product-card:hover .product-img {
  background: var(--bg-layer3);
  transform: scale(1.05);
}

.product-info {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.product-info h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.prod-features {
  margin-bottom: 1.5rem;
  flex: 1;
}

.prod-features li {
  font-size: 0.86rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}

.prod-features li i {
  color: var(--theme-color);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.price-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 0;
  padding: 8px 0 0 0;
  border-top: 1px solid var(--glass-border);
}

.price-box .old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.price-box .new-price {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--theme-color);
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

.btn-buy {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(0, 100, 180, 0.08));
  color: var(--theme-color);
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(0, 212, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-spring);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.04em;
  font-family: 'Outfit', sans-serif;
  position: relative;
  overflow: hidden;
}

.btn-buy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--theme-color), var(--df-green-dark));
  opacity: 0;
  transition: var(--transition);
}

.btn-buy:hover {
  border-color: transparent;
  color: var(--bg-base);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--brand-glow);
}

.btn-buy:hover::before { opacity: 1; }
.btn-buy span, .btn-buy i { position: relative; z-index: 1; }

/* =========================================
   BLOG — Cinematic Cards
   ========================================= */
.blog-area {
  background: var(--bg-layer1);
  padding: 5rem 0;
  position: relative;
}

.blog-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,212,255,0.02) 50%, transparent);
  pointer-events: none;
}

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

.blog-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  border-color: rgba(0, 212, 255, 0.15);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 212, 255, 0.05);
}

.blog-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-card) 0%, transparent 50%);
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  filter: saturate(0.7) brightness(0.8);
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.08);
  filter: saturate(0.9) brightness(0.7);
}

.blog-content {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  color: var(--theme-color);
  font-size: 0.73rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.9rem;
  background: rgba(0, 212, 255, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 212, 255, 0.15);
  align-self: flex-start;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: var(--transition);
}
.blog-card:hover h3 { color: var(--theme-color); }

.blog-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
}

.read-more {
  color: var(--theme-color);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.read-more i { transition: transform 0.3s; font-size: 0.75rem; }
.blog-card:hover .read-more i { transform: translateX(6px); }

/* =========================================
   WHY US SECTION (YENİ)
   ========================================= */
.why-us-section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}

.why-us-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  transition: var(--transition-slow);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  cursor: default;
  box-shadow: var(--shadow-sm);
}

.why-us-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--theme-color), transparent);
  opacity: 0;
  transition: var(--transition);
}

.why-us-card:hover {
  border-color: rgba(0, 212, 255, 0.15);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 212, 255, 0.05);
}

.why-us-card:hover::before { opacity: 1; }

.why-num {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0, 212, 255, 0.06);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.04em;
  transition: var(--transition);
}

.why-us-card:hover .why-num { color: rgba(0, 212, 255, 0.12); }

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--theme-color);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.12);
  margin-bottom: 1.2rem;
  transition: var(--transition-spring);
}

.why-us-card:hover .why-icon {
  background: linear-gradient(135deg, var(--theme-color), var(--df-green-dark));
  color: var(--bg-base);
  border-color: transparent;
  transform: rotate(-8deg) scale(1.1);
}

.why-us-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.why-us-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =========================================
   FOOTER — Ultra Dark Premium
   ========================================= */
.ultra-footer {
  background: var(--bg-layer1);
  color: var(--text-secondary);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.ultra-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}

.ultra-footer::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-title {
  font-size: 0.78rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  transition: var(--transition);
  font-weight: 400;
}

.footer-links a i { font-size: 0.65rem; color: var(--theme-color); }
.footer-links a:hover { color: var(--theme-color); transform: translateX(5px); }

/* =========================================
   BUTONLAR
   ========================================= */
.btn-3d {
  padding: 14px 36px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--theme-color), var(--df-green-dark));
  color: var(--bg-base);
  border: none;
  cursor: pointer;
  transition: var(--transition-spring);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 28px var(--brand-glow-soft);
  position: relative;
  overflow: hidden;
}

.btn-3d::before { display: none; }
.btn-3d::after { display: none; }
.btn-pulse { animation: none; }

.btn-3d:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px var(--brand-glow);
}

.btn-outline-df {
  padding: 14px 36px;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.btn-outline-df:hover {
  border-color: var(--theme-color);
  color: var(--theme-color);
  background: rgba(0, 212, 255, 0.06);
}

/* =========================================
   TEMA CUSTOMIZER
   ========================================= */
.theme-customizer {
  position: fixed;
  left: 50%;
  top: 100px;
  transform: translateX(-50%) translateY(-10px);
  width: 340px;
  background: var(--bg-card);
  backdrop-filter: blur(30px) saturate(150%);
  border: 1px solid rgba(0, 212, 255, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 212, 255, 0.05);
  border-radius: var(--radius-xl);
  z-index: 9999;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-customizer.open {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

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

.customizer-title { font-weight: 700; color: var(--text-primary); font-size: 0.9rem; }
.customizer-close { cursor: pointer; font-size: 1.2rem; color: var(--text-muted); transition: var(--transition); }
.customizer-close:hover { color: #ff4466; }

.color-options { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 16px; }

.color-circle {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-spring);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.color-circle:hover { transform: scale(1.2); }
.color-circle.active { border-color: var(--df-white); transform: scale(1.2); }

.custom-color-picker {
  margin-top: 6px;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  height: 44px;
  cursor: pointer;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
}
.color-label { display: block; font-size: 0.75rem; font-weight: 600; margin-top: 12px; color: var(--text-muted); }

/* =========================================
   OFF-CANVAS SIDEBAR
   ========================================= */
.offcanvas-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  height: 100vh;
  background: var(--bg-dark, #0a0a0f); /* Matte background */
  border-left: 1px solid var(--glass-border);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  box-shadow: -20px 0 80px rgba(0, 0, 0, 0.6);
  transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  color: var(--text-primary);
}

.offcanvas-sidebar.open { right: 0; }

.offcanvas-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
  background: var(--bg-dark, #0a0a0f);
  border-radius: var(--radius-lg) 0 0 0;
}

.offcanvas-close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}
.offcanvas-close-btn:hover { color: #ff4466; background: rgba(255, 68, 102, 0.1); }

.offcanvas-content { padding: 2rem; flex: 1; overflow-y: auto; }
.sidebar-section { margin-bottom: 2.5rem; }

.sidebar-section h4 {
  font-size: 0.78rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--glass-border);
  color: var(--theme-color);
}

.sidebar-section p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.65; }

.sidebar-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 2rem; }

.sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition-spring);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  font-family: 'Outfit', sans-serif;
}

.sidebar-btn.whatsapp-btn { background: #25D366; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
.sidebar-btn.whatsapp-btn:hover { background: #1da54e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

.sidebar-btn.phone-btn {
  background: rgba(0, 212, 255, 0.1);
  color: var(--theme-color);
  border: 1px solid rgba(0, 212, 255, 0.2);
}
.sidebar-btn.phone-btn:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--brand-glow-soft);
}

.sidebar-footer {
  text-align: center;
  margin-top: auto;
  padding: 1.5rem;
  border-top: 1px solid var(--glass-border);
  background: var(--bg-dark, #0a0a0f); /* Matte background */
}

.direct-phone {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  display: inline-block;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}
.direct-phone:hover { color: var(--theme-color); }

.offcanvas-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1005;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s;
  backdrop-filter: blur(6px);
}
.offcanvas-overlay.open { opacity: 1; visibility: visible; }

/* =========================================
   SCROLL REVEAL ANİMASYONLARI
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================
   GLOWING DIVIDER
   ========================================= */
.glow-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.2), transparent);
  margin: 2rem 0;
  position: relative;
}

.glow-divider::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--theme-color), transparent);
  filter: blur(4px);
}

/* Hide icon labels on desktop by default */
.icon-label { display: none; }

/* =========================================
   MOBILE NAV
   ========================================= */
@media (max-width: 1024px) {
  .juda-nav { display: none; }
  .juda-actions { display: flex; gap: 8px; margin-right: auto; margin-left: 10px; }
  .android-action-btn .icon-circle { width: 34px; height: 34px; font-size: 0.95rem; }
  .android-action-btn .icon-label { display: none; }
  .juda-mobile-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-left: auto;
  }
  .juda-header {
    position: fixed !important;
    top: 10px !important;
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
    max-width: none !important;
    transform: none !important;
    padding: 0 12px !important;
    overflow: visible !important;
  }
  .juda-nav-container {
    width: 100% !important;
    overflow: visible !important;
    gap: 10px;
  }
  .juda-brand { flex-shrink: 0; min-width: 0; }
  .juda-logo-text { display: none; }
  .juda-hero-right { display: none; }

  .juda-nav.mobile-open {
    display: flex !important;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: var(--bg-card);
    backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }

  .juda-nav.mobile-open > ul {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .juda-nav.mobile-open a {
    font-size: 1.1rem;
    padding: 14px 32px;
  }

  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .juda-hero-title { font-size: 1.8rem; margin-bottom: 0.6rem; }
  .juda-hero-desc { display: none; }
  .juda-hero-badge { margin-bottom: 0.4rem; padding: 2px 8px; font-size: 0.5rem; }
  .products-grid, .blog-grid, .footer-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .trust-item { border-right: 1px solid rgba(255, 255, 255, 0.04); border-bottom: 1px solid rgba(255, 255, 255, 0.04); padding: 20px 15px; }
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
  .trust-bar { margin-top: -10px; }
  .section-title-wrap { margin: 4rem 0 2rem; }
  .juda-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 0;
  }
  .stat-item { 
    padding: 2px 1px; 
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: none;
    justify-content: center;
  }
  .stat-item:last-child { border-right: none; }
  .stat-number { font-size: 0.75rem; }
  .stat-label { font-size: 0.45rem; letter-spacing: 0.01em; }
  
  .juda-hero-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }
  .juda-cta-btn {
    padding: 5px 4px;
    font-size: 0.65rem;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }
  .juda-hero { min-height: 250px; }
  .juda-header {
    top: 5px !important;
    left: 5px !important;
    right: 5px !important;
  }
  .juda-hero-content { padding: 170px 5% 10px; align-items: flex-start; }
}

/* =========================================
   FOOTER REVIEWS (RESPONSIVE)
   ========================================= */
.footer-review-item {
  flex: 0 0 calc(20% - 16px);
}

@media (max-width: 1200px) {
  .footer-review-item {
    flex: 0 0 calc(33.333% - 13.333px);
  }
}

@media (max-width: 768px) {
  .footer-review-item {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 576px) {
  .footer-review-item {
    flex: 0 0 100%;
  }
}

/* =========================================
   ULTRA PREMIUM MOBILE OVERLAY
   ========================================= */

@media (max-width: 1024px) {
  /* Header Adjustments for Mobile */
  html, body {
      overflow-x: hidden;
  }
  .juda-header {
      top: 10px !important;
      left: 10px !important;
      width: calc(100% - 20px) !important;
      transform: none !important;
      padding: 0 15px !important;
      border-radius: var(--radius-lg) !important;
  }
  .juda-nav-container {
      height: 60px;
  }
  .juda-nav {
      display: none !important;
  }
  .juda-actions {
      display: flex !important;
      gap: 5px;
      margin-left: auto;
      margin-right: 15px;
  }
  .android-action-btn .icon-circle {
      width: 32px !important;
      height: 32px !important;
      font-size: 0.85rem !important;
  }
  .android-action-btn .icon-label {
      display: none !important;
  }
  .juda-mobile-overlay {
      z-index: -1 !important;
  }
  .juda-mobile-overlay.active {
      z-index: 1000000 !important;
  }
  .juda-mobile-toggle {
      display: flex !important;
      flex-direction: column;
      gap: 5px;
      background: rgba(0, 212, 255, 0.1) !important;
      border-color: rgba(0, 212, 255, 0.2) !important;
  }
  
  .juda-brand .juda-logo-text { font-size: 0.9rem; }
  .juda-brand .juda-logo-icon { width: 34px; height: 34px; font-size: 1rem; }
}

/* Toggle lines */
.m-line {
  width: 20px;
  height: 2px;
  background: var(--theme-color);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.menu-active .juda-mobile-toggle .m-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-active .juda-mobile-toggle .m-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.menu-active .juda-mobile-toggle .m-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Overlay Container */
.juda-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1015; /* Header'ın altında olsun ki header gözüksün ama body'nin üstünde */
  pointer-events: none;
  display: flex;
  visibility: hidden;
}

.juda-mobile-overlay.active {
  pointer-events: auto;
  visibility: visible;
}

/* Overlay Background */
.mobile-overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.juda-mobile-overlay.active .mobile-overlay-bg {
  opacity: 1;
}

/* Overlay Content Box */
.mobile-overlay-content {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 100%;
  margin-left: auto;
  background: #0f172a; /* Matte background */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -15px 0 50px rgba(0,0,0,0.5), inset 1px 0 0 rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.juda-mobile-overlay.active .mobile-overlay-content {
  transform: translateX(0);
}

/* Overlay Header */
.mobile-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-spring);
}
.mobile-close-btn:hover {
  background: rgba(255,60,60,0.2);
  color: #ff4444;
  transform: rotate(90deg);
}

/* Menu Items Wrapper */
.mobile-nav-wrapper {
  flex: 1;
  overflow-y: auto;
  padding: 20px 25px;
}

.mobile-nav-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav-wrapper li {
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.juda-mobile-overlay.active .mobile-nav-wrapper li {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered entrance */
.juda-mobile-overlay.active .mobile-nav-wrapper > ul > li:nth-child(1) { transition-delay: 0.1s; }
.juda-mobile-overlay.active .mobile-nav-wrapper > ul > li:nth-child(2) { transition-delay: 0.15s; }
.juda-mobile-overlay.active .mobile-nav-wrapper > ul > li:nth-child(3) { transition-delay: 0.2s; }
.juda-mobile-overlay.active .mobile-nav-wrapper > ul > li:nth-child(4) { transition-delay: 0.25s; }
.juda-mobile-overlay.active .mobile-nav-wrapper > ul > li:nth-child(5) { transition-delay: 0.3s; }
.juda-mobile-overlay.active .mobile-nav-wrapper > ul > li:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav-wrapper a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition);
}

.mobile-nav-wrapper a:hover,
.mobile-nav-wrapper a.active {
  background: rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.15);
  color: var(--theme-color);
  padding-left: 25px;
}

.mobile-nav-wrapper .dropdown-arrow,
.mobile-nav-wrapper .fa-angle-right {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  padding: 5px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Accordion Submenu state */
.mobile-nav-wrapper .has-dropdown.open > a .dropdown-arrow,
.mobile-nav-wrapper .has-submenu.open > a .fa-angle-right {
  transform: rotate(180deg);
  background: var(--theme-color);
  color: var(--bg-base);
}

/* Submenus */
.mobile-nav-wrapper .juda-dropdown,
.mobile-nav-wrapper .juda-submenu {
  display: none;
  padding-left: 15px;
  margin-top: 10px;
  position: static;
  background: transparent;
  box-shadow: none;
  border: none;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-nav-wrapper .has-dropdown.open > .juda-dropdown,
.mobile-nav-wrapper .has-submenu.open > .juda-submenu {
  display: flex !important;
}

.mobile-nav-wrapper .has-dropdown.open > .faydali-mega-dropdown {
  display: block !important;
  position: static !important;
  transform: none !important;
  width: 100% !important;
  opacity: 1 !important;
  visibility: visible !important;
  border-radius: 0 0 12px 12px;
  box-shadow: none;
  border: none;
  border-left: 2px solid var(--theme-color);
  margin-top: 10px;
  background: transparent;
}

.mobile-nav-wrapper .faydali-mega-dropdown {
  display: none;
  position: static;
  transform: none;
  width: 100%;
  opacity: 1;
  visibility: visible;
  box-shadow: none;
  border: none;
  background: transparent;
}

.mobile-nav-wrapper .fmd-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 10px;
}

.mobile-nav-wrapper .juda-dropdown a,
.mobile-nav-wrapper .juda-submenu a {
  font-size: 0.95rem;
  padding: 10px 15px;
  background: rgba(255,255,255,0.01);
  margin-bottom: 5px;
}

/* Mobile Footer */
.mobile-overlay-footer {
  padding: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.mobile-socials a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.2rem;
  transition: var(--transition);
}

.mobile-socials a:hover {
  background: var(--theme-color);
  color: var(--bg-base);
  transform: translateY(-5px);
}

/* =========================================
   BENTO GRID (FAYDALI BİLGİLER)
   ========================================= */
.faydali-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 24px;
    grid-auto-flow: dense;
}

.bento-item {
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
}
.bento-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.15);
}

.bento-small { grid-column: span 1; grid-row: span 1; justify-content: center; align-items: center; text-align: center; }
.bento-tall-left, .bento-tall-right { grid-column: span 1; grid-row: span 2; text-align: center; }
.bento-wide { grid-column: span 2; grid-row: span 2; justify-content: center; align-items: center; text-align: center; }
.bento-large { grid-column: span 2; grid-row: span 2; }

.bento-img-wrap {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 45%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bento-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.5));
    transition: transform 0.5s;
}
.bento-item:hover .bento-img-wrap img {
    transform: scale(1.1) translateY(-10px);
}

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-icon {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
    opacity: 0.9;
}

.bento-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    font-family: 'Outfit', sans-serif;
}

.bento-summary {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .faydali-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .faydali-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .bento-tall-left, .bento-tall-right, .bento-wide, .bento-small, .bento-large {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 200px;
    }
}

/* =========================================
   GLOBAL THEME OVERRIDES (ZORUNLU GEÇİŞLER)
   ========================================= */
html[data-theme] #push-wrapper,
html[data-theme] .why-us-section,
html[data-theme] [style*="background:#f8fafc"],
html[data-theme] [style*="background: #f8fafc"],
html[data-theme] [style*="background:#fff"],
html[data-theme] [style*="background: #fff"],
html[data-theme] [style*="background:#ffffff"],
html[data-theme] [style*="background: #ffffff"] {
    background: transparent !important;
}

html[data-theme] .rp-hero {
    background: transparent !important;
    overflow: visible !important;
    position: relative;
    z-index: 5 !important;
    clip-path: none !important; /* Prevent clipping of the game banner */
}

html[data-theme] .rp-hero-bg {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    z-index: 0 !important;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 4.5vw)) !important;
}

html[data-theme] .rp-hero-overlay {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    background: var(--bg-base) !important;
    opacity: 0.92 !important;
    z-index: 1 !important;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 4.5vw)) !important;
}

html[data-theme] .rp-hero::after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: var(--theme-color) !important;
    clip-path: polygon(0 calc(100% - 4.5vw - 2px), 100% calc(100% - 2px), 100% 100%, 0 calc(100% - 4.5vw)) !important;
    z-index: 3 !important;
    pointer-events: none !important;
}

/* === Kayan Işık Animasyonları (Tek Seferlik) === */
@keyframes sweepShimmerLine {
    0%   { left: -30%; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { left: 130%; opacity: 0; }
}

/* Breadcrumb üst çizgisi - beyaz ışık kayması */
html[data-theme] .rp-breadcrumb-list {
    position: relative !important;
    overflow: hidden !important;
}

html[data-theme] .rp-breadcrumb-list::after {
    content: "" !important;
    position: absolute !important;
    bottom: -1px !important;
    left: -30% !important;
    width: 30% !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, #ffffff, transparent) !important;
    animation: sweepShimmerLine 1.8s ease-out 0.5s 1 forwards !important;
    z-index: 10 !important;
    pointer-events: none !important;
}

/* Hero eğim çizgisi - altın ışık kayması */
html[data-theme] .rp-hero::before {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: -30% !important;
    width: 25% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.9), transparent) !important;
    clip-path: polygon(0 calc(100% - 4.5vw - 2px), 100% calc(100% - 2px), 100% 100%, 0 calc(100% - 4.5vw)) !important;
    z-index: 4 !important;
    pointer-events: none !important;
    animation: sweepShimmerLine 2s ease-in-out 0.8s 1 forwards !important;
}

/* Footer eğim çizgisi - camgöbeği ışık kayması */
html[data-theme] .upf::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -30% !important;
    width: 25% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(0,255,200,0.9), transparent) !important;
    clip-path: polygon(0 4vw, 100% 0, 100% 2px, 0 calc(4vw + 2px)) !important;
    z-index: 2 !important;
    pointer-events: none !important;
    animation: sweepShimmerLine 2s ease-in-out 1s 1 forwards !important;
}

.game-hero-banner {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 150vw; 
    z-index: 10 !important; 
    height: 44px;
    background: rgba(var(--theme-color-rgb), 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    overflow: hidden;
    text-decoration: none !important;
    transform: translateX(-50%) translateY(12px) rotate(2.5deg); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    pointer-events: none; /* Crucial: Let clicks pass through the huge transparent parts */
}

.game-hero-banner .game-ticker {
    pointer-events: auto; /* Re-enable clicks on the actual content */
}


/* Specific adjustments for Homepage Hero */
.juda-hero .game-hero-banner {
    bottom: -22px;
    z-index: 15;
}



/* Mobile specific positioning to ensure visibility */
@media (max-width: 991px) {
    .game-hero-banner {
        width: 200vw;
        height: 24px; 
        transform: translateX(calc(-50% + 10px)) translateY(20px) rotate(2.5deg); 
        background: rgba(var(--theme-color-rgb), 0.9);
        pointer-events: none;
    }
    .game-hero-banner span {
        font-size: 0.55rem !important; 
        letter-spacing: 0.5px;
    }
    .game-hero-banner i {
        font-size: 0.65rem !important; 
    }
}



.game-hero-banner:hover .game-ticker-item {
    background: rgba(var(--theme-color-rgb), 0.3);
    border-color: rgba(255,255,255,0.4);
    transform: scale(1.05);
}

.game-hero-banner i {
    font-size: 1.3rem;
    color: #fff;
}

.game-ticker {
    display: flex;
    overflow: visible !important;
    user-select: none;
    padding: 0;
    width: 100%;
    pointer-events: auto;
}


.game-ticker-track {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    animation: game-scroll 60s linear infinite;
}


.game-ticker-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    white-space: nowrap;
    padding: 0 40px; /* Space between repeated text */
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}


@keyframes game-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

@keyframes game-bounce {
    from { transform: translateY(0) scale(1); }
    to { transform: translateY(-5px) scale(1.2); filter: drop-shadow(0 0 10px #fff); }
}

.game-hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: badge-shine 4s infinite;
    transform: skewX(-20deg);
}

/* Footer Temalandırması */
html[data-theme] .upf {
    background: var(--bg-base) !important;
    color: var(--text-secondary) !important;
}

html[data-theme] .upf::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: var(--theme-color) !important;
    clip-path: polygon(0 4vw, 100% 0, 100% 2px, 0 calc(4vw + 2px)) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

html[data-theme] .upf-stat-num {
    background: transparent !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    color: var(--text-primary) !important;
}

html[data-theme] .upf-stat-lbl,
html[data-theme] .upf-footer-text,
html[data-theme] .upf a {
    color: var(--text-secondary) !important;
}

html[data-theme] .upf-stats {
    background: var(--bg-layer1) !important;
    border-color: var(--theme-color) !important;
}

html[data-theme] .upf-stat {
    background: var(--bg-layer2) !important;
}

html[data-theme] .upf-stat:hover {
    background: var(--bg-layer3) !important;
}

/* Footer Link/Badge/Contact Çerçeveleri (Tüm Temalar) */
html[data-theme] .upf-link-list li a {
    border: 1px solid rgba(var(--theme-color-rgb), 0.3) !important;
    border-left: 3px solid var(--theme-color) !important;
}

html[data-theme] .upf-link-list li a:hover {
    border-color: var(--theme-color) !important;
    border-left: 3px solid var(--theme-color) !important;
}

html[data-theme] .upf-contact-item {
    border: 1px solid rgba(var(--theme-color-rgb), 0.3) !important;
}

html[data-theme] .upf-badge {
    border: 1px solid rgba(var(--theme-color-rgb), 0.3) !important;
}

html[data-theme] .upf-social-btn {
    border: 1px solid rgba(var(--theme-color-rgb), 0.3) !important;
}

html[data-theme] .upf-col-title {
    border-bottom: 1px solid rgba(var(--theme-color-rgb), 0.3) !important;
}

html[data-theme] .upf-grid {
    border-bottom: 1px solid rgba(var(--theme-color-rgb), 0.2) !important;
}

/* Header Transparanlık ve Belirginlik */
html[data-theme] .juda-header {
    background: #081423 !important; /* Fully opaque matte background */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

html[data-theme] .juda-header.scrolled {
    background: var(--bg-card) !important;
    border: 1px solid var(--theme-color) !important;
    box-shadow: 0 12px 48px rgba(0,0,0,0.3), 0 0 20px rgba(var(--theme-color-rgb),0.15) !important;
}

html[data-theme="light"] .juda-header {
    border: 1px solid rgba(0,0,0,0.15) !important;
}

html[data-theme="light"] .juda-header.scrolled {
    border: 1px solid var(--theme-color) !important;
    box-shadow: 0 12px 48px rgba(0,0,0,0.08), 0 0 20px rgba(var(--theme-color-rgb),0.1) !important;
}

/* Footer Link Çerçeveleri (Light Tema) */
html[data-theme="light"] .upf-link-list li a {
    border: 1px solid rgba(0,0,0,0.12) !important;
    border-left: 3px solid var(--theme-color) !important;
    background: rgba(0,0,0,0.02) !important;
    color: var(--text-secondary) !important;
}

html[data-theme="light"] .upf-link-list li a:hover {
    border-color: var(--theme-color) !important;
    border-left: 3px solid var(--theme-color) !important;
    background: rgba(0,0,0,0.05) !important;
    color: var(--theme-color) !important;
}

html[data-theme="light"] .upf-contact-item {
    border: 1px solid rgba(0,0,0,0.12) !important;
    background: rgba(0,0,0,0.02) !important;
    color: var(--text-secondary) !important;
}

html[data-theme="light"] .upf-badge {
    border: 1px solid rgba(0,0,0,0.12) !important;
    background: rgba(0,0,0,0.02) !important;
    color: var(--text-secondary) !important;
}

html[data-theme="light"] .upf-social-btn {
    border: 1px solid rgba(0,0,0,0.12) !important;
    background: rgba(0,0,0,0.02) !important;
}

html[data-theme] .juda-header a,
html[data-theme] .juda-header span {
    color: var(--text-primary) !important;
    text-shadow: none !important;
}

html[data-theme] .juda-header i {
    color: var(--theme-color) !important;
    text-shadow: none !important;
}

html[data-theme] .juda-nav i,
html[data-theme] .juda-nav a i[style] {
    color: var(--theme-color) !important;
    opacity: 1 !important;
}

html[data-theme] .juda-logo-icon {
    background: linear-gradient(135deg, var(--theme-color), rgba(var(--theme-color-rgb), 0.6)) !important;
    box-shadow: 0 4px 15px rgba(var(--theme-color-rgb), 0.3) !important;
}

html[data-theme] .juda-logo-icon i {
    color: #fff !important;
}

html[data-theme] .juda-header a:hover,
html[data-theme] .juda-header a:hover i {
    color: var(--theme-color) !important;
}

html[data-theme="light"] .juda-header a,
html[data-theme="light"] .juda-header span,
html[data-theme="light"] .juda-header i {
    text-shadow: none !important;
}

/* İkon Temalandırması (Global) */
html[data-theme] i.fa-solid,
html[data-theme] i.fa-regular,
html[data-theme] i.fa-brands,
html[data-theme] i.fas,
html[data-theme] i.fab,
html[data-theme] i.far,
html[data-theme] i.fa,
html[data-theme] i.bi {
    color: var(--theme-color) !important;
}

/* Korumalı İkonlar (Buton içi, Header, Footer vb.) */
html[data-theme] .juda-btn i,
html[data-theme] .btn i,
html[data-theme] button i,
html[data-theme] .juda-header i,
html[data-theme] .upf i,
html[data-theme] .text-white i,
html[data-theme] .rp-hero i,
html[data-theme] .social-icon i,
html[data-theme] .badge i,
html[data-theme] .bg-primary i,
html[data-theme] .bg-success i,
html[data-theme] .bg-danger i,
html[data-theme] .bg-warning i,
html[data-theme] .bg-info i,
html[data-theme] .icon-circle i,
html[data-theme] .android-action-btn i,
html[data-theme] .juda-actions i,
html[data-theme] .sticky-action-btn i,
html[data-theme] .sticky-action-bar i {
    color: inherit !important;
}

html[data-theme] .juda-header a:hover i {
    color: var(--theme-color) !important;
}

html[data-theme] .juda-header .dropdown-menu {
    background: var(--bg-card) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
}

html[data-theme="light"] .juda-header .dropdown-menu {
    border: 1px solid rgba(0,0,0,0.15) !important;
}

/* Faydalı Bilgiler Mega Dropdown Temalandırma */
html[data-theme] .faydali-mega-dropdown {
    background: var(--bg-card) !important;
    border-color: var(--theme-color) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4) !important;
}

html[data-theme] .fmd-left {
    background: var(--bg-layer1) !important;
    border-right-color: rgba(var(--theme-color-rgb), 0.2) !important;
}

html[data-theme] .fmd-left-title,
html[data-theme] .fmd-left-title a {
    color: var(--text-primary) !important;
}

html[data-theme] .fmd-link-list li a {
    color: var(--theme-color) !important;
}

html[data-theme] .fmd-link-list li a:hover {
    color: var(--text-primary) !important;
    background: rgba(var(--theme-color-rgb), 0.15) !important;
    border-left-color: var(--theme-color) !important;
}

html[data-theme] .fmd-card-title {
    color: var(--text-secondary) !important;
}

html[data-theme] .fmd-card:hover .fmd-card-title {
    color: var(--theme-color) !important;
}

html[data-theme] .fmd-card-img {
    background: var(--bg-layer2) !important;
    border-color: rgba(var(--theme-color-rgb), 0.2) !important;
}

html[data-theme] .fmd-card:hover .fmd-card-img {
    border-color: var(--theme-color) !important;
}

html[data-theme="light"] .fmd-left {
    background: rgba(0,0,0,0.03) !important;
    border-right-color: rgba(0,0,0,0.08) !important;
}

html[data-theme="light"] .faydali-mega-dropdown {
    background: rgba(255,255,255,0.95) !important;
    border-color: var(--theme-color) !important;
}

html[data-theme] .why-us-card,
html[data-theme] .rp-card,
html[data-theme] .product-card,
html[data-theme] .user-dropdown-menu,
html[data-theme] .juda-modal-content {
    background-color: var(--bg-card) !important;
    border: 1px solid var(--theme-color) !important;
}

html[data-theme] .user-dropdown-menu .user-info {
    background: var(--bg-layer2) !important;
    border-color: var(--theme-color) !important;
}

html[data-theme] h1[style],
html[data-theme] h2[style],
html[data-theme] h3[style],
html[data-theme] h4[style],
html[data-theme] h5[style],
html[data-theme] h6[style],
html[data-theme] .user-dropdown-menu .user-info strong {
    color: var(--text-primary) !important;
    line-height: 1.4 !important;
}

html[data-theme] p[style*="color:#64748b"],
html[data-theme] p[style*="color: #64748b"],
html[data-theme] div[style*="color:#64748b"],
html[data-theme] span[style*="color:#64748b"],
html[data-theme] .user-dropdown-menu a {
    color: var(--text-secondary) !important;
    line-height: 1.6 !important;
}

html[data-theme] #floating-sidebar p,
html[data-theme] .juda-sidebar p {
    line-height: 1.6 !important;
    margin-top: 6px !important;
}

html[data-theme] #floating-sidebar h4,
html[data-theme] .juda-sidebar h4 {
    line-height: 1.4 !important;
    margin-bottom: 4px !important;
}

html[data-theme] .user-dropdown-menu a:hover {
    background: var(--bg-layer3) !important;
    color: var(--theme-color) !important;
}

html[data-theme] #floating-sidebar,
html[data-theme] .juda-sidebar {
    background: linear-gradient(to bottom, var(--bg-layer1), var(--bg-layer2)) !important;
    border-right: 1px solid var(--theme-color) !important;
}

html[data-theme] #floating-sidebar > div[style*="background:linear-gradient"] {
    background: transparent !important;
}

html[data-theme] [style*="border-bottom:1px solid #e2e8f0"],
html[data-theme] [style*="border:1px solid #e2e8f0"],
html[data-theme] [style*="border:1px solid rgba(255,255,255,0.06)"],
html[data-theme] [style*="border-bottom:1px solid rgba(255,255,255,0.06)"] {
    border-color: var(--theme-color) !important;
}

html[data-theme] #floating-sidebar a,
html[data-theme] .juda-sidebar a {
    border-color: var(--theme-color) !important;
}

html[data-theme="light"] #floating-sidebar a:hover,
html[data-theme="light"] .juda-sidebar a:hover {
    background: rgba(0,0,0,0.05) !important;
}

/* Sidebar Header Scroll Fix */
#floating-sidebar > div[style*="position:sticky"] {
    position: relative !important;
}

/* Tablo Temalandırması */
html[data-theme] table th,
html[data-theme] table td,
html[data-theme] .items-table th,
html[data-theme] .items-table td {
    border-color: var(--theme-color) !important;
}

html[data-theme] table th,
html[data-theme] .items-table th {
    background: var(--bg-layer2) !important;
    color: var(--text-primary) !important;
}

html[data-theme] table tr:hover td,
html[data-theme] .items-table tr:hover td {
    background: var(--bg-layer3) !important;
}

/* Campaign Countdown Timer Global */
.fcard-timer {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 4;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    display: flex;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}
.ftimer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 24px;
}
.ftimer-val {
    font-size: 0.9rem;
    font-weight: 900;
}
.ftimer-label {
    font-size: 0.55rem;
    font-weight: 700;
    margin-top: 2px;
    opacity: 0.85;
}

/* =========================================
   ✦ ŞAHESER TRANSITIONS (LASER BEAM)
   ========================================= */
.transition-laser-wrapper {
    position: relative;
    width: 100%;
    height: 1px;
    margin: 0;
    padding: 0;
    overflow: visible;
    background: transparent;
    z-index: 10;
}

.transition-laser {
    position: relative;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(var(--theme-color-rgb), 0.1) 20%, 
        rgba(var(--theme-color-rgb), 0.6) 40%, 
        rgba(var(--theme-color-rgb), 1) 50%, 
        rgba(var(--theme-color-rgb), 0.6) 60%, 
        rgba(var(--theme-color-rgb), 0.1) 80%, 
        transparent 100%);
}

/* Kayan Işık (Traveling Flare) */
.transition-laser::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -50px;
    width: 250px;
    height: 2px;
    background: #fff;
    box-shadow: 
        0 0 10px #fff, 
        0 0 30px var(--theme-color), 
        0 0 60px var(--theme-color);
    transform: translateY(-50%);
    border-radius: 50%;
    animation: laser-travel 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Ortadaki Işık Yansıması (Center Core Pulse) */
.transition-laser::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 1px;
    background: transparent;
    box-shadow: 0 0 80px 20px rgba(var(--theme-color-rgb), 0.4);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: laser-pulse 4s ease-in-out infinite alternate;
}

@keyframes laser-travel {
    0% { left: -20%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 120%; opacity: 0; }
}
@keyframes laser-pulse {
    0% { opacity: 0.5; box-shadow: 0 0 50px 10px rgba(var(--theme-color-rgb), 0.2); }
    100% { opacity: 1; box-shadow: 0 0 100px 30px rgba(var(--theme-color-rgb), 0.5); }
}

/* === Sidebar Premium Başlık Tasarımı === */
.sidebar-premium-title {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--theme-color);
  padding: 10px 20px 10px 30px;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 
    inset 0 0 20px rgba(0,0,0,0.1),
    10px 0 30px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 5;
}

.sidebar-premium-title h3 {
  margin: 0 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  white-space: nowrap;
}

.sidebar-premium-title i {
  color: var(--theme-color);
  font-size: 1.1rem;
  filter: drop-shadow(0 0 5px rgba(var(--theme-color-rgb), 0.5));
}

.sidebar-premium-title:hover {
  background: rgba(255, 255, 255, 0.06);
  padding-left: 35px;
}

#page-flex-wrapper {
    overflow: visible !important;
}

.product-detail-container {
    position: relative;
    z-index: 1;
}

.sticky-action-bar {
    z-index: 2147483647 !important;
}



/* Hero Breadcrumb Interactivity Fix */
.rp-breadcrumb-wrap {
    position: relative;
    z-index: 50 !important;
    pointer-events: auto !important;
}

.rp-hero-inner {
    position: relative;
    z-index: 40 !important;
}
