/* ==========================================================================
   AI NOSE POWER — Main Style Sheet (Redesigned Cyber-Premium Edition)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --accent:         #00f5ff; /* Cyan glow */
  --accent-rgb:     0, 245, 255;
  --accent-2:       #b400ff; /* Purple glow */
  --accent-2-rgb:   180, 0, 255;
  --bg-dark:        #03030c; /* Space black */
  --bg-card:        rgba(255, 255, 255, 0.025);
  --bg-card-hover:  rgba(255, 255, 255, 0.055);
  --glass-blur:     blur(20px);
  --glass-border:   rgba(255, 255, 255, 0.05);
  --text:           #f1f2f6;
  --text-muted:     rgba(241, 242, 246, 0.6);
  --font-heading:   'Outfit', sans-serif;
  --font-body:      'Plus Jakarta Sans', sans-serif;
  --font-ui:        'Inter', sans-serif;
  --radius:         16px;
  --radius-lg:      24px;
  --transition:     0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --neon-glow:      0 0 25px rgba(0, 245, 255, 0.35), 0 0 50px rgba(0, 245, 255, 0.15);
  --neon-glow-2:    0 0 25px rgba(180, 0, 255, 0.35), 0 0 50px rgba(180, 0, 255, 0.15);
}

/* Force Font Awesome font-family protection */
.fa, .fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", sans-serif !important;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
a { color: var(--accent); text-decoration: none; transition: all var(--transition); }
a:hover { color: #fff; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: #fff; line-height: 1.25; font-weight: 700; }

/* ── Custom Cursor ── */
#cursor-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 10px var(--accent);
}
#cursor-outline {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(var(--accent-rgb), 0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, transform 0.1s;
}
@media (hover: none) { #cursor-dot, #cursor-outline { display: none !important; } body { cursor: auto !important; } }

/* ── Loading Screen ── */
#loading-screen {
  position: fixed; inset: 0;
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  z-index: 99997;
  transition: opacity 0.5s ease;
}
#loading-screen .loader-logo { width: 110px; margin-bottom: 24px; animation: pulseLogo 1.5s ease-in-out infinite; }
.loader-bar { width: 220px; height: 3px; background: rgba(255,255,255,0.06); border-radius: 99px; overflow: hidden; }
.loader-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 99px; animation: loadBar 1.8s ease-in-out infinite; }
@keyframes pulseLogo { 0%, 100% { opacity: 0.8; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }
@keyframes loadBar   { 0% { width: 0; margin-left: 0; } 50% { width: 100%; margin-left: 0; } 100% { width: 0; margin-left: 100%; } }

/* ── Glassmorphism Card ── */
.glass-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 30px rgba(0, 0, 0, 0.3);
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.glass-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(var(--accent-rgb), 0.2);
  transform: translateY(-6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(var(--accent-rgb), 0.05);
}
.glass-card:hover::before {
  transform: translateX(100%);
}

/* ── Buttons ── */
.btn-neon {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 34px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #03030c; font-family: var(--font-heading); font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: none; border-radius: var(--radius); cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.25);
  position: relative; overflow: hidden;
  z-index: 1;
}
.btn-neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.45);
  color: #03030c;
}
.btn-neon::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  z-index: -1;
  transition: transform 0.6s ease;
}
.btn-neon:hover::after {
  transform: translateX(100%);
}

.btn-outline-neon {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 34px;
  background: transparent;
  color: var(--accent); font-family: var(--font-heading); font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: 1.5px solid var(--accent); border-radius: var(--radius); cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-neon:hover {
  background: rgba(var(--accent-rgb), 0.08);
  box-shadow: 0 0 25px rgba(var(--accent-rgb), 0.2);
  transform: translateY(-2px);
  color: var(--accent);
}

/* ── Navbar ── */
.main-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: all var(--transition);
}
.main-navbar.scrolled {
  background: rgba(3, 3, 12, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--glass-border);
}
.navbar-brand-text {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: 0.05em;
}
.nav-link-custom {
  font-family: var(--font-heading); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.nav-link-custom::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--accent); transition: all var(--transition);
}
.nav-link-custom:hover, .nav-link-custom.active {
  color: var(--accent) !important;
}
.nav-link-custom:hover::after, .nav-link-custom.active::after {
  left: 14px; right: 14px;
}
.navbar-logo { height: 38px; width: auto; }

