* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Russo One', sans-serif;
  background: linear-gradient(160deg, #000000, #111111);
  color: #ffffff;
  min-height: 100vh;
  text-align: center;
  padding: 2rem 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeIn 1.2s ease-in-out;
}

.hero-section {
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #ff3c3c;
  letter-spacing: 1.5px;
}

p {
  font-size: 1.3rem;
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact {
  font-size: 1.1rem;
  background-color: #ff3c3c;
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  color: #ffffff;
  transition: background-color 0.3s;
  margin-bottom: 2rem;
}

.contact:hover {
  background-color: #cc2e2e;
}

/* Price Cards Style */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.price-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: #ff3c3c;
}

.price-card-featured {
  border: 2px solid #ff3c3c;
  background: #222;
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff3c3c;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

.package-name {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.package-price {
  margin-bottom: 2rem;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.current-price {
  font-size: 2.5rem;
  color: #ff3c3c;
}

.currency {
  font-size: 1.2rem;
  margin-right: 0.2rem;
}

.package-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.package-features li {
  color: #ccc;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.package-features li i {
  color: #ff3c3c;
  margin-right: 0.8rem;
}

.feature-excluded {
  text-decoration: line-through;
  color: #555 !important;
  opacity: 0.7;
}

.feature-excluded i {
  color: #555 !important;
}

.buy-button {
  background: #ff3c3c;
  color: white;
  text-decoration: none;
  padding: 1rem;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.buy-button:hover {
  background: #cc2e2e;
}

/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  overflow-y: auto;
  padding: 2rem 1rem;
}

.modal-content {
  background: #111;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 3rem 2rem;
  border-radius: 12px;
  position: relative;
  border: 1px solid #333;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: #ff3c3c;
}

body.modal-open {
  overflow: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1.1rem;
  }
}
