body {
  background: #0e0e11;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
  padding-top: 100px;
}
#age-gate {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.age-box {
  text-align: center;
  max-width: 420px;
  padding: 40px;
  border: 1px solid #222;
  background: #0b0b0b;
}

.age-box h1 {
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.age-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.age-buttons button {
  padding: 12px 22px;
  border: none;
  cursor: pointer;
  background: white;
  color: black;
  font-weight: bold;
}

.age-buttons .leave {
  background: transparent;
  color: #777;
  border: 1px solid #333;
}
.enter-btn {
  position: relative;
  padding: 14px 30px;
  background: linear-gradient(135deg, #ffffff, #dcdcdc);
  color: #000;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enter-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.4);
  transition: left 0.4s ease;
}

.enter-btn:hover::after {
  left: 100%;
}

.enter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.15);
}
.explore {
  padding: 100px 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.explore h2 {
  font-size: 32px;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.explore-subtitle {
  color: #aaa;
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 15px;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.explore-card {
  padding: 30px;
  border: 1px solid #1f1f1f;
  background: #0d0d0d;
  transition: transform 0.3s ease, border 0.3s ease;
}

.explore-card h3 {
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.explore-card p {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
}

.explore-card:hover {
  transform: translateY(-6px);
  border-color: #333;
}

.creators-hero {
  max-width: 800px;
  margin: 120px auto 80px;
  text-align: center;
  padding: 0 20px;
}

.creators-hero h1 {
  font-size: 36px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.creators-hero p {
  color: #aaa;
  font-size: 16px;
  line-height: 1.7;
}

.creators-benefits {
  max-width: 1000px;
  margin: 0 auto 100px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.benefit {
  border: 1px solid #1f1f1f;
  padding: 30px;
  background: #0d0d0d;
}

.benefit h3 {
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.benefit p {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
}

.creators-cta {
  text-align: center;
  padding: 80px 20px 120px;
}

.creators-cta h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.creators-cta p {
  color: #999;
  margin-bottom: 30px;
}
.pricing {
  padding: 120px 20px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing h2 {
  font-size: 32px;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.pricing-subtitle {
  color: #aaa;
  margin-bottom: 70px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.price-card {
  border: 1px solid #1f1f1f;
  background: #0d0d0d;
  padding: 40px 30px;
  transition: transform 0.3s ease, border 0.3s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: #333;
}

.price-card h3 {
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.price {
  font-size: 36px;
  margin: 15px 0;
}

.credits {
  color: #aaa;
  margin-bottom: 25px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.price-card ul li {
  margin: 10px 0;
  color: #888;
  font-size: 14px;
}

.price-btn {
  padding: 12px 24px;
  border: 1px solid #333;
  background: transparent;
  color: #fff;
  cursor: not-allowed;
  letter-spacing: 2px;
}

.featured {
  border-color: #444;
  box-shadow: 0 0 30px rgba(255,255,255,0.05);
}