/* ── Section Titles ── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 700;
  color: var(--accent); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 12px;
  background: rgba(var(--accent-rgb), 0.05);
  padding: 5px 16px;
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 50%, var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
}
.section-subtitle {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}
.neon-line {
  width: 70px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 99px;
  margin: 14px auto 0;
  box-shadow: 0 0 10px var(--accent);
}

/* ── Hero Section ── */
.hero-section {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
  padding-top: 100px;
}
.hero-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(circle at 30% 30%, rgba(3,3,12,0.6) 0%, rgba(3,3,12,0.95) 80%);
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 50px 50px;
}
#particles-canvas {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 10; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 16px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  border-radius: 99px;
  font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.5rem;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.hero-title .accent-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-description {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-buttons { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 3.5rem; }

/* Hero Stats */
.hero-stats-panel {
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3) !important;
}
.hero-stat-number {
  font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #fff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: block; line-height: 1; margin-bottom: 6px;
}
.hero-stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-ui); }

/* Floating Nebula Elements */
.floating-element {
  position: absolute; z-index: 1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.14;
  pointer-events: none;
}
.float-1 { width: 450px; height: 450px; top: -5%; right: -5%; background: var(--accent); }
.float-2 { width: 350px; height: 350px; bottom: 10%; left: -5%; background: var(--accent-2); }
.float-3 { width: 250px; height: 250px; top: 40%; left: 45%; background: var(--accent); }

