.post-page {
  width: 100%;
  min-height: 100vh;
  background: #000000;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.post-not-found {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  background: #000000;
}

.post-article {
  width: 100%;
  max-width: 900px;
}

.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4ec9b0;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 25px;
  padding: 8px 16px;
  background: rgba(78, 201, 176, 0.05);
  border: 1px solid rgba(78, 201, 176, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.post-back-link:hover {
  background: rgba(78, 201, 176, 0.1);
  transform: translateX(-5px);
}

.post-header {
  margin-bottom: 40px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(78, 201, 176, 0.15);
}

.post-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 20px;
  line-height: 1.3;
  background: linear-gradient(135deg, #fff, #4ec9b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.post-meta-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 14px;
}

.post-avatar-small {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(78, 201, 176, 0.3);
}

.post-date {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.post-edited {
  color: rgba(255, 179, 54, 0.6);
  font-size: 12px;
  font-style: italic;
}

.post-meta-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.post-views {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.post-like-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.post-like-btn:hover:not(:disabled) {
  background: rgba(255, 54, 54, 0.1);
  border-color: rgba(255, 54, 54, 0.3);
}
.post-like-btn.liked {
  background: rgba(255, 54, 54, 0.15);
  border-color: rgba(255, 54, 54, 0.4);
  color: #ff6b6b;
}
.post-like-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.post-like-btn .like-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.post-like-btn:hover:not(:disabled) .like-icon {
  transform: scale(1.2);
}
.post-like-btn .like-count {
  font-weight: 600;
}

.post-content {
  background: rgba(20, 20, 20, 0.7);
  border: 1px solid rgba(78, 201, 176, 0.1);
  border-radius: 20px;
  padding: 40px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.8;
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  color: #4ec9b0;
  margin: 30px 0 15px;
  font-weight: 600;
}
.post-content h1:first-child, .post-content h2:first-child, .post-content h3:first-child, .post-content h4:first-child, .post-content h5:first-child, .post-content h6:first-child {
  margin-top: 0;
}
.post-content h1 {
  font-size: 28px;
}
.post-content h2 {
  font-size: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(78, 201, 176, 0.2);
}
.post-content h3 {
  font-size: 20px;
}
.post-content h4 {
  font-size: 18px;
}
.post-content p {
  margin: 0 0 15px;
}
.post-content a {
  color: #4ec9b0;
  text-decoration: none;
  border-bottom: 1px solid rgba(78, 201, 176, 0.3);
  transition: all 0.3s ease;
}
.post-content a:hover {
  color: rgb(117.0779220779, 212.9220779221, 193.4415584416);
  border-bottom-color: #4ec9b0;
}
.post-content b, .post-content strong {
  font-weight: 700;
  color: #ffffff;
}
.post-content i, .post-content em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}
.post-content s, .post-content strike, .post-content del {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.5);
}
.post-content pre {
  background: #1a1a1a;
  border: 1px solid rgba(78, 201, 176, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  overflow-x: auto;
  position: relative;
}
.post-content pre code {
  font-family: "Fira Code", monospace;
font-variant-ligatures: none;
  font-size: 14px;
  line-height: 1.6;
  color: #d4d4d4;
  background: none;
  padding: 0;
  border: none;
}
.post-content code:not(pre code) {
  background: rgba(78, 201, 176, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: "Fira Code", monospace;
font-variant-ligatures: none;
  font-size: 0.9em;
  color: #4ec9b0;
  border: 1px solid rgba(78, 201, 176, 0.2);
}
.post-content .post-table-wrapper {
  overflow-x: auto;
  margin: 25px 0;
  border-radius: 12px;
  border: 1px solid rgba(78, 201, 176, 0.15);
}
.post-content .post-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.post-content .post-table thead {
  background: rgba(78, 201, 176, 0.1);
}
.post-content .post-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  color: #4ec9b0;
  border-bottom: 1px solid rgba(78, 201, 176, 0.2);
  white-space: nowrap;
}
.post-content .post-table tbody tr {
  transition: background 0.2s ease;
}
.post-content .post-table tbody tr:hover {
  background: rgba(78, 201, 176, 0.03);
}
.post-content .post-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.post-content .post-table tbody td {
  padding: 12px 18px;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .post-content {
    padding: 25px;
    font-size: 15px;
  }
  .post-content pre {
    padding: 15px;
  }
  .post-content .post-table {
    font-size: 13px;
  }
  .post-content .post-table th, .post-content .post-table td {
    padding: 10px 12px;
  }
}

.post-actions {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}

.post-edit-btn {
  padding: 10px 24px;
  background: rgba(78, 201, 176, 0.1);
  border: 1px solid rgba(78, 201, 176, 0.3);
  border-radius: 8px;
  color: #4ec9b0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.post-edit-btn:hover {
  background: rgba(78, 201, 176, 0.2);
  transform: translateY(-2px);
}

.code-block-wrapper {
  margin: 25px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(78, 201, 176, 0.2);
}

.code-block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(78, 201, 176, 0.12);
  border-bottom: 1px solid rgba(78, 201, 176, 0.15);
  padding: 8px 12px 8px 16px;
}

.code-block-lang {
  color: #4ec9b0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Fira Code", monospace;
}

.code-block-copy {
  background: rgba(78, 201, 176, 0.15);
  border: 1px solid rgba(78, 201, 176, 0.3);
  color: #4ec9b0;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s ease;
  font-family: "Inter", sans-serif;
}
.code-block-copy:hover {
  background: rgba(78, 201, 176, 0.25);
  border-color: #4ec9b0;
}
.code-block-copy.copied {
  background: rgba(42, 166, 49, 0.2);
  border-color: rgba(42, 166, 49, 0.4);
  color: #2aa631;
}

.post-content pre {
  margin: 0;
  border-radius: 0;
  border: none;
  padding: 20px;
  background: #1a1a1a;
  overflow-x: auto;
}
.post-content pre::-webkit-scrollbar {
  height: 6px;
}
.post-content pre::-webkit-scrollbar-track {
  background: rgba(78, 201, 176, 0.05);
  border-radius: 3px;
}
.post-content pre::-webkit-scrollbar-thumb {
  background: rgba(78, 201, 176, 0.3);
  border-radius: 3px;
}
.post-content pre::-webkit-scrollbar-thumb:hover {
  background: rgba(78, 201, 176, 0.5);
}
.post-content pre {
  scrollbar-width: thin;
  scrollbar-color: rgba(78, 201, 176, 0.3) rgba(78, 201, 176, 0.05);
}

.post-content code {
  font-family: "Fira Code", monospace;
font-variant-ligatures: none;
  font-size: 14px;
  line-height: 1.7;
}

.post-table-wrapper {
  overflow-x: auto;
  margin: 25px 0;
  border-radius: 12px;
  border: 1px solid rgba(78, 201, 176, 0.15);
}
.post-table-wrapper::-webkit-scrollbar {
  height: 8px;
}
.post-table-wrapper::-webkit-scrollbar-track {
  background: rgba(78, 201, 176, 0.05);
  border-radius: 4px;
}
.post-table-wrapper::-webkit-scrollbar-thumb {
  background: rgba(78, 201, 176, 0.3);
  border-radius: 4px;
}
.post-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(78, 201, 176, 0.5);
}

