/* Custom CSS for Gerçek Elektronik Landing Page */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-base: #080d14;
  --bg-surface: #0b121e;
  --bg-card: #111a28;
  --accent-sky: #0ea5e9;
  --accent-hover: #38bdf8;
  --whatsapp-green: #22c55e;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-base);
  color: #f8fafc;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #080d14;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0284c7;
}

/* Subtle background grid pattern */
.bg-grid-pattern {
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Ambient Glow Orbs */
.glow-orb-blue {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, rgba(14, 165, 233, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.glow-orb-cyan {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

/* Card hover glow */
.card-glow {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.card-glow:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 12px 30px -10px rgba(14, 165, 233, 0.18);
}

/* Glassmorphism */
.glass-panel {
  background: rgba(17, 26, 40, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-nav {
  background: rgba(8, 13, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* TV Frame Realistic Mockup */
.tv-frame {
  position: relative;
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border-radius: 12px;
  padding: 8px 8px 14px 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.tv-bezel {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tv-led-indicator {
  position: absolute;
  bottom: 4px;
  right: 20px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
  animation: pulseLed 3s infinite ease-in-out;
}

.tv-stand {
  width: 140px;
  height: 8px;
  margin: 0 auto;
  background: linear-gradient(to bottom, #334155, #1e293b);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.5);
}

@keyframes pulseLed {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Pulse animation for live badge */
@keyframes pingSlow {
  0% { transform: scale(1); opacity: 0.8; }
  70%, 100% { transform: scale(2.2); opacity: 0; }
}

.ping-slow {
  animation: pingSlow 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Brand badge styling */
.brand-pill {
  background: #111a28;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s ease;
}
.brand-pill:hover {
  background: #162235;
  border-color: rgba(14, 165, 233, 0.35);
  transform: translateY(-2px);
  color: #38bdf8;
}

/* Custom district hover */
.district-item {
  transition: all 0.2s ease;
}
.district-item:hover {
  background-color: rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.4);
  transform: translateX(4px);
}

/* Smooth active nav link indicator */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 2px;
  background-color: #38bdf8;
  border-radius: 2px;
  transition: transform 0.25s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Hide scrollbar for tabs */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
