* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #1f1f27;
  color: #f0f0f0;
  overflow-x: hidden;
}
a {
  color: #00d2ff;
  text-decoration: none;
}
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #2c2c38;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background: #f0f0f0;
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 60px;
    right: 0;
    background: #2c2c38;
    flex-direction: column;
    width: 200px;
    height: 100vh;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav-links.active {
    transform: translateX(0);
  }
  .hamburger {
    display: flex;
  }
}
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  background: radial-gradient(ellipse at top, #2c2c38 0%, #1f1f27 100%);
}
.floating-container {
  perspective: 1200px;
}
.floating-card {
  background: #2e2e3a;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
  text-align: center;
}
.floating-card h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.floating-card p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.btn {
  background: #00d2ff;
  color: #000;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #00a8cc;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
  }
}
.section {
  padding: 4rem 2rem;
  text-align: center;
}
footer {
  text-align: center;
  padding: 2rem;
  background: #2c2c38;
  font-size: 0.9rem;
}
