/* Echo Trader - Neon hacker aesthetic */

/* ---- Colors ---- */
:root{
  --bg: #000000;
  --cyan: #00E5FF;
  --cyan-dim: #00e5ff33;
  --muted: #8C8C8C;
  --text: #E0E0E0;
  --btn-dark: #001219;
}

/* ---- Base ---- */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* ---- Navbar ---- */
.navbar{
  width:100%;
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.45));
  border-bottom: 1px solid var(--cyan-dim);
}
.nav-inner{
  max-width:1200px;
  margin:0 auto;
  padding:18px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo{
  font-family: "Orbitron", sans-serif;
  font-weight:600;
  letter-spacing:2px;
  color:var(--cyan);
  margin:0;
  font-size:1.4rem;
  text-shadow: 0 0 10px var(--cyan), 0 0 22px rgba(0,229,255,0.15);
}

/* Nav links */
.nav-links{ display:flex; align-items:center; gap:16px; }
.nav-link{
  color:var(--text);
  text-decoration:none;
  font-weight:500;
  opacity:0.9;
  transition:all .16s ease;
}
.nav-link:hover{ color:var(--cyan); text-shadow:0 0 8px var(--cyan); transform:translateY(-2px); }


/* ---- Hero ---- */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  align-items:center;
  padding:60px 20px;
  overflow:hidden;
}

/* Ninja video background - perfectly centered */
.hero-ninja {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-46%, -50%);
  z-index: 0;
  pointer-events: none;
  animation: none;
}

/* Hero text (top/center) */
.hero-inner{
  z-index:5;
  text-align:center;
  margin-top:40px;
}
.hero-title{
  margin:0;
  font-family: "Orbitron", sans-serif;
  color:var(--cyan);
  font-size:3rem;
  line-height:1.02;
  text-shadow: 0 0 20px var(--cyan);
}
.hero-sub{
  margin-top:12px;
  color:var(--muted);
  font-size:1.05rem;
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
}

/* ---- Hero Info Cards ---- */
.hero-info-cards{
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index:5;
  position: relative;
  margin-bottom: 40px;
}

.hero-info-cards .info-card{
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--cyan-dim);
  border-radius: 12px;
  padding: 20px 28px;
  text-align: center;
  color: var(--text);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 120px;
}

.hero-info-cards .info-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 0 25px var(--cyan);
}

.hero-info-cards .info-card h3{
  font-family: "Orbitron", sans-serif;
  color: var(--cyan);
  font-size: 1.1rem;
  margin-bottom: 8px;
  text-shadow: 0 0 6px var(--cyan);
}

.hero-info-cards .info-number{
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--cyan);
  text-shadow: 0 0 10px var(--cyan);
}

.hero-info-cards .info-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-info-cards .info-list li{
  margin-bottom: 4px;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
}

.hero-info-cards .info-list a{
  color: var(--cyan);
  text-decoration: none;
  transition: all 0.16s ease;
}

.hero-info-cards .info-list a:hover{
  text-shadow: 0 0 6px var(--cyan);
  transform: translateY(-1px);
}

/* ---- Footer ---- */
.site-footer{
  padding:30px 20px;
  text-align:center;
  color:var(--muted);
  border-top:1px solid var(--cyan-dim);
  margin-top:40px;
}

/* ---- Responsive ---- */
@media (max-width:900px){
  .hero-info-cards{
    flex-direction: column;
    margin-bottom: 20px;
    gap: 16px;
  }
  .hero-info-cards .info-card{
    min-width: 100%;
  }
}
@media (max-width:800px){
  .logo{ font-size:1.05rem }
  .hero-title{ font-size:2.1rem }
  .hero{ padding-top:40px; padding-bottom:60px }
}

/* ---- Signals Page ---- */
.signals-page{
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px;
  background: var(--bg);
}

.signals-section{
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.section-title{
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  color: var(--cyan);
  text-shadow: 0 0 12px var(--cyan);
  margin-bottom: 12px;
}

.section-sub{
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 40px;
}

.signals-cards{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.signals-cards .info-card{
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--cyan-dim);
  border-radius: 12px;
  padding: 20px 24px;
  min-width: 180px;
  text-align: center;
  color: var(--text);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.signals-cards .info-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 0 25px var(--cyan);
}

.signals-cards .info-card h3{
  font-family: "Orbitron", sans-serif;
  color: var(--cyan);
  margin-bottom: 8px;
  font-size: 1.1rem;
  text-shadow: 0 0 6px var(--cyan);
}

.signals-cards .info-card a{
  color: var(--cyan);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.16s ease;
}

.signals-cards .info-card a:hover{
  text-shadow: 0 0 6px var(--cyan);
  transform: translateY(-1px);
}

@media (max-width:900px){
  .signals-cards{
    flex-direction: column;
    gap: 16px;
  }
  .signals-cards .info-card{
    min-width: 100%;
  }
}

/* ---- About Us Page ---- */
.about-page {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 20px 60px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Subtle animated glow */
.about-page::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--cyan-dim) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  opacity: 0.2;
  animation: pulseGlow 6s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.35; transform: translate(-50%, -50%) scale(1.15); }
}

.about-content {
  max-width: 800px;
  z-index: 2;
  position: relative;
}

.about-content h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  color: var(--cyan);
  text-shadow: 0 0 15px var(--cyan);
  margin-bottom: 24px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 30px;
  opacity: 0.9;
}

.about-content p .highlight {
  color: var(--cyan);
  font-weight: 600;
  text-shadow: 0 0 6px var(--cyan);
}

.creator {
  font-family: "Orbitron", sans-serif;
  color: var(--cyan);
  margin-top: 60px;
  text-shadow: 0 0 8px var(--cyan);
  opacity: 0.9;
}

footer {
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid var(--cyan-dim);
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 60px;
}

@media (max-width: 800px) {
  .about-content h1 {
    font-size: 2rem;
  }
  .about-content p {
    font-size: 1rem;
  }
}
/* Mobile: max-width 600px */
@media (max-width: 600px) {
  /* Hero section */
  .hero {
    padding: 40px 15px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  /* Navbar */
  .nav-inner {
    flex-direction: column;
    gap: 10px;
    padding: 12px 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Hero info cards */
  .hero-info-cards .info-card {
    min-width: 100%;
    padding: 16px 20px;
  }

  /* Signals cards */
  .signals-cards .info-card {
    min-width: 100%;
    padding: 16px 20px;
  }
}
