.post {
  padding: 50px 10px;
  border-bottom: 1px solid #ddd;
  position: relative;
}
.post img {
  max-width: 100%;
  max-height: 300px;
}
.post-content-container {
  position: relative;
  overflow: hidden;
}
.post-content {
  max-height: 400px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.post-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.95) 100%);
  pointer-events: none;
  z-index: 2;
}
.read-more-container {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
}
.read-more-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(109,146,188,0.1);
  color: #6d92bc;
  text-decoration: none;
  border: 2px solid rgba(109,146,188,0.3);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}
.read-more-btn:hover {
  background: rgba(109,146,188,0.2);
  border-color: rgba(109,146,188,0.5);
  color: #5a7ea0;
  transform: translateY(-1px);
}
.read-more-btn i {
  margin-right: 8px;
  font-size: 12px;
}
@media (max-width: 768px) {
  .post {
    padding: 30px 15px;
  }
  .post-content {
    max-height: 300px;
  }
  .post-gradient-overlay {
    height: 120px;
  }
  .read-more-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}
#container {
  width: 100%;
  height: 100%;
}
.outer {
  margin: 50px 0 0 300px;
  right: 0;
  padding: 0 50px;
  transition: margin 0.3s ease-in-out;
}
.outer-sidebar {
  margin-left: 300px;
}
.outer-fullwidth {
  margin-left: 150px;
  margin-right: 150px;
}
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  transition: 0.5s ease;
}
@media (max-width: 768px) {
  .outer-sidebar {
    margin-left: 50px;
  }
  .sidebar {
    width: 200px;
  }
  .outer {
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .outer {
    padding: 0 10px;
  }
  .sidebar {
    width: 180px;
  }
}
.header-image {
  background-image: url("/images/header-img.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  width: 100%;
  height: 200px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.twikoo textarea {
  height: 200px !important;
}
.twikoo .tk-admin-close {
  z-index: 999 !important;
}
h1 {
  font-size: 26px;
}
h2 {
  font-size: 22px;
}
h3 {
  font-size: 20px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 17px;
}
h6 {
  font-size: 16px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 10px 0;
}
pre {
  padding: 5px;
  background: #eee;
  border-radius: 8px;
  border: 1px solid #ddd;
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 20px 0;
  background: #fafbfc;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}
th,
td {
  padding: 10px 16px;
  border-bottom: 1px solid #e5e7eb;
}
th {
  background: #f0f4fa;
  color: #333;
  font-weight: 600;
}
td {
  background: #fff;
  color: #444;
}
tr:last-child td {
  border-bottom: none;
}
table tr:hover td {
  background: #f5f7fa;
}
table {
  border: 1px solid #e5e7eb;
}
.archive-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(139,179,221,0.15);
}
.archive-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 20px;
  background: rgba(139,179,221,0.05);
  border: 2px solid rgba(139,179,221,0.2);
  border-radius: 12px;
  color: #333;
  position: relative;
  overflow: hidden;
}
.archive-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}
.archive-header h1 {
  font-size: 2.4rem;
  color: #6d92bc;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: none;
}
.archive-header h1 svg {
  color: #8bb3dd;
  margin-right: 15px;
  font-size: 2.5rem;
  vertical-align: middle;
}
.archive-stats {
  font-size: 1rem;
  color: #666;
  margin: 0;
  position: relative;
  z-index: 1;
}
.archive-stats-number {
  color: #6d92bc;
  font-weight: bold;
  font-size: 1.3rem;
  background: rgba(139,179,221,0.1);
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  margin: 0 5px;
  border: 1px solid rgba(139,179,221,0.3);
}
.archive-timeline {
  position: relative;
  margin: 40px 0;
  padding-left: 30px;
}
.archive-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #8bb3dd, #6d92bc);
  border-radius: 2px;
}
.archive-year-section {
  margin-bottom: 60px;
  position: relative;
}
.archive-year-header {
  position: relative;
  margin-bottom: 30px;
}
.archive-year-title {
  background: rgba(139,179,221,0.1);
  color: #6d92bc;
  padding: 15px 25px;
  border: 2px solid rgba(139,179,221,0.3);
  border-radius: 25px;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(139,179,221,0.15);
  position: relative;
  z-index: 2;
}
.archive-year-title::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: #8bb3dd;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px #8bb3dd;
}
.archive-year-title svg {
  color: #8bb3dd;
  margin-right: 10px;
}
.archive-year-count {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 400;
}
.archive-posts-container {
  margin-left: 20px;
  position: relative;
}
.archive-month-section {
  margin: 25px 0 15px 0;
  position: relative;
}
.archive-month-title {
  font-size: 1.3rem;
  color: #6d92bc;
  margin: 0;
  padding: 10px 0 10px 30px;
  background: linear-gradient(90deg, rgba(139,179,221,0.1), transparent);
  border-radius: 8px;
  position: relative;
  font-weight: 500;
}
.archive-month-title svg {
  margin-right: 8px;
  color: #8bb3dd;
}
.archive-month-title::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #8bb3dd;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #8bb3dd;
}
.archive-post-item {
  display: flex;
  align-items: flex-start;
  margin: 15px 0;
  padding: 15px 0 15px 30px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 8px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.archive-post-item:nth-child(2n) {
  animation-delay: 0.1s;
}
.archive-post-item:nth-child(3n) {
  animation-delay: 0.2s;
}
.archive-post-item:hover {
  background: rgba(139,179,221,0.08);
  transform: translateX(5px);
  box-shadow: 0 2px 10px rgba(139,179,221,0.2);
}
.archive-post-item::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 25px;
  width: 8px;
  height: 8px;
  background: #007bff;
  border-radius: 50%;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}
