body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: repeating-linear-gradient(90deg, #0c0c0c 0, #0c0c0c 5%, transparent 0, transparent 50%), repeating-linear-gradient(180deg, #0c0c0c 0, #0c0c0c 5%, transparent 0, transparent 50%);
        background-size: 3em 3em;
        background-color: #000000;
        opacity: 1;
  color: #e5e5e5;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #00c3ff3b transparent;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 4px;
}

a {
  text-decoration: none;
  color: inherit;
}

nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background-color: #0f1117;
  align-items: center;
  box-shadow: #00c3ff4f 0 4px 6px -1px;
}

.logo img{
  height: 40px;
}

.nav-btn {
  padding: 10px 20px;
  background-color: #00c3ff;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
}

header .hero {
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 30px;
  color: #c0c0c0;
}

.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: #00c3ff;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #009fcc;
}

main {
  padding: 0px 20px 80px;
}

.features {
  text-align: center;
  margin-bottom: 80px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.feature {
  background-image: radial-gradient( circle farthest-corner at 50.3% 47.3%,  #00c3ff3f 1%, rgb(0, 0, 0) 80% );
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #2a2d36;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.feature h3 {
  margin-bottom: 10px;
  color: #00c3ff;
}

.pricing {
  text-align: center;
}

.price {
  font-size: 24px;
  margin: 20px 0;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 30px;
  font-size: 14px;
  color: #888;
  background-color: #0f1117;
}

.feature::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg, 
    transparent, 
    transparent 30%, 
    rgba(0,255,255,0.3)
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.feature:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,255,255,0.5);
}

.feature:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}

/* Pricing Page Styles */
.pricing-plans {
  padding: 0px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.plan {
  background-image: radial-gradient(circle farthest-corner at 50.3% 47.3%, #00c3ff1a 1%, rgb(0, 0, 0) 80%);
  border: 2px solid #2a2d36;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 195, 255, 0.2);
}

.plan.featured {
  border-color: #00c3ff;
  background-image: radial-gradient(circle farthest-corner at 50.3% 47.3%, #00c3ff3f 1%, rgb(0, 0, 0) 80%);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #00c3ff;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-header h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #00c3ff;
}

.price {
  margin-bottom: 15px;
}

.currency {
  font-size: 20px;
  vertical-align: top;
  color: #c0c0c0;
}

.amount {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
}

.period {
  font-size: 16px;
  color: #c0c0c0;
  margin-left: 5px;
}

.trial, .savings, .lifetime {
  background-color: #00c3ff20;
  color: #00c3ff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 30px;
}

.savings {
  background-color: #00ff0020;
  color: #00ff00;
}

.plan-features {
  margin: 30px 0;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  padding: 8px 0;
  color: #e5e5e5;
  font-size: 16px;
}

.plan-btn {
  display: block;
  width: calc(100% - 20px);
  max-width: 250px;
  margin: 0 auto;
  padding: 16px 24px;
  background-color: #2a2d36;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid #2a2d36;
  text-align: center;
  box-sizing: border-box;
}

.plan-btn:hover {
  background-color: #00c3ff;
  border-color: #00c3ff;
}

.featured-btn {
  background-color: #00c3ff;
  border-color: #00c3ff;
}

.featured-btn:hover {
  background-color: #009fcc;
  border-color: #009fcc;
}

/* Download Section Styles */
.download {
  text-align: center;
  margin-bottom: 80px;
}

.download h2 {
  margin-bottom: 10px;
}

.download p {
  color: #c0c0c0;
  margin-bottom: 40px;
}

.download-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.download-btn {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  background-image: radial-gradient(circle farthest-corner at 50.3% 47.3%, #00c3ff1a 1%, rgb(0, 0, 0) 80%);
  border: 2px solid #2a2d36;
  border-radius: 12px;
  transition: all 0.3s ease;
  min-width: 250px;
  gap: 15px;
}

.download-btn:hover {
  transform: translateY(-3px);
  border-color: #00c3ff;
  box-shadow: 0 8px 25px rgba(0, 195, 255, 0.3);
}

.download-icon {
  font-size: 32px;
}

.download-text {
  text-align: left;
}

.download-text strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
  color: #fff;
}

.download-text small {
  color: #c0c0c0;
  font-size: 14px;
}

.download-note {
  font-size: 14px;
  color: #888;
  font-style: italic;
}

@media (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .plan {
    padding: 20px;
  }
  
  .amount {
    font-size: 36px;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .download-btn {
    min-width: 280px;
  }
}