
/* ========================================== */
/* 🛡️ CYBER MODAL SYSTEM                      */
/* ========================================== */
.cyber-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.cyber-modal-backdrop.active {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Manrope:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&family=Rajdhani:wght@500;600;700;800;900&family=Sora:wght@400;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --brand-orange: #FF5500;
  --brand-orange-light: #FF7A00;
  --brand-orange-glow: rgba(255, 85, 0, 0.5);
  --brand-cyan: #00F0FF;
  --brand-cyan-glow: rgba(0, 240, 255, 0.4);
  --brand-purple: #8B5CF6;
  --dark-bg: #05060A;
  --dark-card: rgba(13, 15, 26, 0.85);
  --dark-card-border: rgba(255, 255, 255, 0.08);
}

/* Base resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--dark-bg);
  color: #F8FAFC;
  font-family: 'Manrope', 'Inter', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Custom High-Tech Scrollbar */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  background: #05060A;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FF5500, #00F0FF);
  border-radius: 4px;
}

/* 🌌 Ambient Cyber Glows */
.bg-ambient {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-color: #05060A;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(255, 85, 0, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(0, 240, 255, 0.14) 0%, transparent 50%),
    radial-gradient(circle at 50% 85%, rgba(139, 92, 246, 0.12) 0%, transparent 55%);
  background-attachment: fixed;
  pointer-events: none;
}

/* 📐 High-Tech PCB Circuit Grid & Blueprint Overlay */
.bg-grid-pattern {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-size: 40px 40px, 40px 40px, 200px 200px;
  background-image: 
    linear-gradient(to right, rgba(255, 85, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse 80% 65% at 50% 40%, black 40%, transparent 95%);
  pointer-events: none;
}

/* ⚡ Interactive Motherboard & Hardware Repair Canvas */
#neural-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.85;
}

/* 🌟 Laser Border Beam Animation */
@keyframes borderBeam {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.border-beam-container {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}

.border-beam-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(255, 85, 0, 0.65), transparent 30%, rgba(0, 240, 255, 0.65), transparent 60%);
  animation: borderBeam 6s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.border-beam-content {
  position: relative;
  z-index: 1;
  background: rgba(9, 11, 19, 0.95);
  border-radius: calc(2rem - 2px);
  margin: 2px;
}

/* 🛸 Futuristic Cyber Navbar Styling */
.cyber-navbar {
  position: relative;
  border-radius: 9999px;
  background: rgba(9, 11, 20, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 85, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cyber-navbar:hover {
  border-color: rgba(255, 85, 0, 0.3);
  box-shadow: 0 14px 40px -5px rgba(0, 0, 0, 0.85), 0 0 30px rgba(255, 85, 0, 0.15);
}

.cyber-nav-btn {
  position: relative;
  padding: 0.32rem 0.62rem;
  border-radius: 9999px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94A3B8;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  white-space: nowrap;
}

.cyber-nav-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 85, 0, 0.25);
  transform: translateY(-1px);
}

.cyber-nav-btn.active {
  color: #FFFFFF;
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.2) 0%, rgba(255, 122, 0, 0.08) 100%);
  border-color: rgba(255, 85, 0, 0.5);
  box-shadow: 0 0 12px rgba(255, 85, 0, 0.25);
}

.cyber-nav-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 2px;
  border-radius: 9999px;
  background: #FF5500;
  box-shadow: 0 0 6px #FF5500;
}

/* 🎵 Audio Equalizer Bars */
.audio-equalizer {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}

.eq-bar {
  width: 2px;
  background: #FF5500;
  border-radius: 1px;
  transition: height 0.2s ease;
}

.audio-active .eq-bar:nth-child(1) { animation: eqJump 0.6s infinite ease-in-out alternate; }
.audio-active .eq-bar:nth-child(2) { animation: eqJump 0.8s infinite ease-in-out alternate 0.15s; }
.audio-active .eq-bar:nth-child(3) { animation: eqJump 0.5s infinite ease-in-out alternate 0.3s; }
.audio-active .eq-bar:nth-child(4) { animation: eqJump 0.7s infinite ease-in-out alternate 0.45s; }

@keyframes eqJump {
  0% { height: 3px; }
  100% { height: 14px; }
}

/* 3D Tilt Card Base */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  position: relative;
}

