/* Page-specific styles that won't affect index.php */

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: #fff;
}

.page-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #FFD700, #f5f2ed, #AA00FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #FFD700;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5), 0 0 10px rgba(170, 0, 255, 0.3);
}

.page-hero {
  width: 100%;
  margin: 1rem 0 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-thumbnail {
  width: 100%;
  height: auto;
  display: inline;
  max-height: 60vh;
  object-fit: cover;
}

/* Rich text content styles */
.rich-content {
  line-height: 1.7;
  font-size: 1.1rem;
}

.rich-content p {
  margin-bottom: 1.5rem;
}

.rich-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.rich-content h2,
.rich-content h3,
.rich-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #00E0FF;
}

.rich-content h2 {
  font-size: 1.8rem;
  border-bottom: 2px solid #B200FF;
  padding-bottom: 0.5rem;
}

.rich-content h3 {
  font-size: 1.5rem;
}

.rich-content a {
  color: #00E0FF;
  text-decoration: underline;
}

.rich-content a:hover {
  color: #FF00E6;
}

.rich-content ul,
.rich-content ol {
  margin: 1rem 0 1rem 2rem;
}

.rich-content blockquote {
  border-left: 4px solid #B200FF;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-container {
    padding: 1rem;
  }
  
  .page-content {
    padding: 1.5rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 1.8rem;
  }
  
  .rich-content {
    font-size: 1rem;
  }
}