body {
  font-family: Arial, sans-serif;
  background-image: url("bg.png");
  color: #ffffff;
  margin: 0;
  padding: 100px 0;
}

.custom-cursor {
  animation: glowPulse 2.5s infinite ease-in-out;
}

html {
  font-size: 70%;
}

a {
  text-decoration: none;
  color: inherit;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.disabled {
  color: #777;
  text-decoration: line-through;
}

.pricing-box {
  background-color: #1e1e1e;
  border: 1px solid #444;
  padding: 50px 20px;
  border-radius: 12px;
  width: 300px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.pricing-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.pricing-box h2 {
  font-size: 2.3rem;
  color: rgb(68, 93, 255);
  margin-bottom: 10px;
}

.pricing-box h3 {
  font-size: 2.3rem;
  color: rgb(255, 178, 45);
  margin-bottom: 10px;
}

.price {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.priceF {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-decoration: line-through;
}

.pricing-box ul {
  list-style: none;
  padding: 0;
  flex-grow: 1;
}

.pricing-box ul li {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.4;
}

.continue-btn {
  margin-top: 20px;
  padding: 12px;
  background-color: rgb(68, 255, 243);
  color: black;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.35rem;
  transition: background-color 0.3s ease;
  text-align: center;
}

.continue-btn:hover {
  background-color: rgb(51, 51, 255);
  color: white;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0px;
  right: 0;
  height: 60px;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 10;
}

.navbar-left {
  font-size: 1.15rem;
  font-weight: bold;
}

.navbar-center a {
  margin: 0 15px;
  font-weight: 500;
  font-size: 1rem;
}

.navbar-right .btn,
.navbar-right .btn-outline {
  margin-left: 10px;
}

.buttons {
  margin: 30px 0;
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 20px;
  background-color: white;
  color: black;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #ddd;
}

.btn-outline {
  padding: 10px 18px;
  border: 1px solid white;
  color: white;
  border-radius: 6px;
  font-weight: bold;
}

.btn-outline:hover {
  background: white;
  color: black;
}

.btn.gradient {
  background: linear-gradient(90deg, rgb(68, 255, 243), rgb(51, 51, 255));
  color: white;
}

.btn.dark {
  background: #333;
  color: white;
}

@media (max-width: 768px) {
  body {
    flex-direction: column;
  }

  .navbar-right {
    display: none;
  }

  .sidebar {
    display: none;
  }

  .navbar {
    padding: 0 20px;
    height: 50px;
  }

  .navbar-left {
    display: none;
  }

  .navbar-center a {
    margin: 10 20px;
    font-size: 0.9rem;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