.tilt-card-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle 220px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 85, 0, 0.2), transparent 80%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.tilt-card:hover .tilt-card-glow {
  opacity: 1;
}

/* Glassmorphism Styles */
.neuros-glass {
  background: rgba(13, 15, 26, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.neuros-glass:hover {
  border-color: rgba(255, 85, 0, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 45px -15px rgba(255, 85, 0, 0.25);
}

.neuros-glass-orange {
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.14) 0%, rgba(13, 15, 26, 0.92) 100%);
  border: 1px solid rgba(255, 85, 0, 0.35);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.neuros-glass-cyan {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.12) 0%, rgba(13, 15, 26, 0.92) 100%);
  border: 1px solid rgba(0, 240, 255, 0.35);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

/* Glowing Neon Buttons */
.btn-glow-orange {
  background: linear-gradient(135deg, #FF5500 0%, #FF7A00 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 28px rgba(255, 85, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-glow-orange:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 36px rgba(255, 85, 0, 0.75);
}

.btn-glow-cyan {
  background: linear-gradient(135deg, #00C8FF 0%, #0084FF 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 28px rgba(0, 200, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-glow-cyan:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 36px rgba(0, 200, 255, 0.65);
}

.btn-glass-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  color: #F8FAFC;
  transition: all 0.25s ease;
}

.btn-glass-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 85, 0, 0.6);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Typography & Gradient Text */
.font-tech {
  font-family: 'Rajdhani', 'Outfit', sans-serif;
}
.font-sora {
  font-family: 'Sora', sans-serif;
}
.font-outfit {
  font-family: 'Outfit', sans-serif;
}

.gradient-text-orange {
  background: linear-gradient(135deg, #FFFFFF 15%, #FF8C00 60%, #FF5500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-cyan {
  background: linear-gradient(135deg, #FFFFFF 15%, #00F0FF 65%, #0077FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 🔄 Interactive Before & After Repair Comparison Slider */
.comparison-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 520px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  user-select: none;
}

.comparison-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.comparison-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  border-right: 3px solid #FF5500;
  box-shadow: 0 0 20px rgba(255, 85, 0, 0.8);
  z-index: 5;
}

.comparison-overlay img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FF5500;
  box-shadow: 0 0 25px rgba(255, 85, 0, 0.95), 0 0 0 4px rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: ew-resize;
  z-index: 10;
}

/* 🏷️ TechTuned Authentic Brand Badges on Photos */
.photo-brand-tag {
  position: absolute;
  background: rgba(13, 15, 26, 0.85);
  border: 1px solid rgba(255, 85, 0, 0.5);
  backdrop-filter: blur(12px);
  padding: 6px 12px;
  border-radius: 0.75rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  z-index: 6;
}

/* 🤖 AI Diagnostic Chips */
.diagnostic-chip {
  cursor: pointer;
  padding: 0.6rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.diagnostic-chip:hover {
  border-color: rgba(255, 85, 0, 0.5);
  background: rgba(255, 85, 0, 0.1);
  transform: translateY(-2px);
}

.diagnostic-chip.active {
  background: #FF5500;
  border-color: #FF7A00;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(255, 85, 0, 0.5);
}

/* 🔔 Live Toast Notification */
.live-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 50;
  background: rgba(13, 15, 26, 0.92);
  border: 1px solid rgba(255, 85, 0, 0.4);
  backdrop-filter: blur(20px);
  padding: 12px 18px;
  border-radius: 1.25rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 85, 0, 0.2);
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 320px;
}

.live-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* 🔍 Command Palette Spotlight (Ctrl+K) */
.cmd-palette-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.cmd-palette-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.cmd-palette-box {
  width: 90%;
  max-width: 600px;
  background: rgba(13, 15, 26, 0.96);
  border: 1px solid rgba(255, 85, 0, 0.5);
  border-radius: 1.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 85, 0, 0.25);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.cmd-palette-backdrop.active .cmd-palette-box {
  transform: scale(1);
}

/* 💬 Floating WhatsApp Live Chat Widget */
.floating-chat-trigger {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 45;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981, #059669);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-chat-trigger:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.7);
}