.code-block-wrapper pre,
.post-table-wrapper {
  scrollbar-width: thin;
  scrollbar-color: rgba(78, 201, 176, 0.3) rgba(78, 201, 176, 0.05);
}

.info-block {
  margin: 20px 0;
  padding: 20px 24px;
  border-radius: 12px;
  border-left: 4px solid;
  font-size: 15px;
  line-height: 1.7;
}
.info-block p {
  margin: 0 0 10px;
}
.info-block p:last-child {
  margin-bottom: 0;
}
.info-block code {
  background: rgba(0, 0, 0, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.info-block-red {
  background: rgba(255, 54, 54, 0.08);
  border-color: rgba(255, 54, 54, 0.4);
  color: rgba(255, 180, 180, 0.9);
}

.info-block-green {
  background: rgba(42, 166, 49, 0.08);
  border-color: rgba(42, 166, 49, 0.4);
  color: rgba(180, 255, 180, 0.9);
}

.info-block-blue {
  background: rgba(54, 130, 255, 0.08);
  border-color: rgba(54, 130, 255, 0.4);
  color: rgba(180, 210, 255, 0.9);
}

.info-block-grey {
  background: rgba(150, 150, 150, 0.08);
  border-color: rgba(150, 150, 150, 0.4);
  color: rgba(220, 220, 220, 0.9);
}/*# sourceMappingURL=post.css.map */
