* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #e2e8f0;
  background: #0a0e27;
  overflow-x: hidden;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 14, 39, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #e2e8f0;
  text-decoration: none;
}

.logo-emoji {
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #8b5cf6;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #e2e8f0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Animated Background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
}

.bg-animation::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-25%, -25%) scale(1);
  }

  50% {
    transform: translate(-30%, -30%) scale(1.1);
  }
}

/* Floating particles */
.particle {
  position: fixed;
  width: 3px;
  height: 3px;
  background: rgba(139, 92, 246, 0.5);
  border-radius: 50%;
  pointer-events: none;
  animation: float 20s infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh) translateX(50px);
    opacity: 0;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 20px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(139, 92, 246, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(236, 72, 153, 0.15) 0%,
      transparent 50%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1200px;
  margin-top: 40px;
}

.hero h1 {
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #8b5cf6 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  line-height: 1.2;
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

.hero .emoji {
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
  font-size: 5rem;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.hero .tagline {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: #cbd5e1;
  font-weight: 300;
  letter-spacing: 1px;
}

.badges {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(139, 92, 246, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
}

.badge:hover {
  transform: translateY(-5px);
  background: rgba(139, 92, 246, 0.2);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.btn {
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  border: 2px solid #8b5cf6;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 20px;
  position: relative;
}

.section-title {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 70px;
  font-weight: 800;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.feature-card {
  background: rgba(139, 92, 246, 0.05);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.feature-card .icon {
  font-size: 2rem;
  display: inline-block;
  transition: transform 0.3s;
}

.feature-card:hover .icon {
  transform: scale(1.2) rotate(5deg);
}

.feature-card p {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
}

.screenshots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.screenshot-card {
  background: rgba(139, 92, 246, 0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.screenshot-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.2),
    rgba(236, 72, 153, 0.2)
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.screenshot-card:hover::before {
  opacity: 1;
}

.screenshot-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 60px rgba(139, 92, 246, 0.4);
}

.screenshot-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  position: relative;
}

.screenshot-card h4 {
  padding: 25px;
  font-size: 1.2rem;
  color: #e2e8f0;
  position: relative;
}

.setup-section {
  background: rgba(10, 14, 39, 0.5);
  backdrop-filter: blur(20px);
}

.steps {
  max-width: 900px;
  margin: 0 auto;
}

.step {
  background: rgba(139, 92, 246, 0.05);
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 20px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #8b5cf6, #ec4899);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.step:hover::after {
  transform: scaleY(1);
}

.step:hover {
  transform: translateX(10px);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
}

.step h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.step-number {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

.step p {
  color: #94a3b8;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.code-block {
  background: rgba(0, 0, 0, 0.5);
  color: #e2e8f0;
  padding: 25px;
  border-radius: 12px;
  overflow-x: auto;
  margin-top: 15px;
  font-family: "Courier New", monospace;
  font-size: 0.95rem;
  line-height: 1.6;
  border: 1px solid rgba(139, 92, 246, 0.3);
  position: relative;
}

.code-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b5cf6, #ec4899);
}

.code-block code {
  color: #e2e8f0;
}

.run-section {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1) 0%,
    rgba(236, 72, 153, 0.1) 100%
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}

.run-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.run-section .code-block {
  max-width: 700px;
  margin: 40px auto;
  text-align: left;
  position: relative;
}

.run-section p {
  position: relative;
}

.footer {
  background: rgba(0, 0, 0, 0.5);
  color: #cbd5e1;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
}

.footer a {
  color: #8b5cf6;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: #ec4899;
  text-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .header-container {
    height: 60px;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 40px;
    gap: 30px;
    transition: left 0.3s ease;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 10px 0;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero .emoji {
    font-size: 3rem;
  }

  .hero .tagline {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .features-grid,
  .screenshots {
    grid-template-columns: 1fr;
  }
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
