.main {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a4d2e 0%, #2c5530 50%, #1a4d2e 100%);
  color: #ffffff;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px 40px;
  position: relative;
  z-index: 1;
}

.loading,
.error {
  text-align: center;
  padding: 40px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.error {
  color: #ff6b6b;
}

.backButton {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 100;
  pointer-events: auto;
  font-family: inherit;
}

.backButton:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-5px);
}

.backButton:active {
  background: rgba(255, 255, 255, 0.3);
}

.article {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.header {
  margin-bottom: 30px;
}

.title {
  font-size: 2.5rem;
  margin: 0 0 20px 0;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
}

.meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.date {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.featuredImageContainer {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.featuredImage {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

.content {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.content h1 {
  font-size: 2rem;
}

.content h2 {
  font-size: 1.75rem;
}

.content h3 {
  font-size: 1.5rem;
}

.content p {
  margin: 15px 0;
  line-height: 1.8;
}

.content a {
  color: #c8e6c9;
  text-decoration: underline;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 10;
  transition: color 0.3s ease;
}

.content a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.content a:active {
  color: #66bb6a;
}

.contentLink {
  color: #c8e6c9 !important;
  text-decoration: underline !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  position: relative;
  z-index: 10;
  transition: color 0.3s ease;
}

.contentLink:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

.content ul,
.content ol {
  margin: 15px 0;
  padding-left: 30px;
}

.content li {
  margin: 8px 0;
}

.content blockquote {
  border-left: 4px solid #c8e6c9;
  padding-left: 20px;
  margin: 20px 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.content code {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

.content pre {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 20px 0;
}

.content pre code {
  background: none;
  padding: 0;
}

.content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.content table th,
.content table td {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px;
  text-align: left;
}

.content table th {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

@media (max-width: 768px) {
  .container {
    padding: 90px 15px 20px;
  }

  .article {
    padding: 25px 20px;
  }

  .title {
    font-size: 1.75rem;
  }

  .content {
    font-size: 1rem;
  }

  .meta {
    flex-direction: column;
    gap: 10px;
  }
}

