/* Public Pages Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #222;
  color: #DDD;
  min-height: 100vh;
}

/* Navigation Header */
.public-nav {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  padding: 15px 30px;
  border-bottom: 2px solid #444;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-brand .logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  border: 2px solid #d6336c;
}

.nav-brand .brand-name {
  color: #d6336c;
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-link {
  color: #DDD;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-link:hover {
  background: rgba(214, 51, 108, 0.1);
  color: #ff9ecb;
}

.nav-link.active {
  background: #d6336c;
  color: white;
}

/* Page Container */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-header {
  text-align: center;
  margin-bottom: 50px;
}

.page-header h1 {
  color: #d6336c;
  font-size: 42px;
  margin-bottom: 15px;
}

.page-header p {
  color: #AAA;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Subscription Cards */
.subscription-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.sub-card {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  border: 2px solid #444;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.sub-card:hover {
  transform: translateY(-5px);
  border-color: #ff9ecb;
  box-shadow: 0 10px 30px rgba(255, 158, 203, 0.2);
}

.sub-card.featured {
  border-color: #d6336c;
  box-shadow: 0 0 20px rgba(214, 51, 108, 0.3);
}

.sub-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #d6336c;
  color: white;
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
}

.tier-name {
  color: #ff9ecb;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.tier-price {
  color: #DDD;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.tier-price span {
  font-size: 18px;
  color: #888;
}

.tier-features {
  list-style: none;
  margin: 25px 0;
  text-align: left;
}

.tier-features li {
  color: #AAA;
  padding: 10px 0;
  border-bottom: 1px solid #333;
  display: flex;
  align-items: center;
}

.tier-features li:last-child {
  border-bottom: none;
}

.tier-features li::before {
  content: '✓';
  color: #28a745;
  font-weight: bold;
  margin-right: 10px;
  font-size: 18px;
}

.cta-note {
  background: rgba(255, 158, 203, 0.1);
  border: 1px solid #ff9ecb;
  border-radius: 12px;
  padding: 25px;
  margin-top: 40px;
  text-align: center;
}

.cta-note h3 {
  color: #ff9ecb;
  margin-bottom: 15px;
}

.cta-note p {
  color: #AAA;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, #d6336c 0%, #c22b60 100%);
  color: white;
  padding: 15px 35px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(214, 51, 108, 0.3);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 51, 108, 0.4);
}

/* Girlfriends Grid */
.girlfriends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.gf-card {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  border: 2px solid #444;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gf-card:hover {
  transform: translateY(-5px);
  border-color: #ff9ecb;
  box-shadow: 0 10px 30px rgba(255, 158, 203, 0.2);
}

.gf-avatar {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-bottom: 2px solid #444;
}

.gf-info {
  padding: 20px;
}

.gf-name {
  color: #ff9ecb;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.gf-description {
  color: #AAA;
  line-height: 1.5;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .public-nav {
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-links {
    width: 100%;
    justify-content: center;
  }
  
  .page-header h1 {
    font-size: 32px;
  }
  
  .subscription-grid {
    grid-template-columns: 1fr;
  }
  
  .girlfriends-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}