body {
  margin: 0;
  font-family: 'Inter', 'Arial', sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

/* Logo Side Position */
.logo-side {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 10;
}

.logo-circle {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(234, 233, 233, 0.8);
  background: rgb(230, 229, 229);
  padding: 8px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

.logo-circle:hover {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 1);
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
}

/* Logo */
.logo-placeholder {
  margin-bottom: 30px;
}

.logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Logo Placeholder Box (backup) */
.logo-box {
  display: inline-block;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px dashed rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-weight: bold;
  font-size: 12px;
}

h1 {
  font-size: 4rem;
  margin: 20px 0 10px 0;
  color: white;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.typewriter {
  font-size: 1.5rem;
  color: #fff;
  min-height: 2rem;
  margin-bottom: 40px;
  font-weight: 300;
}

.cursor {
  color: #fff;
  animation: blink-cursor 1s step-end infinite;
}

@keyframes blink-cursor {
  from, to { opacity: 1; }
  50% { opacity: 0; }
}

.hero-section {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-section h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.subtitle {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 0;
  font-weight: 400;
}

.features-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.feature-card {
  background: rgba(163, 236, 46, 0.9);
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  font-size: 1rem;
  margin: 0;
}

.cta-section {
  background: rgba(255, 255, 255, 0.95);
  padding: 50px 40px;
  border-radius: 20px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-section h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.cta-section p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.button {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

 .early-access {
  margin-top: 20px !important;
  font-size: 1rem !important;
  color: #28a745 !important;
  font-weight: 600;
}

 .contact-section, footer {
  text-align: center;
  padding: 30px 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  .hero-section h2 {
    font-size: 1.8rem;
  }
  
  .hero-section, .cta-section {
    padding: 30px 20px;
  }
  
  .features-preview {
    grid-template-columns: 1fr;
  }
  
  .typewriter {
    font-size: 1.2rem;
  }
  
  /* Logo responsive positioning */
  .logo-side {
    top: 20px;
    right: 20px;
  }
  
  .logo-circle {
    width: 60px;
    height: 60px;
    padding: 6px;
  }
}