/* RESET & BODY */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #0d0d1a, #000);
  color: white;
  overflow-x: hidden;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #111;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.logo span {
  color: #8f00ff;
}
nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}
nav ul li {
  position: relative;
  cursor: pointer;
  padding: 5px 0;
  transition: all 0.3s ease;
}
nav ul li:hover {
  text-shadow: 0 0 6px #8f00ff, 0 0 10px #005eff;
}
nav ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, #005eff, #a500ff);
  transition: width 0.3s ease;
}
nav ul li:hover::after {
  width: 100%;
  box-shadow: 0 0 8px #a500ff, 0 0 16px #005eff;
  border-radius: 1px;
}
.account-btn {
  background: linear-gradient(to right, #005eff, #a500ff);
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  font-size: 1rem;
}

/* HERO SECTION */
.hero {
  position: relative;
  padding: 100px 60px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  gap: 60px;
  flex-wrap: wrap;
  z-index: 2;
}
.hero-text {
  flex: 1 1 550px;
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
.hero-text h2 {
  font-size: 3rem;
  line-height: 1.3;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.cta-btn {
  padding: 12px 24px;
  background: linear-gradient(to right, #005eff, #a500ff);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}
.hero-image {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  max-width: 100%;
  height: auto;
}
.hero-bg-glow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at center, rgba(138,43,226,0.4), transparent 70%);
  filter: blur(100px);
  z-index: 1;
}
.colorful {
  background: linear-gradient(to right, #005eff, #a500ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.highlight {
  font-weight: bold;
}
@keyframes shake {
  0% { transform: translate(0, 0); }
  25% { transform: translate(1px, -1px); }
  50% { transform: translate(-1px, 1px); }
  75% { transform: translate(1px, 1px); }
  100% { transform: translate(0, 0); }
}
.shake-server {
  animation: shake 0.5s infinite;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeInUp 1s ease-out forwards;
}
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-text {
    padding: 30px;
  }
  .hero-image {
    margin-top: 40px;
  }
  .hero-bg-glow {
    display: none;
  }
}

/* --- PRICING SECTION --- */
.pricing {
  padding: 80px 40px;
  text-align: center;
  background: #0a0a15;
}
.pricing h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}
.pricing .subtitle {
  color: #aaa;
  font-size: 1.2rem;
}
.billing-cycles {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.billing-cycles .cycle {
  background: #161625;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}
.billing-cycles .cycle.active,
.billing-cycles .cycle:hover {
  background: linear-gradient(to right, #005eff, #a500ff);
  box-shadow: 0 0 10px #8f00ff;
}
.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  width: 280px;
  text-align: left;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.card:hover {
  transform: translateY(-5px);
}
.card.featured {
  border: 2px solid #8f00ff;
  box-shadow: 0 0 20px #8f00ff;
}
.card h3 {
  color: #a500ff;
  margin-bottom: 10px;
}
.card .price {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.card .price small {
  font-size: 1rem;
  color: #ccc;
}
.card ul {
  list-style: none;
  margin-bottom: 20px;
}
.card ul li {
  margin: 8px 0;
  font-size: 0.95rem;
}
.card button {
  width: 100%;
  padding: 10px;
  border: none;
  background: linear-gradient(to right, #005eff, #a500ff);
  color: white;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

/* Footer */
.footer {
  text-align: center;
  padding: 60px 20px 30px;
  background-color: #0d0d1f;
}
.footer-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  opacity: 0.4;
}
.footer p {
  margin-top: 20px;
  color: #777;
  font-size: 0.9rem;
}