/* Cyber Logo Frame */
.cyber-logo-frame {
  position: relative;
  width: 100%;
  max-width: 390px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.05) 0%, transparent 70%);
  animation: logoFloat 5s infinite ease-in-out;
}
.hero-cyber-logo {
  max-width: 90%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(var(--accent-rgb), 0.3));
  z-index: 2;
  transition: transform var(--transition);
}
.cyber-logo-frame:hover .hero-cyber-logo {
  transform: scale(1.04) rotate(1deg);
}
.frame-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(var(--accent-rgb), 0.3);
  pointer-events: none;
}
.frame-corner.top-left { top: 0; left: 0; border-right: none; border-bottom: none; }
.frame-corner.top-right { top: 0; right: 0; border-left: none; border-bottom: none; }
.frame-corner.bottom-left { bottom: 0; left: 0; border-right: none; border-top: none; }
.frame-corner.bottom-right { bottom: 0; right: 0; border-left: none; border-top: none; }
.cyber-logo-frame::before {
  content: ''; position: absolute; inset: 15px;
  border: 1px dashed rgba(var(--accent-2-rgb), 0.15);
  border-radius: 8px; pointer-events: none;
  animation: logoRotate 24s infinite linear;
}
@keyframes logoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes logoRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* ── Features Section ── */
.features-section { padding: 120px 0; background: linear-gradient(180deg, var(--bg-dark) 0%, #050512 100%); }
.feature-card { padding: 40px 30px; text-align: center; }
.feature-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), rgba(var(--accent-2-rgb), 0.1));
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.4rem; color: var(--accent);
  transition: all var(--transition);
}
.feature-card:hover .feature-icon-wrap {
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.4);
  border-color: var(--accent);
  transform: scale(1.05);
}
.cyber-title { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 12px; color: #fff; font-weight: 600; }
.cyber-desc { font-family: var(--font-body); font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

/* ── How It Works ── */
.hiw-section { padding: 120px 0; }
.timeline-wrap { position: relative; max-width: 800px; margin: 0 auto; }
.timeline-line {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--accent), var(--accent-2));
  transform: translateX(-50%);
  box-shadow: 0 0 15px var(--accent);
}
.timeline-item { display: flex; align-items: flex-start; gap: 40px; margin-bottom: 60px; position: relative; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-item-content { flex: 1; }
.timeline-dot {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.15rem; color: #03030c;
  position: relative; z-index: 1;
}
.timeline-dot::after {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 1.5px solid var(--accent);
  opacity: 0.5; animation: pulseDot 2s infinite ease-in-out; pointer-events: none;
}
@keyframes pulseDot { 0%, 100% { transform: scale(1); opacity: 0.4; } 50% { transform: scale(1.25); opacity: 0.7; } }
.timeline-card { padding: 28px 30px; }
.step-icon { font-size: 1.3rem; color: var(--accent); margin-bottom: 12px; }

/* ── Screenshots & Showcase ── */
.screenshots-section { padding: 120px 0; }
.cyber-frame-wrapper {
  position: relative; overflow: hidden;
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  background: #000;
}
.screenshot-img { width: 100%; transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.cyber-frame-wrapper:hover .screenshot-img { transform: scale(1.04); }
.screenshot-cyber-corners { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.screenshot-cyber-corners::before, .screenshot-cyber-corners::after {
  content: ''; position: absolute; width: 10px; height: 10px;
  border: 1.5px solid var(--accent);
}
.screenshot-cyber-corners::before { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.screenshot-cyber-corners::after { bottom: 8px; right: 8px; border-left: none; border-top: none; }
.zoom-icon {
  position: absolute; inset: 0; background: rgba(0, 0, 0, 0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--accent); opacity: 0;
  transition: opacity var(--transition); z-index: 4; cursor: pointer;
}
.cyber-frame-wrapper:hover .zoom-icon { opacity: 1; }

/* Lightbox */
#lightbox {
  position: fixed; inset: 0; z-index: 99990;
  background: rgba(3, 3, 12, 0.96);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-height: 80vh; border-radius: var(--radius); border: 1px solid var(--glass-border); box-shadow: 0 20px 50px rgba(0,0,0,0.6); }
.lightbox-close {
  position: fixed; top: 24px; right: 28px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border);
  color: #fff; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; transition: all var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.1); color: var(--accent); }
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--glass-border);
  color: #fff; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(var(--accent-rgb), 0.1); border-color: var(--accent); color: var(--accent); }

/* ── Videos ── */
.video-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.video-thumb-wrap { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.video-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.video-card:hover .video-thumb { transform: scale(1.03); }
.video-play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(3, 3, 12, 0.4); transition: background var(--transition);
}
.video-play-btn i {
  width: 54px; height: 54px; background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: #03030c; box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.4);
  transition: transform var(--transition);
}
.video-card:hover .video-play-btn { background: rgba(3, 3, 12, 0.2); }
.video-card:hover .video-play-btn i { transform: scale(1.08); }
.video-modal-body iframe, .video-modal-body video { width: 100%; aspect-ratio: 16/9; display: block; }

/* ── Downloads ── */
.download-section { padding: 120px 0; }
.download-card { padding: 40px 30px; text-align: center; }
.download-platform-icon { font-size: 2.8rem; margin-bottom: 20px; line-height: 1; }
.coming-soon-badge {
  display: inline-block; padding: 4px 14px;
  background: rgba(255, 165, 0, 0.08); border: 1px solid rgba(255, 165, 0, 0.25);
  color: #ffa500; border-radius: 99px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.version-badge {
  display: inline-block; padding: 4px 14px;
  background: rgba(var(--accent-rgb), 0.08); border: 1px solid rgba(var(--accent-rgb), 0.25);
  color: var(--accent); border-radius: 99px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em;
}
.specs-table { width: 100%; }
.specs-table td { padding: 12px 0; border-bottom: 1px solid var(--glass-border); font-size: 0.88rem; }
.specs-table tr:last-child td { border-bottom: none; }
.specs-table td:first-child { color: var(--text-muted); font-family: var(--font-ui); }
.specs-table td:last-child  { color: #fff; text-align: right; font-weight: 600; font-family: var(--font-heading); }

/* Download Specific Hover glows */
.dl-card-android:hover { border-color: #3ddc84 !important; box-shadow: 0 15px 30px rgba(61, 220, 132, 0.08) !important; }
.dl-card-windows:hover { border-color: #00adef !important; box-shadow: 0 15px 30px rgba(0, 173, 239, 0.08) !important; }
.dl-card-mac:hover { border-color: #a2a2a7 !important; box-shadow: 0 15px 30px rgba(162, 162, 167, 0.08) !important; }
.dl-card-linux:hover { border-color: #fcc624 !important; box-shadow: 0 15px 30px rgba(252, 198, 36, 0.08) !important; }
.dl-card-playstore:hover { border-color: #3ddc84 !important; box-shadow: 0 15px 30px rgba(61, 220, 132, 0.08) !important; }
.dl-icon-green { color: #3ddc84; }
.dl-icon-blue { color: #00adef; }
.dl-icon-silver { color: #a2a2a7; }
.dl-icon-amber { color: #fcc624; }

/* Changelogs */
.changelog-entry { padding: 22px 0; border-bottom: 1px solid var(--glass-border); }
.changelog-entry:last-child { border: none; padding-bottom: 0; }
.changelog-version {
  display: inline-block; padding: 4px 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #03030c; border-radius: 99px;
  font-family: var(--font-heading); font-size: 0.74rem; font-weight: 700;
}
.changelog-notes { font-size: 0.92rem; color: var(--text-muted); white-space: pre-line; line-height: 1.7; }

/* ── Datalogs (Blog) ── */
.blog-section { padding: 120px 0; }
.post-card { overflow: hidden; }
.post-card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/10; border-bottom: 1px solid var(--glass-border); }
.post-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.post-card:hover .post-img { transform: scale(1.03); }
.post-card-body { padding: 28px; }
.post-meta { font-size: 0.74rem; color: var(--text-muted); display: flex; align-items: center; gap: 12px; font-family: var(--font-ui); }
.badge-category {
  display: inline-block; padding: 3px 10px;
  background: rgba(var(--accent-rgb), 0.06); border: 1px solid rgba(var(--accent-rgb), 0.15);
  color: var(--accent); border-radius: 99px; font-weight: 600;
}
.badge-featured {
  display: inline-block; padding: 3px 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #03030c; border-radius: 99px; font-weight: 700;
}
.post-card-title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: #fff; transition: color var(--transition); }
.post-card-title a { color: inherit; }
.post-card-title a:hover { color: var(--accent); }
.post-card:hover .post-card-title { color: var(--accent); }
.post-card-excerpt { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.read-more-link { font-family: var(--font-heading); font-size: 0.78rem; color: var(--accent); letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }
.read-more-link i { transition: transform var(--transition); }
.read-more-link:hover i { transform: translateX(5px); }

/* ── FAQ Section (Accordion) ── */
.faq-section { padding: 120px 0; }
.faq-cat-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; color: #fff; border-left: 3px solid var(--accent); padding-left: 14px; }
.faq-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 14px; overflow: hidden;
  backdrop-filter: var(--glass-blur); transition: all var(--transition);
}
.faq-accordion .accordion-item:hover {
  border-color: rgba(var(--accent-rgb), 0.2) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.faq-accordion .accordion-button {
  background: transparent !important; color: #fff !important;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  padding: 20px 26px; box-shadow: none !important; border: none;
  transition: all var(--transition);
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(var(--accent-rgb), 0.03) !important;
  color: var(--accent) !important;
}
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300f5ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  transform: scale(1.1); transition: transform 0.3s ease;
}
.faq-accordion .accordion-body {
  color: var(--text-muted); font-family: var(--font-body);
  font-size: 0.95rem; line-height: 1.7; padding: 22px 26px;
  background: rgba(0, 0, 0, 0.2); border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* ── Contact Section ── */
.contact-info-card { padding: 30px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 44px; height: 44px; background: rgba(var(--accent-rgb), 0.06);
  border: 1px solid rgba(var(--accent-rgb), 0.15); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--accent); flex-shrink: 0;
}
.contact-form-card { padding: 40px; }
.form-label {
  font-family: var(--font-heading); font-size: 0.76rem; font-weight: 700;
  text-transform: uppercase; color: var(--text-muted); letter-spacing: 1px;
}
.form-control-gaming {
  background: rgba(255, 255, 255, 0.02); border: 1.5px solid var(--glass-border);
  color: #fff; padding: 14px 18px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; transition: all var(--transition);
}
.form-control-gaming:focus {
  background: rgba(255, 255, 255, 0.04); border-color: var(--accent);
  box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.15); outline: none; color: #fff;
}
.form-control-gaming::placeholder { color: rgba(255,255,255,0.25); }

/* ── Subpage Heros ── */
.page-hero {
  padding: 140px 0 60px; background: linear-gradient(180deg, #050512 0%, var(--bg-dark) 100%);
  position: relative; border-bottom: 1px solid var(--glass-border);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.01) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero-title { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; letter-spacing: -0.5px; }
.breadcrumb { list-style: none; display: inline-flex; align-items: center; gap: 10px; padding: 0; margin: 0; font-family: var(--font-heading); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.breadcrumb-sep { color: rgba(255,255,255,0.15); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }

/* ── Banner/Contact CTA ── */
.cyber-contact-banner {
  border-top: 1px solid rgba(var(--accent-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--accent-2-rgb), 0.1);
}
.cyber-banner-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(var(--accent-rgb), 0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(var(--accent-rgb), 0.015) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none; z-index: 1;
}

/* ── Footer ── */
.main-footer {
  background: #020208; padding: 80px 0 30px;
  border-top: 1px solid var(--glass-border);
}
.footer-logo { height: 44px; width: auto; }
.footer-desc { color: var(--text-muted); font-size: 0.94rem; margin-top: 16px; line-height: 1.7; }
.footer-social-links { display: flex; gap: 12px; margin-top: 24px; }
.footer-social-link {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--glass-border); background: rgba(255,255,255,0.01);
  color: var(--text-muted); display: flex; align-items: center; justify-content: center;
  font-size: 0.94rem; transition: all var(--transition);
}
.footer-social-link:hover {
  border-color: var(--accent); color: var(--accent); background: rgba(var(--accent-rgb), 0.06);
  transform: translateY(-2px); box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.2);
}
.footer-title {
  font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; color: #fff; letter-spacing: 1.5px; margin-bottom: 22px;
}
.footer-link {
  display: block; color: var(--text-muted); font-size: 0.92rem;
  margin-bottom: 12px; transition: all var(--transition); font-family: var(--font-body);
}
.footer-link:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  margin-top: 60px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.03);
  font-size: 0.8rem; color: rgba(255,255,255,0.25);
  font-family: var(--font-ui);
}

/* ── Alert/Flash Messages ── */
.alert-gaming {
  border-radius: var(--radius); padding: 16px 20px;
  font-family: var(--font-body); font-size: 0.92rem;
  border: 1px solid; display: flex; align-items: center; gap: 12px;
}
.alert-gaming.success { background: rgba(0,245,255,0.05); border-color: rgba(0,245,255,0.2); color: var(--accent); }
.alert-gaming.error   { background: rgba(255,60,60,0.05);  border-color: rgba(255,60,60,0.25);  color: #ff5c5c; }
.text-accent  { color: var(--accent) !important; }
.text-accent-2{ color: var(--accent-2) !important; }
.bg-glass     { background: var(--bg-card); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); }
.rounded-gaming { border-radius: var(--radius-lg); }
.page-wrapper { padding-top: 80px; }
.section-pad  { padding: 120px 0; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .hero-title { font-size: clamp(2.4rem, 8vw, 4.4rem); }
  .hero-description { font-size: 1.05rem; max-width: 100%; }
  .section-pad { padding: 80px 0; }
  .features-section, .hiw-section, .screenshots-section, .download-section, .blog-section, .faq-section { padding: 80px 0; }
  
  /* Navbar mobile */
  .main-navbar { padding: 14px 0; }
  .navbar-collapse {
    background: rgba(3, 3, 12, 0.98);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius); border: 1px solid var(--glass-border);
    padding: 20px; margin-top: 14px;
  }
  .nav-link-custom {
    padding: 12px 14px !important; display: block;
    border-bottom: 1px solid rgba(255,255,255,0.03);
  }
  .nav-link-custom::after { display: none; }
  .navbar-nav .nav-item:last-child .nav-link-custom { border-bottom: none; }
  
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
}

@media (max-width: 767px) {
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-stats-panel .row > div { border-bottom: 1px solid rgba(255,255,255,0.03); padding-bottom: 15px; }
  .hero-stats-panel .row > div:last-child { border-bottom: none; padding-bottom: 0; }
  .section-pad { padding: 60px 0; }
  .features-section, .hiw-section, .screenshots-section, .download-section, .blog-section, .faq-section { padding: 60px 0; }
  .hero-section { padding-top: 80px; }
  .timeline-line { left: 25px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; padding-left: 56px; }
  .timeline-dot { position: absolute; left: 0; }
  
  .contact-form-card { padding: 25px; }
  .main-footer { padding: 60px 0 30px; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .btn-neon, .btn-outline-neon { width: 100%; justify-content: center; padding: 12px 24px; }
  .hero-title { font-size: 2.2rem; }
  .feature-icon-wrap { width: 56px; height: 56px; font-size: 1.25rem; border-radius: 12px; }
  .timeline-dot { width: 40px; height: 40px; font-size: 0.94rem; }
  .timeline-card { padding: 20px; }
  #cursor-dot, #cursor-outline { display: none !important; }
  body { cursor: auto; }
}
