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

body {
  background: #000;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
}

.hero {
  text-align: center;
  margin-bottom: 4rem;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  animation: fadeIn 2s ease;
}

.box-img {
  max-width: 200px;
  filter: drop-shadow(0 0 20px white);
  transition: transform 0.5s ease;
  border-radius: 30px;
  border: 2px solid white;
}
.box-img:hover {
  transform: scale(1.05);
}

.hero h1 {
  font-size: 3rem;
  margin-top: 1rem;
  text-shadow: 0 0 10px white;
}

.tagline {
  font-size: 1.25rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.content {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  animation: slideUp 1.2s ease;
}

.content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.screenshot {
  margin-top: 4rem;
  text-align: center;
}

.screenshot img {
  width: 100%;
  max-width: 900px;
  border-radius: 14px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}
.screenshot img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.4);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
