* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(180deg, #0a001a, #050010);
  color: white;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  z-index: 10;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(255, 43, 224, 0.3);
  padding: 15px 60px;
}

.nav.scrolled .logo {
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.nav.scrolled .menu a {
  color: #fff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.logo {
  color: #ff00ff;
  font-weight: bold;
  font-size: 22px;
}

.menu a {
  margin: 0 15px;
  color: #ccc;
  text-decoration: none;
  transition: .3s;
}

.menu a:hover {
  color: #00ffff;
}

.hero {
  height: 95vh;
  background: url('cyberpunk-alley-girl_23-2152008002.avif') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 60px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), #0a001a);
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 60px;
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: #aaa;
  margin-top: 10px;
}

.btn {
  margin-top: 20px;
  padding: 10px 25px;
  border-radius: 25px;
  border: none;
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  color: black;
  font-weight: bold;
  cursor: pointer;
}

.center-section {
  margin-top: -80px;
  padding: 0 60px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.center-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 20px;
  width: 260px;
  text-align: center;
  position: relative;
  transition: .3s;
}

.center-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(120deg, transparent, #ff00ff55, transparent);
  opacity: 0;
  transition: .4s;
}

.center-card:hover::before {
  opacity: 1;
}

.center-card:hover {
  transform: translateY(-10px);
}

.center-card h3 {
  color: #ff00ff;
  margin-bottom: 10px;
}

.section {
  padding: 100px 60px;
  text-align: center;
}

.title {
  font-size: 28px;
  color: #ff00ff;
  margin-bottom: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.price-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card.featured {
  border-color: rgba(62,225,255,0.4);
  background: rgba(62,225,255,0.08);
}

.price-plan {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #b0b4ff;
  font-size: 0.78rem;
}

.price-value {
  font-size: 2.8rem;
  line-height: 1;
  color: #fff;
}

.price-features {
  list-style: none;
  display: grid;
  gap: 10px;
  color: #c3c7ff;
  text-align: left;
  padding-left: 0;
}

.price-features li::before {
  content: "•";
  margin-right: 10px;
  color: #00ffff;
}

.contact-note {
  max-width: 600px;
  margin: 0 auto 24px;
  color: #b9bfff;
  line-height: 1.75;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.item {
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
}

.item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, #000);
}

.item span {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 2;
}

.img1 { background-image: url(https://media.discordapp.net/attachments/1335257617358127174/1490771826106699886/image.png?ex=69d544f4&is=69d3f374&hm=dcf3c3a6437f91b1a4d6eccfd6912cfa995e53ef51cc9dfe38f10b312223487b&=&format=webp&quality=lossless&width=1280&height=552); }
.img2 { background-image: url('https://media.discordapp.net/attachments/1335257469538013241/1490776198341464165/image.png?ex=69d54906&is=69d3f786&hm=a63f9abc5d06664c8615f9625e0aa5e3aa985f0c52e42aef2e02996a449d777e&=&format=webp&quality=lossless&width=1169&height=552'); }
.img3 { background-image: url(''); }

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

@media(max-width: 900px) {
  .center-section {
    flex-direction: column;
    align-items: center;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 40px;
  }
}

