* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  font-family: 'VT323', monospace;
  background-color: #9bbc0f;
  color: #0f380f;
  line-height: 1.6;
  min-height: 100vh;
}
.pixel-nav {
  background-color: #8bac0f;
  border-bottom: 4px solid #0f380f;
  position: sticky;
  top: 0;
  z-index: 100;
}
.pixel-nav .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pixel-nav .nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #0f380f;
}
.pixel-nav .nav-logo .logo-pixel {
  width: 32px;
  height: 32px;
  background-color: #0f380f;
  box-shadow: 4px 4px 0 0 #0f380f;
  transition: all 0.15s ease;
}
.pixel-nav .nav-logo:hover .logo-pixel {
  transform: translate(4px, 4px);
  box-shadow: none;
}
.pixel-nav .nav-logo .site-title {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.pixel-nav .nav-menu {
  display: flex;
  gap: 8px;
}
.pixel-nav .nav-menu .nav-link {
  display: inline-block;
  padding: 8px 16px;
  background-color: #9bbc0f;
  border: 4px solid #0f380f;
  color: #0f380f;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 4px 4px 0 0 #0f380f;
  transition: all 0.15s ease;
}
.pixel-nav .nav-menu .nav-link:hover,
.pixel-nav .nav-menu .nav-link.active {
  background-color: #306230;
  color: #9bbc0f;
}
.pixel-nav .nav-menu .nav-link:hover {
  transform: translate(4px, 4px);
  box-shadow: none;
}
.pixel-nav .nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: none;
  border: 4px solid #0f380f;
  cursor: pointer;
}
.pixel-nav .nav-toggle span {
  display: block;
  width: 24px;
  height: 4px;
  background-color: #0f380f;
}
.main-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px;
  display: flex;
  gap: 24px;
}
.main-wrapper .main-content {
  flex: 1;
  min-width: 0;
}
.pixel-card {
  background-color: #e0d8b0;
  border: 4px solid #0f380f;
  box-shadow: 6px 6px 0 0 #0f380f;
  transition: all 0.2s ease;
}
.pixel-card:hover {
  transform: translate(6px, 6px);
  box-shadow: none;
}
.article-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.article-item {
  padding: 24px;
}
.article-item .article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.article-item .article-meta .article-date {
  font-size: 0.875rem;
  opacity: 0.7;
}
.article-item .article-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1.3;
}
.article-item .article-title a {
  color: #0f380f;
  text-decoration: none;
}
.article-item .article-title a:hover {
  color: #306230;
}
.article-item .article-excerpt {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0.8;
}
.article-item .article-excerpt p {
  margin: 0;
}
.article-item .article-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.article-item .article-footer {
  margin-top: 16px;
}
.pixel-badge {
  display: inline-block;
  padding: 4px 8px;
  background-color: #306230;
  color: #9bbc0f;
  border: 2px solid #0f380f;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pixel-tag {
  display: inline-block;
  padding: 4px 8px;
  background-color: #9bbc0f;
  color: #0f380f;
  border: 2px solid #0f380f;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.15s ease;
}
.pixel-tag:hover {
  background-color: #8bac0f;
}
.pixel-tag-secondary {
  display: inline-block;
  padding: 2px 6px;
  background-color: #9bbc0f;
  color: #0f380f;
  border: 2px solid #0f380f;
  font-size: 0.75rem;
  text-decoration: none;
}
.pixel-tag-secondary:hover {
  background-color: #8bac0f;
}
.pixel-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: #9bbc0f;
  color: #0f380f;
  border: 4px solid #0f380f;
  font-family: 'VT323', monospace;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 4px 4px 0 0 #0f380f;
  transition: all 0.15s ease;
}
.pixel-btn:hover:not(.disabled) {
  transform: translate(4px, 4px);
  box-shadow: none;
}
.pixel-btn.active {
  background-color: #306230;
  color: #9bbc0f;
}
.pixel-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pixel-btn-primary {
  display: inline-block;
  padding: 8px 16px;
  background-color: #0f380f;
  color: #9bbc0f;
  border: 4px solid #0f380f;
  font-family: 'VT323', monospace;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 4px 4px 0 0 #0f380f;
  transition: all 0.15s ease;
}
.pixel-btn-primary:hover {
  transform: translate(4px, 4px);
  box-shadow: none;
}
.pixel-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.pixel-pagination .pagination-ellipsis {
  padding: 8px;
  font-weight: bold;
}
.pixel-sidebar {
  width: 288px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pixel-sidebar .sidebar-profile {
  padding: 16px;
  text-align: center;
}
.pixel-sidebar .sidebar-profile .profile-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  border: 4px solid #0f380f;
  overflow: hidden;
}
.pixel-sidebar .sidebar-profile .profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pixel-sidebar .sidebar-profile .profile-avatar-placeholder {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  background-color: #0f380f;
  box-shadow: 4px 4px 0 0 #0f380f;
}
.pixel-sidebar .sidebar-profile .profile-name {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.pixel-sidebar .sidebar-profile .profile-bio {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 16px;
}
.pixel-sidebar .sidebar-profile .social-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.pixel-sidebar .sidebar-profile .social-links .social-link {
  padding: 4px 8px;
  background-color: #9bbc0f;
  border: 2px solid #0f380f;
  color: #0f380f;
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.pixel-sidebar .sidebar-profile .social-links .social-link:hover {
  background-color: #306230;
  color: #9bbc0f;
}
.pixel-sidebar .sidebar-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 4px solid #0f380f;
}
.pixel-sidebar .sidebar-tags,
.pixel-sidebar .sidebar-recent,
.pixel-sidebar .sidebar-archive {
  padding: 16px;
}
.pixel-sidebar .sidebar-tags .tag-cloud,
.pixel-sidebar .sidebar-recent .tag-cloud,
.pixel-sidebar .sidebar-archive .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pixel-sidebar .sidebar-tags .recent-list,
.pixel-sidebar .sidebar-recent .recent-list,
.pixel-sidebar .sidebar-archive .recent-list,
.pixel-sidebar .sidebar-tags .archive-list,
.pixel-sidebar .sidebar-recent .archive-list,
.pixel-sidebar .sidebar-archive .archive-list {
  list-style: none;
}
.pixel-sidebar .sidebar-tags .recent-list li,
.pixel-sidebar .sidebar-recent .recent-list li,
.pixel-sidebar .sidebar-archive .recent-list li,
.pixel-sidebar .sidebar-tags .archive-list li,
.pixel-sidebar .sidebar-recent .archive-list li,
.pixel-sidebar .sidebar-archive .archive-list li {
  margin-bottom: 8px;
}
.pixel-sidebar .sidebar-tags .recent-list li a,
.pixel-sidebar .sidebar-recent .recent-list li a,
.pixel-sidebar .sidebar-archive .recent-list li a,
.pixel-sidebar .sidebar-tags .archive-list li a,
.pixel-sidebar .sidebar-recent .archive-list li a,
.pixel-sidebar .sidebar-archive .archive-list li a {
  color: #0f380f;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pixel-sidebar .sidebar-tags .recent-list li a:hover,
.pixel-sidebar .sidebar-recent .recent-list li a:hover,
.pixel-sidebar .sidebar-archive .recent-list li a:hover,
.pixel-sidebar .sidebar-tags .archive-list li a:hover,
.pixel-sidebar .sidebar-recent .archive-list li a:hover,
.pixel-sidebar .sidebar-archive .archive-list li a:hover {
  color: #306230;
}
.post-article {
  padding: 32px;
}
.post-article .post-header {
  margin-bottom: 32px;
}
.post-article .post-header .post-categories {
  margin-bottom: 16px;
}
.post-article .post-header .post-categories .pixel-badge {
  margin-right: 8px;
}
.post-article .post-header .post-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.3;
}
.post-article .post-header .post-meta {
  font-size: 0.875rem;
  opacity: 0.7;
}
.post-article .post-header .post-meta .meta-separator {
  margin: 0 8px;
}
.post-article .post-content {
  font-size: 1.125rem;
  line-height: 1.8;
}
.post-article .post-content h1,
.post-article .post-content h2,
.post-article .post-content h3,
.post-article .post-content h4,
.post-article .post-content h5,
.post-article .post-content h6 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: bold;
}
.post-article .post-content h1 {
  font-size: 1.75rem;
}
.post-article .post-content h2 {
  font-size: 1.5rem;
}
.post-article .post-content h3 {
  font-size: 1.25rem;
}
.post-article .post-content p {
  margin-bottom: 16px;
}
.post-article .post-content code {
  background-color: rgba(15,56,15,0.1);
  padding: 2px 6px;
  font-family: 'VT323', monospace;
}
.post-article .post-content pre {
  background-color: #0f380f;
  color: #9bbc0f;
  padding: 16px;
  overflow-x: auto;
  margin-bottom: 16px;
}
.post-article .post-content pre code {
  background: none;
  padding: 0;
}
.post-article .post-content blockquote {
  border-left: 4px solid #0f380f;
  padding-left: 16px;
  margin: 16px 0;
  opacity: 0.8;
}
.post-article .post-content ul,
.post-article .post-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
.post-article .post-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 16px 0;
}
.post-article .post-content a {
  color: #306230;
  text-decoration: underline;
}
.post-article .post-content a:hover {
  text-decoration: none;
}
.post-article .post-footer {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 4px solid #0f380f;
}
.post-article .post-footer .post-tags {
  display: flex;
  align-items: center;
  gap: 8px;
}
.post-article .post-footer .post-tags .tags-label {
  font-weight: bold;
}
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.post-nav .post-nav-prev,
.post-nav .post-nav-next {
  padding: 16px;
  text-decoration: none;
  color: #0f380f;
}
.post-nav .post-nav-prev:hover,
.post-nav .post-nav-next:hover {
  color: #306230;
}
.post-nav .post-nav-prev .nav-label,
.post-nav .post-nav-next .nav-label {
  display: block;
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 8px;
}
.post-nav .post-nav-prev .nav-title,
.post-nav .post-nav-next .nav-title {
  display: block;
  font-weight: bold;
}
.post-nav .post-nav-next {
  text-align: right;
}
.archive-page .archive-header {
  padding: 24px;
  margin-bottom: 24px;
}
.archive-page .archive-header .archive-title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.archive-page .archive-header .archive-count {
  opacity: 0.7;
}
.archive-page .archive-list .archive-year {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 4px solid #0f380f;
}
.archive-page .archive-list .archive-month {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 24px 0 12px;
  color: #306230;
}
.archive-page .archive-list .archive-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 2px solid rgba(15,56,15,0.1);
}
.archive-page .archive-list .archive-item .archive-date {
  font-size: 0.875rem;
  opacity: 0.6;
  width: 60px;
}
.archive-page .archive-list .archive-item .archive-title-link {
  flex: 1;
  color: #0f380f;
  text-decoration: none;
  font-weight: bold;
}
.archive-page .archive-list .archive-item .archive-title-link:hover {
  color: #306230;
}
.archive-page .archive-list .archive-item .archive-category {
  font-size: 0.75rem;
  padding: 2px 8px;
  background-color: #9bbc0f;
  border: 2px solid #0f380f;
}
.tag-page .tag-header {
  padding: 24px;
  margin-bottom: 24px;
}
.tag-page .tag-header .tag-title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.tag-page .tag-header .tag-count {
  opacity: 0.7;
}
.tag-page .tag-cloud-container {
  padding: 24px;
}
.tag-page .tag-cloud-container .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.tag-page .tag-cloud-container .tag-cloud .tag-cloud-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  background-color: #9bbc0f;
  border: 4px solid #0f380f;
  color: #0f380f;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 4px 4px 0 0 #0f380f;
  transition: all 0.15s ease;
}
.tag-page .tag-cloud-container .tag-cloud .tag-cloud-item:hover {
  transform: translate(4px, 4px);
  box-shadow: none;
  background-color: #306230;
  color: #9bbc0f;
}
.tag-page .tag-cloud-container .tag-cloud .tag-cloud-item .tag-count-badge {
  font-size: 0.75em;
  opacity: 0.7;
}
.page-article {
  padding: 32px;
}
.page-article .page-header {
  margin-bottom: 32px;
}
.page-article .page-header .page-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.page-article .page-header .page-meta {
  font-size: 0.875rem;
  opacity: 0.7;
}
.page-article .page-content {
  font-size: 1.125rem;
  line-height: 1.8;
}
.page-article .page-content h1,
.page-article .page-content h2,
.page-article .page-content h3,
.page-article .page-content h4,
.page-article .page-content h5,
.page-article .page-content h6 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: bold;
}
.page-article .page-content p {
  margin-bottom: 16px;
}
.pixel-footer {
  background-color: #0f380f;
  color: #9bbc0f;
  margin-top: 48px;
}
.pixel-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
  text-align: center;
}
.pixel-footer .footer-container .copyright {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.pixel-footer .footer-container .copyright a {
  color: #9bbc0f;
  text-decoration: underline;
}
.pixel-footer .footer-container .copyright a:hover {
  text-decoration: none;
}
.pixel-footer .footer-container .theme-info {
  font-size: 0.875rem;
  opacity: 0.7;
}
.search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 40px;
  background-color: #9bbc0f;
  border: 4px solid #0f380f;
  color: #0f380f;
  cursor: pointer;
  box-shadow: 4px 4px 0 0 #0f380f;
  transition: all 0.15s ease;
  font-size: 1.1rem;
  font-weight: bold;
}
.search-btn:hover {
  background-color: #306230;
  color: #9bbc0f;
  transform: translate(4px, 4px);
  box-shadow: none;
}
.search-btn:active {
  transform: translate(4px, 4px);
  box-shadow: none;
}
.search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;
  background-color: #8bac0f;
  background-image: radial-gradient(circle, #0f380f 1px, transparent 1px);
  background-size: 8px 8px;
  background-position: 0 0;
}
.search-overlay.active {
  display: flex;
}
.search-dialog {
  width: 100%;
  max-width: 600px;
  margin: 0 16px;
  background-color: #e0d8b0;
  border: 4px solid #0f380f;
  box-shadow: 8px 8px 0 0 #0f380f;
  animation: dialogPop 0.15s ease-out;
}
.search-dialog-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background-color: #9bbc0f;
  border-bottom: 4px solid #0f380f;
}
.search-dialog-header .search-icon {
  font-size: 1.25rem;
}
.search-dialog-header .search-heading {
  flex: 1;
  font-size: 1.125rem;
  font-weight: bold;
  color: #0f380f;
  letter-spacing: 0.05em;
}
.search-dialog-header .search-close-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #9bbc0f;
  border: 4px solid #0f380f;
  color: #0f380f;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: bold;
  box-shadow: 4px 4px 0 0 #0f380f;
  transition: all 0.15s ease;
  padding: 0;
}
.search-dialog-header .search-close-btn:hover {
  background-color: #306230;
  color: #9bbc0f;
  transform: translate(4px, 4px);
  box-shadow: none;
}
.search-dialog-body {
  padding: 16px;
}
.search-input-box {
  width: 100%;
  padding: 10px 14px;
  font-family: 'VT323', monospace;
  font-size: 1.125rem;
  background-color: #9bbc0f;
  border: 4px solid #0f380f;
  color: #0f380f;
  outline: none;
  transition: all 0.15s ease;
}
.search-input-box::placeholder {
  color: #306230;
  opacity: 0.6;
}
.search-input-box:focus {
  background-color: #fff;
  box-shadow: inset 4px 4px 0 0 rgba(15,56,15,0.15);
}
.search-hint-line {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #306230;
  opacity: 0.6;
  text-align: right;
  letter-spacing: 0.02em;
}
.search-results-list {
  margin-top: 12px;
  max-height: 360px;
  overflow-y: auto;
  scrollbar-width: 12px;
  scrollbar-color: #0f380f #9bbc0f;
}
.search-results-list::-webkit-scrollbar {
  width: 12px;
}
.search-results-list::-webkit-scrollbar-track {
  background: #9bbc0f;
  border: 2px solid #0f380f;
}
.search-results-list::-webkit-scrollbar-thumb {
  background: #0f380f;
  border: 2px solid #0f380f;
}
.search-result-card {
  display: block;
  padding: 12px;
  margin-bottom: 8px;
  background-color: #9bbc0f;
  border: 4px solid #0f380f;
  text-decoration: none;
  color: #0f380f;
  box-shadow: 4px 4px 0 0 #0f380f;
  transition: all 0.15s ease;
  cursor: pointer;
}
.search-result-card:last-child {
  margin-bottom: 0;
}
.search-result-card:hover {
  background-color: #306230;
  color: #9bbc0f;
  transform: translate(4px, 4px);
  box-shadow: none;
}
.search-result-card:hover .result-card-title {
  color: #9bbc0f;
}
.search-result-card:hover .result-card-excerpt {
  color: #9bbc0f;
  opacity: 0.8;
}
.search-result-card .result-card-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
  color: #0f380f;
}
.search-result-card .result-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-result-card .result-card-meta {
  margin-top: 4px;
  font-size: 0.8rem;
  opacity: 0.5;
}
.search-empty-state {
  text-align: center;
  padding: 32px 16px;
  color: #306230;
  opacity: 0.6;
}
.search-empty-state .empty-state-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}
.search-empty-state .empty-state-text {
  font-size: 1.125rem;
}
.search-loading-state {
  text-align: center;
  padding: 32px 16px;
  color: #306230;
}
.search-loading-state .loading-pixel {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #0f380f;
  animation: pixelBlink 0.8s infinite;
}
.search-loading-state .loading-text {
  margin-top: 8px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .pixel-nav .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #8bac0f;
    border-bottom: 4px solid #0f380f;
    flex-direction: column;
    padding: 16px;
  }
  .pixel-nav .nav-menu.active {
    display: flex;
  }
  .pixel-nav .nav-toggle {
    display: flex;
  }
  .main-wrapper {
    flex-direction: column;
  }
  .main-wrapper .pixel-sidebar {
    width: 100%;
  }
  .post-nav {
    grid-template-columns: 1fr;
  }
  .search-overlay {
    padding-top: 16px;
    align-items: flex-start;
  }
  .search-dialog {
    margin: 8px;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }
  .search-results-list {
    max-height: 280px;
  }
  .search-result-card {
    padding: 10px;
  }
}
@-moz-keyframes dialogPop {
  from {
    opacity: 0;
    transform: translateY(-16px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes dialogPop {
  from {
    opacity: 0;
    transform: translateY(-16px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@-o-keyframes dialogPop {
  from {
    opacity: 0;
    transform: translateY(-16px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes dialogPop {
  from {
    opacity: 0;
    transform: translateY(-16px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@-moz-keyframes pixelBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@-webkit-keyframes pixelBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@-o-keyframes pixelBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes pixelBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
