@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@500;700;900&display=swap');

:root {
  --bg-dark: #05020a;
  --bg-glow: radial-gradient(circle at top, #140727 0%, #05020a 100%);
  --cyan: #00ffcc;
  --cyan-glow: rgba(0, 255, 204, 0.4);
  --purple: #9900ff;
  --purple-glow: rgba(153, 0, 255, 0.4);
  --text-primary: #ffffff;
  --text-secondary: #9a9aba;
  --font-title: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --card-bg: rgba(18, 11, 33, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  background-image: var(--bg-glow);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

/* Background Glowing Orbs */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  opacity: 0.35;
  pointer-events: none;
}

.orb-cyan {
  width: 400px;
  height: 400px;
  background: var(--cyan);
  top: 10%;
  right: -100px;
  animation: float-orb 12s ease-in-out infinite alternate;
}

.orb-purple {
  width: 500px;
  height: 500px;
  background: var(--purple);
  top: 40%;
  left: -200px;
  animation: float-orb 18s ease-in-out infinite alternate-reverse;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0d0d1a;
}
::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--cyan);
}

/* Header & Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 5%;
  z-index: 100;
  background: rgba(13, 13, 26, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  animation: slide-down 0.8s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 15px var(--cyan-glow);
  transition: transform 0.3s ease;
}

.logo-container:hover .logo-img {
  transform: rotate(15deg) scale(1.05);
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 24px;
  color: var(--text-primary);
  letter-spacing: 2px;
}

.logo-text span {
  color: var(--cyan);
  text-shadow: 0 0 10px var(--cyan-glow);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
  letter-spacing: 0.5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--cyan);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  display: flex;
  max-width: 1200px;
  margin: 180px auto 100px auto;
  padding: 0 5%;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  min-height: 70vh;
}

.hero-info {
  flex: 1.2;
  max-width: 650px;
  animation: fade-in-up 0.8s ease;
}

.hero-tagline {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 5px;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 0 0 10px var(--cyan-glow);
}

.hero-title {
  font-family: var(--font-title);
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  background: linear-gradient(135deg, #ffffff 40%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  color: var(--text-secondary);
  font-size: 19px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--cyan) 0%, #00b3c2 100%);
  color: #05020a;
  text-decoration: none;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 16px;
  padding: 20px 36px;
  border-radius: 35px;
  box-shadow: 0 0 25px var(--cyan-glow);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 0 45px var(--cyan), 0 0 15px var(--purple);
}

.play-store-icon {
  width: 28px;
  height: 28px;
}

.hero-preview {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fade-in-up 1s ease;
}

.phone-mockup {
  width: 330px;
  border-radius: 46px;
  border: 10px solid #1a1a2e;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 50px rgba(0, 255, 204, 0.2);
  animation: float 6s ease-in-out infinite;
  display: block;
  transition: transform 0.5s ease;
}

.phone-mockup:hover {
  transform: scale(1.03) rotate(-1deg);
}

/* Features Section */
.features-section {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  animation: fade-in 1s ease;
}

.section-title {
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 300;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 28px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 255, 204, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 255, 204, 0.1);
}

.feature-img-container {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 28px;
  border: 5px solid #111124;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6), 0 0 15px rgba(153, 0, 255, 0.1);
  width: 220px;
}

.feature-img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.feature-card:hover .feature-img {
  transform: scale(1.08);
}

.feature-title {
  font-family: var(--font-title);
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--cyan);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 255, 204, 0.2);
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
}

/* Legal Page Content */
.legal-container {
  max-width: 900px;
  margin: 180px auto 120px auto;
  padding: 0 5%;
}

.legal-header {
  margin-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 24px;
}

.legal-title {
  font-family: var(--font-title);
  font-size: 46px;
  margin-bottom: 12px;
  color: var(--cyan);
  font-weight: 900;
}

.legal-update {
  font-size: 15px;
  color: var(--text-secondary);
}

.legal-body {
  color: #d1d1e0;
  background: rgba(13, 13, 26, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 28px;
  padding: 40px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.legal-body h2 {
  font-family: var(--font-title);
  font-size: 24px;
  margin: 40px 0 18px 0;
  color: var(--text-primary);
  border-left: 4px solid var(--purple);
  padding-left: 18px;
}

.legal-body p {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

.legal-body ul {
  margin-left: 35px;
  margin-bottom: 24px;
}

.legal-body li {
  margin-bottom: 12px;
  font-weight: 300;
}

.disclaimer-box {
  background: rgba(255, 51, 51, 0.06);
  border: 1.5px dashed #ff3333;
  padding: 24px;
  border-radius: 16px;
  margin: 35px 0;
  box-shadow: 0 0 15px rgba(255, 51, 51, 0.1);
}

.disclaimer-box h3 {
  color: #ff5555;
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-title);
}

.disclaimer-box p {
  margin-bottom: 0;
  font-size: 15px;
  color: #ffb3b3;
  line-height: 1.6;
}

/* Footer */
footer {
  background: #030107;
  padding: 80px 5% 40px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 15px;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-copy {
  text-align: center;
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-copy a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copy a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px var(--cyan);
}

/* Keyframe Animations */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(1.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-orb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 40px) scale(1.1); }
}

@keyframes slide-down {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fade-in-up {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    margin-top: 140px;
    padding-top: 20px;
    gap: 40px;
  }
  .hero-title {
    font-size: 46px;
  }
  .hero-preview {
    margin-top: 20px;
  }
  .phone-mockup {
    width: 270px;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .nav-links {
    display: none;
  }
  .orb-cyan, .orb-purple {
    display: none;
  }
}
