* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, sans-serif; }
body { background: #0d0d0d; color: #e0e0e0; line-height: 1.6; overflow-x: hidden; }
canvas#space-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; background: #000; }
canvas.three-canvas { z-index: -1 !important; }

header { background: rgba(20,20,20,0.9); backdrop-filter: blur(10px); padding: 20px; border-bottom: 1px solid #2a2a2a; position: sticky; top: 0; z-index: 10; }
nav { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.logo { display: flex; align-items: center; }
.logo img { width: 40px; margin-right: 10px; filter: drop-shadow(0 0 10px #a259ff); }
.nav-links { list-style: none; display: flex; flex-wrap: wrap; }
.nav-links li { margin: 10px; }
.nav-links a { color: #e0e0e0; text-decoration: none; padding: 5px 10px; border-radius: 5px; transition: background 0.3s, color 0.3s; }
.nav-links a:hover, .nav-links a.active { background: linear-gradient(45deg,#a259ff,#ff5ef1); color: #fff; box-shadow: 0 0 10px #a259ff; }

.hero {
  text-align: center; padding: 80px 20px; max-width: 800px; margin: 0 auto;
}
.hero h2 {
  font-size: 2.5rem; margin-bottom: 20px;
  background: linear-gradient(90deg,#a259ff,#ff5ef1,#a259ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: gradientFlow 5s infinite linear; background-size:300% 300%;
}
@keyframes gradientFlow { 0%{background-position:0% 50%;} 50%{background-position:100% 50%;} 100%{background-position:0% 50%;} }
.hero p { color: #b3b3b3; font-size: 1.1rem; margin-bottom: 30px; }

.buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn { padding: 12px 25px; font-size: 1rem; border-radius: 6px; text-decoration: none; border: none; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; color: white; display: inline-block; text-align: center; }
.btn.primary { background: linear-gradient(45deg,#a259ff,#ff5ef1); }
.btn.secondary { background-color: #333; }

.btn:hover { transform: translateY(-3px); box-shadow: 0 0 20px #a259ff; }

.stats { text-align: center; padding: 50px 20px; max-width: 800px; margin: 0 auto; }
.stat-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.stat-box { background: rgba(26,26,26,0.9); padding:20px; border-radius:10px; width: 200px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.stat-box:hover { transform: translateY(-5px); box-shadow: 0 0 15px #a259ff; }
.stat-box h4 { font-size: 1.8rem; margin-bottom: 10px; }

.content { max-width: 800px; margin: 50px auto; text-align: center; opacity: 0; animation: fadeIn 0.8s ease forwards; background: rgba(26,26,26,0.8); border-radius:10px; padding: 30px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: translateY(0);} }

.feature-list { list-style: none; max-width: 500px; margin: 30px auto; padding: 0; text-align: left; }
.feature-list li { background: rgba(26,26,26,0.9); padding:15px; margin:10px 0; border-radius:8px; transition: background 0.3s, transform 0.3s; }
.feature-list li:hover { background: rgba(41,41,41,0.9); transform: translateX(5px); }

footer { text-align:center; padding:20px; border-top:1px solid #2a2a2a; background-color:#121212; margin-top:50px; color:#aaa; font-size:0.9rem; }

.premium-benefits { padding: 50px 20px; max-width: 1000px; margin: 0 auto; text-align: center; }
.premium-benefits h3 {
  font-size: 2rem; margin-bottom: 30px;
  background: linear-gradient(90deg,#a259ff,#ff5ef1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.premium-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap:25px; }
.premium-card { background: rgba(26,26,26,0.95); padding:20px; border-radius:10px; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 0 8px rgba(162,89,255,0.3); }
.premium-card:hover { transform: translateY(-5px); box-shadow: 0 0 15px rgba(162,89,255,0.6); }
.premium-card h4 { margin-bottom:10px; font-size:1.2rem; color:#ffb3ff; }

/* Core and existing styles from previous version... */

.features-showcase {
  padding: 40px 20px; max-width: 900px; margin: 0 auto;
}
.feature-item {
  background: rgba(26,26,26,0.9); padding: 20px; border-radius: 10px;
  margin: 15px 0; transition: transform 0.3s, box-shadow 0.3s;
}
.feature-item:hover {
  transform: translateY(-5px); box-shadow: 0 0 10px rgba(162,89,255,0.5);
}
.feature-item h3 {
  font-size: 1.4rem; margin-bottom: 8px; color: #ffb3ff;
}
.feature-item p {
  color: #ccc;
}

.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: 30px; padding: 50px 20px; max-width: 1000px; margin: 0 auto;
}
.team-card {
  background: rgba(26,26,26,0.95); border-radius: 10px;
  text-align: center; padding: 25px; transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
  transform: translateY(-5px); box-shadow: 0 0 15px rgba(162,89,255,0.6);
}
.team-card .avatar {
  width: 80px; height: 80px; border-radius: 50%;
  margin-bottom: 15px; object-fit: cover; border: 2px solid #a259ff;
}
.team-card h3 { font-size: 1.3rem; margin-bottom: 8px; color: #ffb3ff; }
.team-card p { color: #ccc; font-size: 0.95rem; line-height: 1.4; }

/* Ensure mobile-friendliness across all pages */
@media (max-width: 600px) {
  .hero h2 { font-size: 2rem; }
  .hero p, .feature-item p, .premium-card p, .team-card p { font-size: 0.95rem; }
  .nav-links li { margin: 8px; }
}
