.article-wrap {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 16px;
  padding: 50px 40px;
  margin: 40px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(74, 144, 226, 0.2);
}
.article-wrap .title {
  color: #ffffff !important;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.article-meta {
  color: #4a90e2 !important;
  font-size: 15px;
  margin-bottom: 30px !important;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(74, 144, 226, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-meta::before {
  content: "\1F4C5";
  font-size: 18px;
}
.article-content {
  color: #f0f0f0 !important;
  font-size: 18px;
  line-height: 1.9 !important;
  text-align: justify;
}
.article-content p {
  color: #f0f0f0 !important;
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.9;
}
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  color: #ffffff !important;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 20px;
  line-height: 1.4;
}
.article-content h2 {
  font-size: 32px;
  border-left: 4px solid #4a90e2;
  padding-left: 20px;
  margin-left: -24px;
}
.article-content h3 {
  font-size: 26px;
  color: #4a90e2 !important;
}
.article-content h4 {
  font-size: 22px;
}
.article-content ul,
.article-content ol {
  color: #f0f0f0 !important;
  margin: 20px 0;
  padding-left: 30px;
}
.article-content li {
  color: #f0f0f0 !important;
  margin-bottom: 12px;
  line-height: 1.8;
}
.article-content a {
  color: #4a90e2 !important;
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 144, 226, 0.3);
  transition: all 0.3s ease;
}
.article-content a:hover {
  color: #6ba3f0 !important;
  border-bottom-color: #6ba3f0;
}
.article-content strong,
.article-content b {
  color: #ffffff !important;
  font-weight: 700;
}
.article-content em,
.article-content i {
  color: #d0d0d0 !important;
  font-style: italic;
}
.article-content blockquote {
  border-left: 4px solid #4a90e2;
  padding: 20px 25px;
  margin: 30px 0;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 8px;
  color: #e0e0e0 !important;
  font-style: italic;
}
.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(74, 144, 226, 0.2);
}
.article-content code {
  background: rgba(0, 0, 0, 0.4);
  padding: 3px 8px;
  border-radius: 4px;
  color: #4a90e2 !important;
  font-family: 'Courier New', monospace;
  font-size: 16px;
}
.article-content pre {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 25px 0;
  border: 1px solid rgba(74, 144, 226, 0.2);
}
.article-content pre code {
  background: transparent;
  padding: 0;
  color: #f0f0f0 !important;
}
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}
.article-content table th,
.article-content table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(74, 144, 226, 0.2);
  color: #f0f0f0 !important;
}
.article-content table th {
  background: rgba(74, 144, 226, 0.2);
  color: #ffffff !important;
  font-weight: 700;
}
.article-content table tr:hover {
  background: rgba(74, 144, 226, 0.1);
}
.article-wrap > div:last-child {
  margin-top: 50px !important;
  padding-top: 30px;
  border-top: 2px solid rgba(74, 144, 226, 0.3);
}
.article-wrap .btn {
  transition: all 0.3s ease;
  font-weight: 600;
}
.article-wrap .btn:hover {
  transform: translateX(-5px);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}
@media (max-width: 768px) {
  .article-wrap {
    padding: 30px 20px;
    margin: 20px 0;
  }
  .article-wrap .title {
    font-size: 28px;
  }
  .article-content {
    font-size: 16px;
  }
  .article-content h2 {
    font-size: 24px;
    margin-left: 0;
    padding-left: 15px;
  }
}
