body {
  background-color: #1e1e1e;
  color: #eee;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 30px 20px 20px; 
}

.premium-section {
  max-width: 900px;
  margin: 40px auto 80px;
  padding: 0 15px;
  color: #eee;
}

.premium-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  color: #7B49AA;
  font-weight: 700;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 50px;
  box-shadow: 0 0 15px rgba(123, 73, 170, 0.4);
  border-radius: 15px;
  overflow: hidden;
  background-color: #2a2a2a;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 20px;
  text-align: center;
  border-bottom: 1px solid #444;
  font-size: 1rem;
  color: #ddd;
}

.comparison-table th {
  background-color: #7B49AA;
  color: white;
  font-weight: 700;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
  background-color: #3a3a3a;
}

.check {
  font-size: 1.5rem;
  user-select: none;
  color: #7B49AA;
}

.cta {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  font-size: 1.1rem;
}

.btn.violet {
  background-color: #7B49AA;
  color: white;
  box-shadow: 0 0 12px #7B49AAaa;
}

.btn.violet:hover {
  background-color: #5c2d8e;
  box-shadow: 0 0 20px #7B49AAee;
}

.btn.light {
  background-color: transparent;
  color: #7B49AA;
  border: 2px solid #7B49AA;
}

.btn.light:hover {
  background-color: #7B49AA;
  color: white;
  border-color: #7B49AA;
}

.pricing-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 60px;
  border-collapse: collapse;
  background-color: #2a2a2a;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(123, 73, 170, 0.4);
  overflow: hidden;
}

.pricing-table th,
.pricing-table td {
  padding: 15px 25px;
  text-align: center;
  border-bottom: 1px solid #444;
  font-size: 1.05rem;
  color: #ddd;
}

.pricing-table th {
  background-color: #7B49AA;
  color: white;
  font-weight: 700;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background-color: #5c2d8e66;
  cursor: default;
}

.pricing-table td small {
  display: block;
  font-size: 0.8rem;
  color: #bca9d6;
  margin-top: 3px;
}

@media screen and (max-width: 900px) {
  .premium-section {
    margin: 20px 15px 50px;
  }
}

.glass-nav {
  position: relative;
  top: 10;
  left: 50%;
  transform: translateX(-50%);
  max-width: 760px;
  width: 100%;
  background: rgba(79, 11, 114, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 25px 25px 25px 25px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  margin: 0; 
}

.glass-nav .logo {
  height: 45px;
}

.glass-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.glass-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.glass-nav a:hover,
.glass-nav a.active {
  color: #7B49AA;
}

@media screen and (max-width: 768px) {
  .glass-nav {
    flex-direction: column;
    padding: 15px 25px;
    max-width: 90%;
    border-radius: 25px 25px 25px 25px;
  }

  .glass-nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
}

.comparison-table tbody td:nth-child(3) {
  background-color: rgba(123, 73, 170, 0.15);
  color: white;
  font-weight: 600;
  border-left: 5px solid white;
  border-right: 5px solid white;
}

.comparison-table thead th:nth-child(3) {
  border-left: 5px solid white;
  border-right: 5px solid white;
  border-top: 5px solid white;
  background-color: #7B49AA; 
  color: white;
  font-weight: 700;
}

.comparison-table tbody tr:last-child td:nth-child(3) {
  border-bottom: 5px solid white;
}

@media screen and (max-width: 600px) {
  .comparison-table,
  .pricing-table {
    font-size: 13px;
  }

  .comparison-table th,
  .comparison-table td,
  .pricing-table th,
  .pricing-table td {
    padding: 10px 12px;
  }

  .premium-section h2 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 600px) {
  .comparison-table, 
  .pricing-table {
    width: 90% !important; 
    margin: 40px auto !important; 
    position: relative;
    top: 30px; 
  }
}