.floating-chat-popup {
  position: fixed;
  bottom: 95px;
  right: 24px;
  width: 320px;
  background: rgba(13, 15, 26, 0.96);
  border: 1px solid rgba(16, 185, 129, 0.4);
  backdrop-filter: blur(25px);
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  z-index: 45;
  padding: 16px;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-chat-popup.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* 🔬 Exploded Device Component Hotspot */
.component-hotspot {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 85, 0, 0.35);
  border: 2px solid #FF5500;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 18px rgba(255, 85, 0, 0.7);
  animation: pulseHotspot 2.5s infinite;
  z-index: 10;
}

@keyframes pulseHotspot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); box-shadow: 0 0 28px rgba(255, 85, 0, 0.95); }
}

.component-hotspot.active {
  background: #FF5500;
  transform: scale(1.22);
  border-color: white;
}

/* Bento Card */
.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(13, 15, 26, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.bento-card:hover {
  border-color: rgba(255, 85, 0, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 45px -15px rgba(255, 85, 0, 0.25);
}

/* Cyber Badges */
.cyber-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 85, 0, 0.1);
  border: 1px solid rgba(255, 85, 0, 0.35);
  color: #FF7A00;
}

.cyber-badge-cyan {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.35);
  color: #00F0FF;
}

.cyber-badge-green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34D399;
}


/* ========================================== */
/* 🖨️ PRINT OPTIMIZATION (A4 / INTAKE / BTW)  */
/* ========================================== */

/* ========================================== */
/* 🖨️ ULTRA-LUXURY INVOICE & RECEIPT PRINT   */
/* ========================================== */
@media print {
  body {
    background: #ffffff !important;
    color: #000000 !important;
  }
  header, footer, .live-toast, .cmd-palette-backdrop:not(#modal-print-intake):not(#modal-print-invoice), .mobile-dock, #pcb-circuit-canvas, #ambient-canvas, .ambient-glow, aside, .print\:hidden {
    display: none !important;
  }
  .page-view, #admin-app-wrapper > aside, #admin-app-wrapper > div > header {
    display: none !important;
  }
  #modal-print-intake, #modal-print-invoice {
    position: static !important;
    background: transparent !important;
    display: block !important;
    padding: 0 !important;
    width: 100% !important;
  }
  #modal-print-intake > div, #modal-print-invoice > div {
    max-width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    background: #ffffff !important;
    color: #000000 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  #modal-print-invoice * {
    color: #000000 !important;
    border-color: #e2e8f0 !important;
    background-color: transparent !important;
  }
  #modal-print-invoice th {
    background-color: #f1f5f9 !important;
    color: #1e293b !important;
  }
  #modal-print-invoice .bg-slate-950\/60, #modal-print-invoice .bg-slate-950\/80 {
    background-color: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
  }
}

/* Old print rules */
@media print {
  body {
    background: #ffffff !important;
    color: #000000 !important;
  }
  header, footer, .live-toast, .cmd-palette-backdrop:not(#modal-print-intake):not(#modal-invoice-studio), .mobile-dock, #pcb-circuit-canvas, #ambient-canvas, .ambient-glow {
    display: none !important;
  }
  .page-view {
    display: none !important;
  }
  #modal-print-intake, #modal-invoice-studio {
    position: static !important;
    background: transparent !important;
    display: block !important;
    padding: 0 !important;
  }
  #modal-print-intake > div, #modal-invoice-studio > div {
    max-width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #000000 !important;
  }
}


/* ========================================================================= */
/* 🖤 SİYAH-BEYAZ & MONOKROM YÜKSEK KONTRAST TİPOGRAFİ SİSTEMİ               */
/* ========================================================================= */

