/* Global */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #1d8cf8, #00c6ff);
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.7);
  position: fixed; width: 100%; top: 0; z-index: 1000;
  backdrop-filter: blur(6px);
}
.logo-area { display: flex; align-items: center; }
.logo { height: 50px; margin-right: 15px; }
.app-title { font-weight: 600; font-size: 1.2rem; }
.btn-login {
  padding: 10px 20px; background: #ff6a00; border-radius: 5px;
  color: #fff; text-decoration: none; transition: 0.3s;
}
.btn-login:hover { background: #e65c00; transform: scale(1.05); }

/* Hero */
.hero {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  height: 100vh; text-align: center; padding: 2rem;
  padding-top: calc(100px + 2rem);
}
.hero-title {
  font-size: 3rem; font-weight: 700; margin-bottom: 1rem;
  background: linear-gradient(90deg,#fff,#ff6a00);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { max-width: 600px; margin-bottom: 2rem; line-height: 1.6; }
.cta-button {
  padding: 12px 25px; background: #ff6a00; border-radius: 30px;
  color: #fff; text-decoration: none; font-weight: 600;
  transition: 0.3s; animation: pulse 2s infinite;
}
.cta-button:hover { background: #e65c00; transform: translateY(-3px); }
@keyframes pulse { 0%{transform:scale(1);}50%{transform:scale(1.05);}100%{transform:scale(1);} }

/* Stats */
.stats { padding: 4rem 2rem; background: rgba(0,0,0,0.8); text-align: center; }
.stats-container { display: flex; justify-content: center; flex-wrap: wrap; }
.stat-card {
  flex: 1 1 200px; margin: 1rem; padding: 20px;
  background: rgba(255,255,255,0.15); border-radius: 12px;
  transition: 0.3s; backdrop-filter: blur(4px);
}
.stat-card:hover { transform: translateY(-8px); box-shadow: 0 6px 25px rgba(0,0,0,0.4); }
.stat-card h2 { font-size: 2rem; margin-bottom: 0.5rem; }

/* About */
.about { display: flex; flex-wrap: wrap; padding: 4rem 2rem; background: rgba(0,0,0,0.85); }
.about .left, .about .right { flex: 1; padding: 20px; }
.about h2 { margin-bottom: 1rem; }
.about ul { margin-top: 1rem; padding-left: 20px; }
.about ul li { margin-bottom: 0.5rem; }

/* Footer */
footer { text-align: center; padding: 1rem; background: rgba(0,0,0,0.7); font-size: 0.9rem; }

@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .about { flex-direction: column; }
}
