/*
Theme Name: DownedVideo Theme
Theme URI: https://downedvideo.com
Author: DownedVideo Team
Description: Glow & Focus Edition - Modern input glow, neon logo, performance tuned.
Version: 23.0
Text Domain: downedvideo
*/

:root {
  --bg: #0d1117;
  --accent: #4f7cff;
  --text: #ffffff;
  --glow1: #4f7cff;
  --glow2: #a855f7;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,17,23,0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand img {
  height: 42px;
  filter: drop-shadow(0 0 8px var(--glow1));
  transition: transform .3s ease, filter .4s ease;
}
.brand img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px var(--glow2));
}

.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  color: var(--text);
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav a:hover::after {
  width: 100%;
}

.hero {
  text-align: center;
  padding: 120px 20px 60px;
}

.input-group {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.input-group input {
  padding: 18px 20px;
  width: min(650px, 85%);
  border-radius: 14px;
  border: 2px solid transparent;
  background: rgba(17,24,38,0.8);
  color: #fff;
  box-shadow: 0 0 8px rgba(79,124,255,0.3);
  transition: all 0.4s ease;
}
.input-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 12px var(--accent), 0 0 24px var(--glow2);
}
.input-group button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 22px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.input-group button:hover {
  background: #688eff;
  transform: scale(1.05);
}

.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.platform {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #0f1420;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  border: 1px solid rgba(255,255,255,0.06);
}

.platform img {
  width: 32px;
  height: 32px;
}

footer.site-footer {
  padding: 30px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: #aab3c5;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.footer-links a {
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.3s ease, text-shadow 0.3s ease;
}
.footer-links a:hover {
  opacity: 1;
  text-shadow: 0 0 8px var(--accent);
}
