html, body {
  min-height: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  background-image: url('public/gym-background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 1rem;
  color: white;
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.background-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.7), rgba(127, 29, 29, 0.5));
  z-index: -1;
}

.container {
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.text-center {
  text-align: center;
}

.header-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-large {
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 0.5rem;
}

.main-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: white;
  margin: 0;
}

.header-description {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: #e5e7eb;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  width: 100%;
  box-sizing: border-box;
}

.pricing-card {
  position: relative;
  border-radius: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  height: auto;
  display: flex;
  flex-direction: column;
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 9999px;
  background: linear-gradient(to right, #fbbf24, #d97706);
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

.card-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: white;
  margin: 0;
}

.price-container {
  margin-top: 0.75rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.original-price {
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: line-through;
  color: #9ca3af;
  margin-right: 0.5rem;
}

.current-price {
  font-size: 1.875rem;
  font-weight: bold;
}

.period {
  margin-left: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.features-list {
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.feature-item i {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.feature-text {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

.feature-text i {
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.25rem;
  flex-shrink: 0;
}

.cta-button {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  font-weight: 600;
  background-color: black;
  color: white;
  text-align: center;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
  box-sizing: border-box;
}

.cta-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.footer-text {
  margin-top: 3rem;
  text-align: center;
}

.footer-text p {
  color: #e5e7eb;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  
  .main-title {
    font-size: 2.5rem;
  }

  .pricing-card {
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  body {
    padding: 2rem;
  }
}