.archive-post-item:hover::before {
  background: #8bb3dd;
  transform: scale(1.3);
  box-shadow: 0 0 0 3px rgba(139,179,221,0.3);
}
.archive-post-date {
  min-width: 50px;
  text-align: center;
}
.archive-day {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #6d92bc;
  background: rgba(139,179,221,0.08);
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 10px;
  border: 2px solid rgba(139,179,221,0.3);
  transition: all 0.3s ease;
}
.archive-post-item:hover .archive-day {
  background: rgba(139,179,221,0.2);
  color: #6d92bc;
  transform: scale(1.1);
  border-color: #8bb3dd;
}
.archive-post-info {
  flex: 1;
}
.archive-post-title {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 500;
}
.archive-post-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.archive-post-title a:hover {
  color: #6d92bc;
}
.archive-post-meta {
  font-size: 0.9rem;
  color: #888;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.archive-post-category,
.archive-post-tags {
  display: flex;
  align-items: center;
  gap: 5px;
}
.archive-post-category svg,
.archive-post-tags svg {
  color: #8bb3dd;
  font-size: 0.8rem;
}
.archive-post-category a,
.archive-tag-link {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 2px 6px;
  border-radius: 4px;
}
.archive-post-category a:hover,
.archive-tag-link:hover {
  color: #6d92bc;
  background: rgba(139,179,221,0.1);
}
@media (max-width: 768px) {
  .archive-container {
    padding: 15px;
    margin: 10px;
  }
  .archive-header {
    padding: 30px 15px;
  }
  .archive-header h1 {
    font-size: 2.2rem;
  }
  .archive-year-title {
    font-size: 1.5rem;
    padding: 12px 20px;
  }
  .archive-timeline {
    padding-left: 20px;
  }
  .archive-posts-container {
    margin-left: 10px;
  }
  .archive-post-item {
    padding-left: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .archive-post-date {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .archive-post-meta {
    flex-direction: column;
    gap: 10px;
  }
}
.archive-container::-webkit-scrollbar {
  width: 8px;
}
.archive-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.archive-container::-webkit-scrollbar-thumb {
  background: #8bb3dd;
  border-radius: 4px;
}
.archive-container::-webkit-scrollbar-thumb:hover {
  background: #6d92bc;
}
@-moz-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-o-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.categories-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(139,179,221,0.15);
}
.categories-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 20px;
  background: rgba(139,179,221,0.05);
  border: 2px solid rgba(139,179,221,0.2);
  border-radius: 12px;
  color: #333;
  position: relative;
  overflow: hidden;
}
.categories-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}
.categories-header h1 {
  font-size: 2.4rem;
  color: #6d92bc;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: none;
}
.categories-header h1 svg {
  margin-right: 15px;
  color: #8bb3dd;
}
.categories-stats {
  font-size: 1rem;
  color: #666;
  position: relative;
  z-index: 1;
  margin: 0;
}
.stats-number {
  color: #6d92bc;
  font-weight: bold;
  font-size: 1.1rem;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.categories-category-card {
  background: #fff;
  border: 2px solid rgba(139,179,221,0.2);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.categories-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(139,179,221,0.25);
  border-color: rgba(139,179,221,0.4);
}
.categories-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8bb3dd, #6d92bc);
}
.categories-category-info {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(139,179,221,0.15);
}
.categories-category-title {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.categories-category-title svg {
  color: #8bb3dd;
  margin-right: 10px;
}
.categories-category-title a {
  color: #6d92bc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.categories-category-title a:hover {
  color: #8bb3dd;
}
.categories-category-count {
  color: #888;
  font-size: 0.95rem;
  margin: 0;
}
.categories-category-posts {
  margin-top: 10px;
}
.categories-category-post-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(139,179,221,0.1);
  transition: background-color 0.2s ease;
}
.categories-category-post-item:last-child {
  border-bottom: none;
}
.categories-category-post-item:hover {
  background-color: rgba(139,179,221,0.05);
  border-radius: 6px;
  padding-left: 8px;
  padding-right: 8px;
}
.categories-post-date {
  min-width: 60px;
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
}
.categories-post-title {
  flex: 1;
  margin-left: 15px;
}
.categories-post-title a {
  color: #555;
  text-decoration: none;
  font-size: 0.8rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.categories-post-title a:hover {
  color: #6d92bc;
}
.categories-view-more {
  text-align: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(139,179,221,0.15);
}
.categories-view-more a {
  color: #6d92bc;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.categories-view-more a:hover {
  color: #8bb3dd;
}
.categories-view-more a svg {
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.categories-view-more a:hover svg {
  transform: translateX(3px);
}
.categories-no-categories {
  text-align: center;
  padding: 80px 20px;
}
.categories-empty-state {
  background: rgba(139,179,221,0.05);
  border: 2px dashed rgba(139,179,221,0.3);
  border-radius: 12px;
  padding: 60px 40px;
  max-width: 400px;
  margin: 0 auto;
}
.categories-empty-state svg {
  font-size: 4rem;
  color: #8bb3dd;
  margin-bottom: 20px;
}
.categories-empty-state h3 {
  color: #6d92bc;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.categories-empty-state p {
  color: #888;
  font-size: 1rem;
  margin: 0;
}
.categories-single-category-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 20px;
  background: rgba(139,179,221,0.05);
  border: 2px solid rgba(139,179,221,0.2);
  border-radius: 12px;
  color: #333;
  position: relative;
  overflow: hidden;
}
.categories-single-category-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}
.categories-single-category-header h1 {
  font-size: 2.8rem;
  color: #6d92bc;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: none;
}
.categories-single-category-header h1 svg {
  margin-right: 15px;
  color: #8bb3dd;
}
.categories-category-stats {
  font-size: 1.1rem;
  color: #666;
  position: relative;
  z-index: 1;
  margin: 0 0 20px 0;
}
.categories-category-navigation {
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
.categories-back-to-categories {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: rgba(139,179,221,0.1);
  border: 1px solid rgba(139,179,221,0.3);
  border-radius: 25px;
  color: #6d92bc;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.categories-back-to-categories:hover {
  background: rgba(139,179,221,0.2);
  border-color: rgba(139,179,221,0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139,179,221,0.2);
  color: #5a7ea0;
}
.categories-back-to-categories svg {
  margin-right: 8px;
  font-size: 0.9em;
}
.categories-single-category-posts {
  margin-top: 30px;
}
.categories-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  margin-top: 20px;
}
.categories-post-card {
  background: #fff;
  border: 2px solid rgba(139,179,221,0.15);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.categories-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(139,179,221,0.2);
  border-color: rgba(139,179,221,0.3);
}
.categories-post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8bb3dd, #6d92bc);
}
.categories-post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(139,179,221,0.1);
  flex-wrap: wrap;
  gap: 10px;
}
.categories-post-date {
  font-size: 0.9rem;
  color: #888;
  font-weight: 500;
}
.categories-post-tags-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.categories-tag-link {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(139,179,221,0.1);
  border-radius: 12px;
  color: #6d92bc;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}
.categories-tag-link:hover {
  background: rgba(139,179,221,0.2);
  color: #5a7ea0;
}
.categories-tag-link svg {
  margin-right: 4px;
  font-size: 0.8em;
}
.categories-post-title a {
  color: #333;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
  display: block;
}
.categories-post-title a:hover {
  color: #6d92bc;
}
.categories-post-excerpt {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}
.categories-post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.categories-post-category {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: rgba(139,179,221,0.1);
  border: 1px solid rgba(139,179,221,0.2);
  border-radius: 15px;
  color: #6d92bc;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}
.categories-post-category:hover {
  background: rgba(139,179,221,0.2);
  border-color: rgba(139,179,221,0.3);
  transform: translateY(-1px);
}
.categories-post-category.current-category {
  background: rgba(139,179,221,0.25);
  border-color: rgba(139,179,221,0.4);
  font-weight: 600;
}
.categories-post-category svg {
  margin-right: 4px;
  font-size: 0.8em;
}
.categories-post-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 15px;
  border-top: 1px solid rgba(139,179,221,0.1);
}
.categories-read-more {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(139,179,221,0.1);
  border: 1px solid rgba(139,179,221,0.2);
  border-radius: 20px;
  color: #6d92bc;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.categories-read-more:hover {
  background: rgba(139,179,221,0.2);
  border-color: rgba(139,179,221,0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139,179,221,0.15);
  color: #5a7ea0;
}
.categories-read-more svg {
  margin-left: 6px;
  font-size: 0.8em;
  transition: transform 0.3s ease;
}
.categories-read-more:hover svg {
  transform: translateX(3px);
}
.categories-no-posts {
  text-align: center;
  padding: 80px 20px;
}
.categories-no-posts .categories-empty-state {
  background: rgba(139,179,221,0.05);
  border: 2px dashed rgba(139,179,221,0.3);
  border-radius: 12px;
  padding: 60px 40px;
  max-width: 400px;
  margin: 0 auto;
}
.categories-no-posts .categories-empty-state svg {
  font-size: 4rem;
  color: #8bb3dd;
  margin-bottom: 20px;
}
.categories-no-posts .categories-empty-state h3 {
  color: #6d92bc;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.categories-no-posts .categories-empty-state p {
  color: #888;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 768px) {
  .categories-container {
    margin: 10px;
    padding: 15px;
  }
  .categories-header,
  .categories-single-category-header {
    padding: 30px 15px;
    margin-bottom: 30px;
  }
  .categories-header h1,
  .categories-single-category-header h1 {
    font-size: 2.2rem;
  }
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .categories-category-card {
    padding: 20px;
  }
  .categories-category-title {
    font-size: 1.3rem;
  }
  .categories-empty-state {
    padding: 40px 20px;
  }
  .categories-empty-state svg {
    font-size: 3rem;
  }
  .categories-posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .categories-post-card {
    padding: 20px;
  }
  .categories-post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .categories-post-title a {
    font-size: 1.1rem;
  }
  .categories-back-to-categories {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .categories-header h1,
  .categories-single-category-header h1 {
    font-size: 1.8rem;
  }
  .categories-stats,
  .categories-category-stats {
    font-size: 1rem;
  }
  .stats-number {
    font-size: 1.1rem;
  }
  .categories-category-card,
  .categories-post-card {
    padding: 15px;
  }
  .categories-post-date {
    min-width: 50px;
    font-size: 0.8rem;
  }
  .categories-post-title {
    margin-left: 10px;
  }
  .categories-post-title a {
    font-size: 0.85rem;
  }
  .categories-post-card {
    padding: 15px;
  }
  .categories-post-title a {
    font-size: 1.05rem;
  }
  .categories-post-excerpt {
    font-size: 0.9rem;
  }
  .categories-post-categories,
  .categories-post-tags-meta {
    gap: 6px;
  }
  .categories-post-category,
  .categories-tag-link {
    padding: 4px 10px;
    font-size: 0.8rem;
  }
  .categories-back-to-categories {
    padding: 6px 14px;
    font-size: 0.85rem;
  }
  .categories-read-more {
    padding: 6px 14px;
    font-size: 0.85rem;
  }
}
@-moz-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.tags-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(139,179,221,0.15);
}
.tags-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 20px;
  background: rgba(139,179,221,0.05);
  border: 2px solid rgba(139,179,221,0.2);
  border-radius: 12px;
  color: #333;
  position: relative;
  overflow: hidden;
}
.tags-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}
.tags-header h1 {
  font-size: 2.4rem;
  color: #6d92bc;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: none;
}
.tags-header h1 svg {
  margin-right: 15px;
  color: #8bb3dd;
}
.tags-stats {
  font-size: 1rem;
  color: #666;
  position: relative;
  z-index: 1;
  margin: 0;
}
.stats-number {
  color: #6d92bc;
  font-weight: bold;
  font-size: 1.1rem;
}
.tags-cloud {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 40px;
  background: rgba(139,179,221,0.03);
  border-radius: 12px;
  border: 1px solid rgba(139,179,221,0.1);
}
.tags-tag-item {
  display: inline-block;
  margin: 8px 12px;
  padding: 8px 16px;
  background: rgba(139,179,221,0.1);
  border: 1px solid rgba(139,179,221,0.2);
  border-radius: 20px;
  color: #6d92bc;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.tags-tag-item:hover {
  background: rgba(139,179,221,0.2);
  border-color: rgba(139,179,221,0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139,179,221,0.2);
  color: #5a7ea0;
}
.tags-tag-item svg {
  margin-right: 6px;
  font-size: 0.9em;
}
.tags-tag-count {
  font-size: 0.8em;
  opacity: 0.7;
  margin-left: 4px;
}
.tags-list {
  margin-top: 40px;
}
.tags-list-title {
  font-size: 1.6rem;
  color: #6d92bc;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}
.tags-list-title svg {
  margin-right: 10px;
  color: #8bb3dd;
}
.tags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.tags-tag-card {
  background: #fff;
  border: 2px solid rgba(139,179,221,0.2);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.tags-tag-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(139,179,221,0.25);
  border-color: rgba(139,179,221,0.4);
}
.tags-tag-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8bb3dd, #6d92bc);
}
.tags-tag-info {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(139,179,221,0.15);
}
.tags-tag-title {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.tags-tag-title svg {
  color: #8bb3dd;
  margin-right: 10px;
}
.tags-tag-title a {
  color: #6d92bc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.tags-tag-title a:hover {
  color: #8bb3dd;
}
.tags-tag-count-detail {
  color: #888;
  font-size: 0.95rem;
  margin: 0;
}
.tags-tag-posts {
  margin-top: 10px;
}
.tags-tag-post-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(139,179,221,0.1);
  transition: background-color 0.2s ease;
}
.tags-tag-post-item:last-child {
  border-bottom: none;
}
.tags-tag-post-item:hover {
  background-color: rgba(139,179,221,0.05);
  border-radius: 6px;
  padding-left: 8px;
  padding-right: 8px;
}
.tags-post-date {
  min-width: 60px;
  font-size: 0.75rem;
  color: #888;
  font-weight: 500;
}
.tags-post-title {
  flex: 1;
  margin-left: 15px;
}
.tags-post-title a {
  color: #555;
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.tags-post-title a:hover {
  color: #6d92bc;
}
.tags-view-more {
  text-align: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(139,179,221,0.15);
}
.tags-view-more a {
  color: #6d92bc;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.tags-view-more a:hover {
  color: #8bb3dd;
}
.tags-view-more a svg {
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.tags-view-more a:hover svg {
  transform: translateX(3px);
}
.tags-no-tags {
  text-align: center;
  padding: 80px 20px;
}
.tags-empty-state {
  background: rgba(139,179,221,0.05);
  border: 2px dashed rgba(139,179,221,0.3);
  border-radius: 12px;
  padding: 60px 40px;
  max-width: 400px;
  margin: 0 auto;
}
.tags-empty-state svg {
  font-size: 4rem;
  color: #8bb3dd;
  margin-bottom: 20px;
}
.tags-empty-state h3 {
  color: #6d92bc;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.tags-empty-state p {
  color: #888;
  font-size: 1rem;
  margin: 0;
}
.tags-single-tag-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 20px;
  background: rgba(139,179,221,0.05);
  border: 2px solid rgba(139,179,221,0.2);
  border-radius: 12px;
  color: #333;
  position: relative;
  overflow: hidden;
}
.tags-single-tag-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}
.tags-single-tag-header h1 {
  font-size: 2.4rem;
  color: #6d92bc;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: none;
}
.tags-single-tag-header h1 svg {
  margin-right: 15px;
  color: #8bb3dd;
}
.tags-tag-stats {
  font-size: 1rem;
  color: #666;
  position: relative;
  z-index: 1;
  margin: 0 0 20px 0;
}
.tags-tag-navigation {
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
.tags-back-to-tags {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: rgba(139,179,221,0.1);
  border: 1px solid rgba(139,179,221,0.3);
  border-radius: 25px;
  color: #6d92bc;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.tags-back-to-tags:hover {
  background: rgba(139,179,221,0.2);
  border-color: rgba(139,179,221,0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139,179,221,0.2);
  color: #5a7ea0;
}
.tags-back-to-tags svg {
  margin-right: 8px;
  font-size: 0.9em;
}
.tags-single-tag-posts {
  margin-top: 30px;
}
.tags-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  margin-top: 20px;
}
.tags-post-card {
  background: #fff;
  border: 2px solid rgba(139,179,221,0.15);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.tags-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(139,179,221,0.2);
  border-color: rgba(139,179,221,0.3);
}
.tags-post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8bb3dd, #6d92bc);
}
.tags-post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(139,179,221,0.1);
  flex-wrap: wrap;
  gap: 10px;
}
.tags-post-date {
  font-size: 0.9rem;
  color: #888;
  font-weight: 500;
}
.tags-post-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tags-category-link {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(139,179,221,0.1);
  border-radius: 12px;
  color: #6d92bc;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}
.tags-category-link:hover {
  background: rgba(139,179,221,0.2);
  color: #5a7ea0;
}
.tags-category-link svg {
  margin-right: 4px;
  font-size: 0.8em;
}
.tags-post-title a {
  color: #333;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
  display: block;
}
.tags-post-title a:hover {
  color: #6d92bc;
}
.tags-post-excerpt {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}
.tags-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tags-post-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: rgba(139,179,221,0.1);
  border: 1px solid rgba(139,179,221,0.2);
  border-radius: 15px;
  color: #6d92bc;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}
.tags-post-tag:hover {
  background: rgba(139,179,221,0.2);
  border-color: rgba(139,179,221,0.3);
  transform: translateY(-1px);
}
.tags-post-tag.current-tag {
  background: rgba(139,179,221,0.25);
  border-color: rgba(139,179,221,0.4);
  font-weight: 600;
}
.tags-post-tag svg {
  margin-right: 4px;
  font-size: 0.8em;
}
.tags-post-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 15px;
  border-top: 1px solid rgba(139,179,221,0.1);
}
.tags-read-more {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(139,179,221,0.1);
  border: 1px solid rgba(139,179,221,0.2);
  border-radius: 20px;
  color: #6d92bc;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.tags-read-more:hover {
  background: rgba(139,179,221,0.2);
  border-color: rgba(139,179,221,0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139,179,221,0.15);
  color: #5a7ea0;
}
.tags-read-more svg {
  margin-left: 6px;
  font-size: 0.8em;
  transition: transform 0.3s ease;
}
.tags-read-more:hover svg {
  transform: translateX(3px);
}
.tags-no-posts {
  text-align: center;
  padding: 80px 20px;
}
.tags-no-posts .tags-empty-state {
  background: rgba(139,179,221,0.05);
  border: 2px dashed rgba(139,179,221,0.3);
  border-radius: 12px;
  padding: 60px 40px;
  max-width: 400px;
  margin: 0 auto;
}
.tags-no-posts .tags-empty-state svg {
  font-size: 4rem;
  color: #8bb3dd;
  margin-bottom: 20px;
}
.tags-no-posts .tags-empty-state h3 {
  color: #6d92bc;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.tags-no-posts .tags-empty-state p {
  color: #888;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 768px) {
  .tags-container {
    margin: 10px;
    padding: 15px;
  }
  .tags-header,
  .tags-single-tag-header {
    padding: 30px 15px;
    margin-bottom: 30px;
  }
  .tags-header h1,
  .tags-single-tag-header h1 {
    font-size: 2.2rem;
  }
  .tags-cloud {
    padding: 20px 15px;
    margin-bottom: 30px;
  }
  .tags-tag-item {
    margin: 6px 8px;
    padding: 6px 12px;
    font-size: 0.9rem;
  }
  .tags-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tags-tag-card {
    padding: 20px;
  }
  .tags-tag-title {
    font-size: 1.3rem;
  }
  .tags-list-title {
    font-size: 1.7rem;
  }
  .tags-empty-state {
    padding: 40px 20px;
  }
  .tags-empty-state svg {
    font-size: 3rem;
  }
  .tags-posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tags-post-card {
    padding: 20px;
  }
  .tags-post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .tags-post-title a {
    font-size: 1.1rem;
  }
  .tags-back-to-tags {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .tags-header h1,
  .tags-single-tag-header h1 {
    font-size: 1.8rem;
  }
  .tags-stats,
  .tag-stats {
    font-size: 1rem;
  }
  .stats-number {
    font-size: 1.1rem;
  }
  .tags-tag-card,
  .tags-post-card {
    padding: 15px;
  }
  .tags-post-date {
    min-width: 50px;
    font-size: 0.8rem;
  }
  .tags-post-title {
    margin-left: 10px;
  }
  .tags-post-title a {
    font-size: 0.85rem;
  }
  .tags-list-title {
    font-size: 1.5rem;
  }
  .tags-post-card {
    padding: 15px;
  }
  .tags-post-title a {
    font-size: 1.05rem;
  }
  .tags-post-excerpt {
    font-size: 0.9rem;
  }
  .tags-post-tags {
    gap: 6px;
  }
  .tags-post-tag {
    padding: 4px 10px;
    font-size: 0.8rem;
  }
  .tags-back-to-tags {
    padding: 6px 14px;
    font-size: 0.85rem;
  }
  .tags-read-more {
    padding: 6px 14px;
    font-size: 0.85rem;
  }
}
@-moz-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.friends-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(139,179,221,0.15);
}
.friends-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 20px;
  background: rgba(139,179,221,0.05);
  border: 2px solid rgba(139,179,221,0.2);
  border-radius: 12px;
  color: #333;
  position: relative;
  overflow: hidden;
}
.friends-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}
.friends-header h1 {
  font-size: 2.4rem;
  color: #6d92bc;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: none;
}
.friends-header h1 svg {
  margin-right: 15px;
  color: #8bb3dd;
}
.friends-stats {
  font-size: 1rem;
  color: #666;
  position: relative;
  z-index: 1;
  margin: 0 0 10px 0;
}
.stats-number {
  color: #6d92bc;
  font-weight: bold;
  font-size: 1.1rem;
}
.stats-placeholder {
  color: #8bb3dd;
  font-weight: bold;
  font-size: 1.1rem;
}
.friends-subtitle {
  font-size: 1rem;
  color: #888;
  font-weight: 400;
  position: relative;
  z-index: 1;
  margin: 0;
  font-style: italic;
}
.friends {
  padding: 0;
}
.friends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.friend-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.friend-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #8bb3dd, #6d92bc);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.friend-card:hover::before {
  transform: scaleX(1);
}
.friend-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(109,146,188,0.15), 0 10px 10px -5px rgba(109,146,188,0.08);
  border-color: #8bb3dd;
}
.friend-link {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  width: 100%;
  transition: all 0.3s ease;
}
.friend-link:hover {
  color: inherit;
  text-decoration: none;
}
.friend-avatar {
  flex-shrink: 0;
  margin-right: 16px;
}
.friend-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #8bb3dd;
  box-shadow: 0 4px 8px rgba(109,146,188,0.2);
  transition: all 0.3s ease;
}
.friend-card:hover .friend-avatar img {
  transform: scale(1.05) rotate(3deg);
  border-color: #6d92bc;
  box-shadow: 0 8px 16px rgba(109,146,188,0.3);
}
.friend-info {
  flex: 1;
  min-width: 0;
}
.friend-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.friend-card:hover .friend-name {
  color: #6d92bc;
}
.friend-description {
  font-size: 0.9rem;
  color: #718096;
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}
.friend-status {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #8bb3dd;
  box-shadow: 0 0 0 3px rgba(139,179,221,0.3);
  animation: pulse 2s infinite;
}
.friends-empty {
  text-align: center;
  padding: 60px 20px;
  color: #718096;
}
.friends-empty-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  opacity: 0.5;
}
.friends-empty-text {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.friends-empty-subtitle {
  font-size: 0.9rem;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .friends-container {
    margin: 10px;
    padding: 15px;
  }
  .friends-header {
    padding: 30px 15px;
    margin-bottom: 30px;
  }
  .friends-header h1 {
    font-size: 2rem;
  }
  .friends-stats {
    font-size: 0.9rem;
  }
  .stats-number,
  .stats-placeholder {
    font-size: 0.95rem;
  }
  .friends-subtitle {
    font-size: 0.9rem;
  }
  .friends-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .friend-card {
    padding: 20px;
  }
  .friend-avatar img {
    width: 56px;
    height: 56px;
  }
}
@media (max-width: 480px) {
  .friends-header h1 {
    font-size: 1.7rem;
  }
  .friends-stats {
    font-size: 0.85rem;
  }
  .friends-subtitle {
    font-size: 0.85rem;
  }
  .friend-link {
    flex-direction: column;
    text-align: center;
  }
  .friend-avatar {
    margin-right: 0;
    margin-bottom: 12px;
    align-self: center;
  }
}
@-moz-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(139,179,221,0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(139,179,221,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(139,179,221,0);
  }
}
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(139,179,221,0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(139,179,221,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(139,179,221,0);
  }
}
@-o-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(139,179,221,0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(139,179,221,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(139,179,221,0);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(139,179,221,0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(139,179,221,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(139,179,221,0);
  }
}
.todo {
  display: flex;
  flex-direction: column;
}
.task {
  height: 40px;
  width: 100%;
  margin: 10px 0;
  box-shadow: 0 0 8px rgba(255,193,7,0.2);
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #fff8e1;
  border: 1px solid #ffc107;
}
.task p {
  margin: 0 20px;
  align-self: center;
  color: #f57c00;
  font-weight: bold;
}
.task .progress,
.task-finish .progress,
.task-stopped .progress {
  display: none;
}
.task .progContainer {
  background-color: #fff8e1;
  height: 8px;
  width: 30%;
  border-radius: 4px;
  border: #f57c00 solid 1px;
  align-self: center;
  margin: 0 20px;
}
.task .progBar {
  background-color: #f57c00;
  height: 100%;
  width: 10px;
  border-radius: 4px;
  transition: width 5s;
}
.task-finish {
  height: 40px;
  width: 100%;
  margin: 10px 0;
  box-shadow: 0 0 8px rgba(144,238,144,0.2);
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #e6ffe6;
  border: 1px solid #90ee90;
}
.task-finish p {
  margin: 0 20px;
  align-self: center;
  color: #2e8b57;
  font-weight: bold;
}
.task-finish .progContainer {
  background-color: #e6ffe6;
  height: 8px;
  width: 30%;
  border-radius: 4px;
  border: #2e8b57 solid 1px;
  align-self: center;
  margin: 0 20px;
}
.task-finish .progBar {
  background-color: #2e8b57;
  height: 100%;
  width: 10px;
  border-radius: 4px;
  transition: width 5s;
}
.task-stopped {
  height: 40px;
  width: 100%;
  margin: 10px 0;
  box-shadow: 0 0 8px rgba(255,182,193,0.2);
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #ffe4ec;
  border: 1px solid #ffb6c1;
}
.task-stopped p {
  margin: 0 20px;
  align-self: center;
  color: #d6336c;
  font-weight: bold;
}
.task-stopped .progContainer {
  background-color: #ffe4ec;
  height: 8px;
  width: 30%;
  border-radius: 4px;
  border: #d6336c solid 1px;
  align-self: center;
  margin: 0 20px;
}
.task-stopped .progBar {
  background-color: #d6336c;
  height: 100%;
  width: 10px;
  border-radius: 4px;
  transition: width 5s;
}
.task-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease;
}
.task-link:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}
.task-link:visited {
  color: inherit;
}
.task-link-icon {
  font-size: 0.8em;
  margin-left: 8px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.task-link:hover .task-link-icon {
  opacity: 1;
}
.task-link .task,
.task-link .task-finish,
.task-link .task-stopped {
  cursor: pointer;
  transition: all 0.2s ease;
}
.task-link:hover .task {
  box-shadow: 0 4px 16px rgba(255,193,7,0.3);
}
.task-link:hover .task-finish {
  box-shadow: 0 4px 16px rgba(144,238,144,0.3);
}
.task-link:hover .task-stopped {
  box-shadow: 0 4px 16px rgba(255,182,193,0.3);
}
.todo-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(139,179,221,0.15);
}
.todo-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 20px;
  background: rgba(139,179,221,0.05);
  border: 2px solid rgba(139,179,221,0.2);
  border-radius: 12px;
  color: #333;
  position: relative;
  overflow: hidden;
}
.todo-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}
.todo-header h1 {
  font-size: 2.4rem;
  color: #6d92bc;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: none;
}
.todo-header h1 svg {
  margin-right: 15px;
  color: #8bb3dd;
}
.todo-stats {
  font-size: 1rem;
  color: #666;
  position: relative;
  z-index: 1;
  margin: 0;
}
.stats-number {
  color: #6d92bc;
  font-weight: bold;
  font-size: 1.1rem;
}
.stats-finished {
  color: #2e8b57;
  font-weight: bold;
  font-size: 1.1rem;
}
.stats-active {
  color: #f57c00;
  font-weight: bold;
  font-size: 1.1rem;
}
.stats-stopped {
  color: #d6336c;
  font-weight: bold;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .todo-container {
    margin: 10px;
    padding: 15px;
  }
  .todo-header {
    padding: 30px 15px;
    margin-bottom: 30px;
  }
  .todo-header h1 {
    font-size: 2rem;
  }
  .todo-stats {
    font-size: 0.9rem;
  }
  .stats-number,
  .stats-finished,
  .stats-active,
  .stats-stopped {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .todo-header h1 {
    font-size: 1.7rem;
  }
  .todo-stats {
    font-size: 0.85rem;
  }
}
@-moz-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.resources {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
  margin-bottom: 30px;
}
.resources-nav {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
.category-tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  border-radius: 25px;
  padding: 5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}
.tab-item {
  padding: 12px 24px;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  color: #666;
  position: relative;
  overflow: hidden;
}
.tab-item:hover {
  background: #e9ecef;
  color: #495057;
  transform: translateY(-2px);
}
.tab-item.active {
  background: #8bb3dd;
  color: #fff;
  box-shadow: 0 4px 15px rgba(139,179,221,0.4);
  transform: translateY(-2px);
}
.tab-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.tab-item.active:hover::before {
  left: 100%;
}
.resources-search {
  position: relative;
  margin-left: auto;
}
.search-box {
  position: relative;
  display: flex;
  align-items: center;
}
#resourceSearch {
  padding: 8px 35px 8px 15px;
  border: 2px solid #e9ecef;
  border-radius: 20px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  background: #fff;
  width: 200px;
}
#resourceSearch:focus {
  border-color: #8bb3dd;
  box-shadow: 0 0 0 3px rgba(139,179,221,0.1);
}
#resourceSearch::placeholder {
  color: #999;
}
#clearSearch {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
#clearSearch:hover {
  background: #f8f9fa;
  color: #666;
}
#clearSearch i {
  font-size: 12px;
}
.resource-category {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.resource-category.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.category-title {
  font-size: 1.6em;
  margin-bottom: 20px;
  color: #333;
  position: relative;
  padding-left: 15px;
  font-weight: 600;
}
.category-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 30px;
  background: linear-gradient(135deg, #8bb3dd, #6a9bd1);
  border-radius: 2px;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
  margin-bottom: 30px;
}
.resource-card {
  background: #fff;
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}
.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8bb3dd, #6a9bd1);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-color: #8bb3dd;
}
.resource-card:hover::before {
  transform: scaleX(1);
}
.resource-icon {
  display: none;
}
.resource-info {
  flex: 1;
}
.resource-name {
  font-size: 1em;
  margin: 0 0 6px 0;
  color: #333;
  font-weight: 600;
  line-height: 1.3;
}
.resource-description {
  color: #666;
  margin: 0 0 10px 0;
  line-height: 1.4;
  font-size: 12px;
}
.resource-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}
.tag {
  background: #f8f9fa;
  color: #6c757d;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 500;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}
.resource-card:hover .tag {
  background: rgba(139,179,221,0.1);
  border-color: rgba(139,179,221,0.3);
  color: #8bb3dd;
}
.resource-link {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: rgba(139,179,221,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8bb3dd;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
}
.resource-card:hover .resource-link {
  opacity: 1;
  transform: scale(1);
  background: #8bb3dd;
  color: #fff;
}
.resource-link:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 12px rgba(139,179,221,0.4);
}
.resource-link i {
  font-size: 10px;
}
@media (max-width: 768px) {
  .resources {
    padding: 15px;
  }
  .resources-header {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  .resources-title {
    font-size: 2em;
  }
  .resources-subtitle {
    font-size: 1.1em;
  }
  .category-tabs {
    flex-direction: column;
    gap: 8px;
    padding: 8px;
  }
  .tab-item {
    padding: 15px 20px;
    font-size: 16px;
  }
  .resources-search {
    margin-left: 0;
    width: 100%;
  }
  #resourceSearch {
    width: 100%;
    padding: 12px 40px 12px 15px;
    font-size: 16px;
  }
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .category-title {
    font-size: 1.5em;
  }
  .resource-card {
    padding: 20px;
  }
  .resource-link {
    opacity: 1;
    transform: scale(1);
    position: relative;
    top: auto;
    right: auto;
    margin-top: 15px;
    width: auto;
    height: auto;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
  }
  .resource-link i {
    margin-right: 5px;
  }
  .resource-link::after {
    content: ' 访问';
  }
}
@media (max-width: 480px) {
  .resources-header {
    padding: 25px 15px;
  }
  .resources-title {
    font-size: 1.8em;
  }
  .resources-subtitle {
    font-size: 1em;
  }
  .resource-card {
    padding: 18px;
  }
}
.resource-card {
  animation: fadeInUp 0.6s ease-out;
}
.resource-card:nth-child(1) {
  animation-delay: 0.1s;
}
.resource-card:nth-child(2) {
  animation-delay: 0.2s;
}
.resource-card:nth-child(3) {
  animation-delay: 0.3s;
}
.resource-card:nth-child(4) {
  animation-delay: 0.4s;
}
.resource-card:nth-child(5) {
  animation-delay: 0.5s;
}
.resource-card:nth-child(6) {
  animation-delay: 0.6s;
}
@-moz-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-o-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.piclib {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0;
  padding: 40px 0 0 0;
}
.piclib-col {
  display: flex;
  flex-direction: column;
}
.piclib-col img {
  display: block;
  opacity: 0;
  width: 100%;
  margin: 10px;
  padding: 0;
  transition: opacity 0.6s, transform 0.3s ease;
}
.piclib-col img:hover {
  transform: scale(1.02);
}
.container {
  width: 100%;
}
.sidebar {
  position: fixed;
  display: flex;
  flex-direction: column;
  text-align: center;
  left: 0;
  width: 250px;
  top: 0;
  bottom: 0;
  padding: 50px 15px 15px 15px;
  background-color: #fff;
  box-shadow: 0px 0 8px rgba(0,0,0,0.2);
  transform: translateX(0);
  transition: transform 0.3s ease-in-out;
  z-index: 999;
}
.sidebar-visible {
  transform: translateX(0) !important;
}
.sidebar-hidden {
  transform: translateX(-100%) !important;
}
.avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0px;
}
.avatar img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0px 4px rgba(0,0,0,0.3);
}
#avatar {
  cursor: pointer;
  transition: transform 1s;
}
.sidebar-stat {
  padding-bottom: 15px;
}
.sidebar-stats li {
  border-right: 1px solid #ccc;
}
.sidebar-stats li:last-child {
  border-right: none;
}
.sidebar-stats {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.stat-value,
.stat-label {
  text-align: center;
  margin: 0 20px;
  color: #333;
  font-size: 14px;
}
.sidebar-links {
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}
.sidebar-links ul {
  list-style: none;
  padding: 10px;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}
.sidebar-links li {
  padding: 0 5px;
}
.sidebar-links-list svg {
  transition: transform 0.3s ease;
  font-size: 20px;
}
.sidebar-links-list svg:hover {
  transform: scale(1.5);
}
.bulletin-board {
  display: flex;
  flex-direction: column;
}
.bulletin {
  font-size: 20px;
}
.bulletin-content {
  margin: 0;
  font-size: 12px;
}
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sidebar-overlay-show {
  opacity: 1;
  visibility: visible;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #8bb3dd;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 1;
}
.navbar-visible {
  transform: translateY(0) !important;
  opacity: 1 !important;
}
.navbar-hidden {
  transform: translateY(-100%) !important;
  opacity: 0 !important;
}
.navbar a {
  color: #eee;
}
.navbar a:hover {
  color: #ddd;
}
.navbar-brand {
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  position: relative;
  transition: all 0.3s ease;
}
.navbar-brand:hover {
  color: #ddd;
}
.navbar-brand::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 50%;
  background-color: #eee;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar-brand:hover::after {
  width: 100%;
}
.navbar-menu {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}
.navbar-menu li {
  display: inline;
  margin: 0 5px;
}
.navbar-menu a {
  text-decoration: none;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}
