/* Reset + Font */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #111;
  color: #f0f0f0;
  visibility: hidden; /* Will be revealed by JS after auth check */
}

/* Header */
header {
  text-align: center;
  padding: 3rem 1rem 2rem;
  background-color: #1a1a1a;
  border-bottom: 1px solid #333;
}
header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
header p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #ccc;
}

/* Main Section */
.section-pricing {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Table */
.table-wrapper {
  overflow-x: auto;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #1c1c1c;
  border: 1px solid #333;
  border-radius: 6px;
  overflow: hidden;
}
.pricing-table th,
.pricing-table td {
  padding: 1.25rem;
  text-align: center;
  border-bottom: 1px solid #333;
}
.pricing-table th {
  background-color: #222;
  font-weight: 600;
  font-size: 1rem;
}
.pricing-table td {
  font-size: 0.95rem;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

/* CTA Buttons */
.pricing-actions {
  margin-top: 2rem;
  text-align: center;
}
.cta-button {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  margin: 0.5rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.cta-button:hover {
  background-color: #45a049;
}
.cta-button.secondary {
  background-color: #2e2e2e;
  border: 1px solid #555;
}
.cta-button.secondary:hover {
  background-color: #444;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #888;
  background-color: #111;
  border-top: 1px solid #333;
}
footer a {
  color: #bbb;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-table th,
  .pricing-table td {
    padding: 1rem;
    font-size: 0.9rem;
  }

  header h1 {
    font-size: 2rem;
  }
}
