.page-content {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 40px 20px;
}

.page-title {
  color: #ffffff;
  font-size: clamp(28px, 8vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  text-align: center;
}

.page-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(16px, 4vw, 20px);
  text-align: center;
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
  padding: 0 15px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
  width: 100%;
  max-width: 900px;
}

.feature-item {
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.feature-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

/* Inspiration Section */
.inspiration-section {
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 50px;
  width: 100%;
  max-width: 900px;
  border: 1px solid rgba(204, 136, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.inspiration-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(204, 136, 255, 0.1), transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.inspiration-section > * {
  position: relative;
  z-index: 1;
}

.section-title {
  color: #cc88ff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 0 20px rgba(204, 136, 255, 0.5);
}

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.inspiration-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.inspiration-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.inspiration-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.inspiration-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.inspiration-type {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.inspiration-impact {
  color: #ff6b4a;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 107, 74, 0.5);
}

/* Creators Grid */
.creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  width: 100%;
  max-width: 900px;
}

.creator-card {
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.creator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--card-accent, #ffaa00), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.creator-card:hover::before {
  opacity: 1;
}

.creator-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.creator-dev { --card-accent: #ffaa00; }
.creator-friend { --card-accent: #4aff88; }

.creator-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: 2px solid var(--card-accent, #ffaa00);
  background: rgba(255, 255, 255, 0.1);
}

.creator-name {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.creator-role {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

.creator-bio {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.creator-social {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--card-accent, #ffaa00);
  border-color: var(--card-accent, #ffaa00);
  color: #fff;
  transform: translateY(-2px);
}

/* Buttons */
.about-buttons {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border: 2px solid;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.about-btn:hover::before {
  left: 100%;
}

.btn-icon {
  flex-shrink: 0;
}

.btn-download {
  border-color: #4aff88;
  box-shadow: 0 0 10px rgba(74, 255, 136, 0.3);
}

.btn-download:hover {
  background: rgba(74, 255, 136, 0.2);
  box-shadow: 0 0 20px rgba(74, 255, 136, 0.5);
  transform: translateY(-2px);
}

.btn-issues {
  border-color: #ff6b4a;
  box-shadow: 0 0 10px rgba(255, 107, 74, 0.3);
}

.btn-issues:hover {
  background: rgba(255, 107, 74, 0.2);
  box-shadow: 0 0 20px rgba(255, 107, 74, 0.5);
  transform: translateY(-2px);
}

/* Back Button */
.back-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.back-btn:hover {
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Highlights */
.highlight-mod {
  color: #4a9eff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(74, 158, 255, 0.5);
}

.highlight-dev {
  color: #ffaa00;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 170, 0, 0.5);
}

.highlight-friend {
  color: #4aff88;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(74, 255, 136, 0.4);
}

.highlight-addon {
  color: #cc88ff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(204, 136, 255, 0.5);
}

.separator {
  width: 100%;
  max-width: 900px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .creators-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inspiration-grid {
    grid-template-columns: 1fr;
  }

  .inspiration-section {
    padding: 25px;
  }
}

@media (max-width: 600px) {
  .about-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .about-btn {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}