.navbar-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 50%;
  background-color: #eee;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar-menu a:hover::after {
  width: 100%;
}
@-moz-keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@-webkit-keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@-o-keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.footer {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
}
.footer-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footer-content-left,
.footer-content-right {
  color: #aaa !important;
  font-size: 12px;
}
.tools {
  position: fixed;
  display: flex;
  flex-direction: column;
  width: auto;
  height: auto;
  bottom: 80px;
  right: 50px;
  z-index: 888;
}
.tools-item {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  background-color: #fff;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #536f94;
  transition: background-color 0.5s, color 0.5s;
}
.tools-item:hover {
  background-color: #6d92bc;
  color: #fff;
}
.reward-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.reward-overlay.show {
  opacity: 1;
  visibility: visible;
}
.message-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 9999;
  max-width: 90vw;
  max-height: 90vh;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.message-box.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}
.message-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.message-box-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 0;
}
.message-box-close {
  width: 30px;
  height: 30px;
  border: none;
  background: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.message-box-close:hover {
  background-color: #f5f5f5;
  color: #333;
}
.message-box-content {
  text-align: center;
}
.message-box img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.reward-text {
  margin-top: 15px;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}
#rewards {
  display: none;
}
.notice-bar {
  position: fixed;
  top: 50px;
  left: 290px;
  right: 10px;
  height: 40px;
  border-radius: 5px;
  box-shadow: 0 0px 4px rgba(0,0,0,0.2);
  border: 1px solid #a5d6a7;
  background: #e8f5e9;
  color: #388e3c;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}
.notice-bar svg {
  padding: 12px;
  z-index: 2000;
  background: #e8f5e9;
}
.notice-bar span {
  font-weight: bold;
}
.notice-content {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 40s linear infinite;
  width: 100%;
}
@-moz-keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
#cursor {
  position: fixed;
  width: 16px;
  height: 16px;
  background: #000;
  border-radius: 8px;
  opacity: 0.25;
  z-index: 10086;
  pointer-events: none;
  transition: 0.2s ease-in-out;
  transition-property: background, opacity, transform;
}
#cursor.hidden {
  opacity: 0;
}
#cursor.hover {
  opacity: 0.1;
  transform: scale(2.5);
}
#cursor.active {
  opacity: 0.5;
  transform: scale(0.5);
}
.snowflake {
  position: fixed;
  top: -10px;
  width: var(--size);
  height: var(--size);
  background-color: rgba(255,255,255,0.8);
  border-radius: 50%;
  pointer-events: none;
  animation: fall var(--speed) linear infinite;
}
@-moz-keyframes fall {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  50% {
    transform: translateY(50vh) translateX(var(--amplitude)) rotate(180deg);
  }
  100% {
    transform: translateY(100vh) translateX(calc(-1 * var(--amplitude))) rotate(360deg);
  }
}
@-webkit-keyframes fall {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  50% {
    transform: translateY(50vh) translateX(var(--amplitude)) rotate(180deg);
  }
  100% {
    transform: translateY(100vh) translateX(calc(-1 * var(--amplitude))) rotate(360deg);
  }
}
@-o-keyframes fall {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  50% {
    transform: translateY(50vh) translateX(var(--amplitude)) rotate(180deg);
  }
  100% {
    transform: translateY(100vh) translateX(calc(-1 * var(--amplitude))) rotate(360deg);
  }
}
@keyframes fall {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  50% {
    transform: translateY(50vh) translateX(var(--amplitude)) rotate(180deg);
  }
  100% {
    transform: translateY(100vh) translateX(calc(-1 * var(--amplitude))) rotate(360deg);
  }
}
.draggable-toc {
  position: fixed;
  top: 310px;
  right: 70px;
  width: 280px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0px 8px rgba(0,0,0,0.2);
  padding: 0px;
  cursor: move;
  z-index: 1000;
}
.draggable-toc ul {
  padding: 0px 20px;
  margin: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.draggable-toc li {
  color: inherit;
  font-size: 14px;
}
.draggable-toc li a {
  display: block;
  padding: 3px 0;
  width: 100%;
}
.draggable-toc li::marker {
  color: inherit;
}
.draggable-toc button {
  width: 100%;
  height: 50px;
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 8px;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 16px;
  font-weight: bold;
}
.header-level-2 {
  margin-left: 10px;
}
.header-level-3 {
  margin-left: 30px;
}
.header-level-4 {
  margin-left: 50px;
}
.header-level-5 {
  margin-left: 70px;
}
.header-level-6 {
  margin-left: 90px;
}
@import "https://fonts.loli.net/css2?family=Noto+Serif+SC:wght@200..900&display=swap";
@import "https://fonts.cdnfonts.com/css/libertinus-serif";
@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css";
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
  text-align: left;
}
th,
td {
  padding: 12px;
  border: 1px solid #ddd;
}
th {
  background-color: #f4f4f4;
  font-weight: bold;
}
tr:nth-child(even) {
  background-color: #f9f9f9;
}
tr:hover {
  background-color: #f1f1f1;
}
pre code,
pre code * {
  font-family: Consolas !important;
  tab-size: 4 !important;
  display: block;
}
pre code {
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}
pre code:not(.hljs) {
  display: none;
}
code {
  font-family: Consolas !important;
  color: #c70028;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 2px;
}
a {
  text-decoration: none;
  color: #000;
  transition: 0.3s ease;
}
a:hover {
  text-decoration: none;
  color: #6d92bc;
}
ul li::marker {
  color: #007bff;
}
img {
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}
blockquote {
  padding: 5px 20px;
  margin: 20px 0;
  border-left: 5px solid #007bff;
  border-radius: 5px;
  background-color: #f9f9f9;
  font-style: italic;
  color: #555;
}
* {
  font-family: "Libertinus Serif", "Georgia", "Noto Serif SC", songti sc, serif;
}
::selection {
  background-color: #ffc0cb;
  color: #fff;
}