/* Evrensel Keskin Metin İşleme (Subpixel Antialiasing & Text Sharpness) */
*, body, h1, h2, h3, h4, h5, h6, p, span, a, button, input, textarea, select, label, table, th, td {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Siyah-Beyaz Seçim Vurgusu (Monochrome Selection) */
::selection {
  background: #FFFFFF !important;
  color: #000000 !important;
  text-shadow: none;
}
::-moz-selection {
  background: #FFFFFF !important;
  color: #000000 !important;
  text-shadow: none;
}

/* Başlık Hiyerarşisi - Kristal Berraklığında Beyaz & Platin */
h1, h2, h3, h4, h5, h6, .text-heading-white {
  color: #FFFFFF;
  letter-spacing: -0.015em;
  font-weight: 700;
}

/* Gövde Metinleri - Yüksek Kontrastlı Okunabilir Açık Gri/Platin (Göz Yormayan) */
p, .text-body-contrast {
  color: #E2E8F0;
  line-height: 1.65;
}

/* Alt Açıklamalar ve Rozetler (Secondary & Muted) */
.text-sub-contrast {
  color: #CBD5E1 !important;
}
.text-muted-contrast {
  color: #94A3B8 !important;
}

/* Monokrom / Siyah-Beyaz Başlık Gradyanları */
.gradient-text-mono {
  background: linear-gradient(180deg, #FFFFFF 10%, #F1F5F9 50%, #94A3B8 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.gradient-text-silver {
  background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 45%, #64748B 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.gradient-text-white {
  background: linear-gradient(180deg, #FFFFFF 0%, #E2E8F0 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.gradient-text-platinum {
  background: linear-gradient(135deg, #FFFFFF 0%, #CBD5E1 50%, #94A3B8 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* Vurgulu Beyaz Yazı ve Parlama Efekti */
.text-glow-white {
  color: #FFFFFF !important;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
}

.text-glow-silver {
  color: #F8FAFC !important;
  text-shadow: 0 0 10px rgba(226, 232, 240, 0.35);
}

/* Siyah-Beyaz Kart & Panel Metin Stilleri */
.card-mono-header {
  color: #FFFFFF;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-mono-dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #F8FAFC;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.badge-mono-light {
  background: #FFFFFF;
  color: #000000;
  font-weight: 700;
}

/* Form Input & Label Tipografisi */
label {
  color: #CBD5E1;
  font-weight: 600;
  letter-spacing: 0.02em;
}

input, select, textarea {
  color: #FFFFFF;
}

input::placeholder, textarea::placeholder {
  color: #64748B;
}

/* Tablo Başlıkları ve Hücreler - Yüksek Kontrast */
th {
  color: #94A3B8 !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
td {
  color: #F1F5F9;
}

/* ==========================================================================
   ⚡ CYBER PRELOADER / SPINNER SCREEN
   ========================================================================== */
.cyber-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #080A12;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cyber-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  padding: 1rem;
}

.preloader-spinner-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-ring-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255, 85, 0, 0.6);
  border-top-color: #FF5500;
  border-right-color: #FF5500;
  animation: preloaderSpin 2.4s linear infinite;
  box-shadow: 0 0 20px rgba(255, 85, 0, 0.25);
}

.preloader-ring-middle {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-left-color: #06B6D4;
  border-bottom-color: #06B6D4;
  animation: preloaderSpinReverse 1.6s linear infinite;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.preloader-ring-inner {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1.5px dotted rgba(255, 255, 255, 0.4);
  animation: preloaderSpin 3s linear infinite;
}

.preloader-center-icon {
  font-size: 24px;
  color: #FF5500;
  animation: preloaderPulse 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(255, 85, 0, 0.8));
}

.preloader-brand {
  letter-spacing: 0.2em;
}

.preloader-bar-container {
  width: 140px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.preloader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, #FF5500, #06B6D4);
  border-radius: 999px;
  animation: preloaderScan 1.4s ease-in-out infinite;
  box-shadow: 0 0 10px #FF5500;
}

@keyframes preloaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes preloaderSpinReverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.2); opacity: 1; filter: drop-shadow(0 0 16px rgba(255, 85, 0, 1)); }
}

@keyframes preloaderScan {
  0% { left: -40%; width: 30%; }
  50% { width: 60%; }
  100% { left: 100%; width: 30%; }
}

/* ========================================================================== */
/* 🌟 DYNAMIC BRAND MARQUEE & ROTATING LOGO TICKER SLIDER                      */
/* ========================================================================== */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  animation: marqueeScroll 45s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track-reverse {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  animation: marqueeScrollReverse 45s linear infinite;
  will-change: transform;
}

.marquee-track-reverse:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marqueeScrollReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.brand-ticker-card {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.4rem;
  border-radius: 1.15rem;
  background: rgba(13, 17, 28, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  user-select: none;
}

.brand-ticker-card:hover {
  background: rgba(22, 28, 48, 0.92);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.25), 0 8px 24px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px) scale(1.03);
}

.brand-ticker-card.is-featured:hover {
  border-color: rgba(255, 85, 0, 0.5);
  box-shadow: 0 0 28px rgba(255, 85, 0, 0.3);
}

.brand-ticker-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.brand-ticker-card:hover .brand-ticker-icon {
  transform: scale(1.15) rotate(5deg);
}

