@charset "UTF-8";
/* ================================================
   # 変数・Mixin
   ================================================ */
.favorites-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.favorites-button:hover, .favorites-button.hover {
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.favorites-button.touch-active {
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.favorites-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
}
.favorites-button.loading {
  opacity: 0.7;
  cursor: wait;
}
.favorites-button.loading .bookmark-icon {
  -webkit-animation: pulse 1s infinite;
          animation: pulse 1s infinite;
}
.favorites-button.animate-add {
  -webkit-animation: favoriteAdd 0.3s ease;
          animation: favoriteAdd 0.3s ease;
}
.favorites-button.animate-remove {
  -webkit-animation: favoriteRemove 0.3s ease;
          animation: favoriteRemove 0.3s ease;
}

button.favorites-button img.bookmark-icon,
.favorites-button img.bookmark-icon,
.ghost-spot-item .favorites-button img.bookmark-icon,
article .favorites-button img.bookmark-icon,
img[alt=ブックマーク],
.bookmark-icon {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  display: inline-block !important;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  button.favorites-button img.bookmark-icon,
  .favorites-button img.bookmark-icon,
  .ghost-spot-item .favorites-button img.bookmark-icon,
  article .favorites-button img.bookmark-icon,
  img[alt=ブックマーク],
  .bookmark-icon {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

.favorites-button.favorited .bookmark-icon {
  -webkit-filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
          filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}
.favorites-button.favorited:hover .bookmark-icon {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@-webkit-keyframes favoriteAdd {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes favoriteAdd {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes favoriteRemove {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes favoriteRemove {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.archive-ghost_spot .favorites-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.archive-ghost_spot .favorites-button .bookmark-icon {
  width: 28px !important;
  height: 28px !important;
}
.archive-ghost_spot .favorites-button:hover {
  background: rgb(255, 255, 255);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.single-ghost_spot .favorites-button {
  margin-left: 16px;
  padding: 15px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
}
.single-ghost_spot .favorites-button .bookmark-icon {
  width: 36px !important;
  height: 36px !important;
}
.single-ghost_spot .favorites-button:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}
.single-ghost_spot .favorites-button.favorited {
  background: #fff3cd;
  border-color: #ffc107;
}
.single-ghost_spot .favorites-button.favorited:hover {
  background: #ffeaa7;
}

.page-favorites {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  min-height: 100vh;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .page-favorites {
    padding: 20px 0;
  }
}

.inner.favorites {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .inner.favorites {
    padding: 0 15px;
  }
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px 0;
  border-bottom: 2px solid #c93b3b;
  position: relative;
}
@media (max-width: 768px) {
  .page-header {
    margin-bottom: 30px;
    padding: 20px 0;
  }
}

.page-title {
  color: #c93b3b;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 0 10px #c93b3b, 0 2px 4px rgba(0, 0, 0, 0.5);
  -webkit-animation: bloodGlow 3s ease-in-out infinite;
          animation: bloodGlow 3s ease-in-out infinite;
}
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }
}

@-webkit-keyframes bloodGlow {
  0%, 100% {
    text-shadow: 0 0 10px #c93b3b, 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  50% {
    text-shadow: 0 0 20px #c93b3b, 0 0 30px #c93b3b, 0 2px 4px rgba(0, 0, 0, 0.7);
  }
}

@keyframes bloodGlow {
  0%, 100% {
    text-shadow: 0 0 10px #c93b3b, 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  50% {
    text-shadow: 0 0 20px #c93b3b, 0 0 30px #c93b3b, 0 2px 4px rgba(0, 0, 0, 0.7);
  }
}
.favorites-controls {
  background: linear-gradient(135deg, #2a2a2a 0%, rgb(39.9, 39.9, 39.9) 100%);
  border: 1px solid rgb(73.95, 73.95, 73.95);
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  padding: 25px 30px;
  border-left: 4px solid #c93b3b;
}
@media (max-width: 768px) {
  .favorites-controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 20px;
    text-align: center;
  }
}

.favorites-count {
  color: #e0e0e0;
  font-size: 1.2rem;
  margin: 0;
}
@media (max-width: 768px) {
  .favorites-count {
    font-size: 1.1rem;
  }
}
.favorites-count strong {
  color: #c93b3b;
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(201, 59, 59, 0.5);
}
@media (max-width: 768px) {
  .favorites-count strong {
    font-size: 1.5rem;
  }
}

.sort-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.sort-controls label {
  color: rgba(224, 224, 224, 0.8);
  font-size: 0.9rem;
  white-space: nowrap;
}
.sort-controls .sort-favorites {
  background: rgba(0, 0, 0, 0.8);
  color: #e0e0e0;
  border: 2px solid #444444;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 0.9rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 180px;
}
@media (max-width: 768px) {
  .sort-controls .sort-favorites {
    min-width: 200px;
  }
}
.sort-controls .sort-favorites:focus {
  outline: none;
  border-color: #c93b3b;
  -webkit-box-shadow: 0 0 0 3px rgba(201, 59, 59, 0.2);
          box-shadow: 0 0 0 3px rgba(201, 59, 59, 0.2);
}
.sort-controls .sort-favorites:hover {
  border-color: #c93b3b;
  background: rgba(0, 0, 0, 0.9);
}
.sort-controls .sort-favorites option {
  background: #000;
  color: #e0e0e0;
  padding: 5px;
}

.favorites-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .favorites-list {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .favorites-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}

.ghost-spot-item {
  background: linear-gradient(135deg, #2a2a2a 0%, rgb(39.9, 39.9, 39.9) 100%);
  border: 1px solid rgb(73.95, 73.95, 73.95);
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .ghost-spot-item {
    border-radius: 10px;
  }
}
.ghost-spot-item:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(201, 59, 59, 0.2);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(201, 59, 59, 0.2);
  border-color: #c93b3b;
}
.ghost-spot-item .favorites-button {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  padding: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .ghost-spot-item .favorites-button {
    top: 12px;
    right: 12px;
    padding: 8px;
    width: 40px;
    height: 40px;
  }
}
.ghost-spot-item .favorites-button .bookmark-icon {
  width: 24px;
  height: 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
  .ghost-spot-item .favorites-button .bookmark-icon {
    width: 20px;
    height: 20px;
  }
}
.ghost-spot-item .favorites-button:hover {
  background: rgba(201, 59, 59, 0.9);
  border-color: #c93b3b;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 0 15px rgba(201, 59, 59, 0.5);
          box-shadow: 0 0 15px rgba(201, 59, 59, 0.5);
}
.ghost-spot-item .favorites-button.favorited {
  background: rgba(201, 59, 59, 0.9);
  border-color: #c93b3b;
}
.ghost-spot-item .favorites-button.favorited:hover {
  background: rgba(163.072, 44.928, 44.928, 0.9);
}
.ghost-spot-item .favorites-button:focus {
  outline: 3px solid rgba(201, 59, 59, 0.3);
  outline-offset: 2px;
}
.ghost-spot-item .spot-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  color: inherit;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: none;
  transition: none;
}

.post-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(135deg, #333 0%, #555 100%);
}
@media (max-width: 768px) {
  .post-thumbnail {
    aspect-ratio: 4/3;
  }
}
.post-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  display: block;
}
.ghost-spot-item:hover .post-thumbnail img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.post-content {
  padding: 25px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .post-content {
    padding: 20px;
  }
}

.content-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.content-main h3.entry-title.spot-name {
  color: #e0e0e0 !important;
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  margin: 0 0 8px 0 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media (max-width: 768px) {
  .content-main h3.entry-title.spot-name {
    font-size: 1.2rem !important;
  }
}
.content-main .location-address {
  color: rgba(224, 224, 224, 0.8) !important;
  font-size: 0.9rem !important;
  margin: 0 !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  gap: 5px !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media (max-width: 768px) {
  .content-main .location-address {
    font-size: 0.85rem !important;
  }
}
.content-main .fear-level {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  gap: 10px !important;
  margin: 8px 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.content-main .fear-level .star-rating {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 3px !important;
}
.content-main .fear-level .star-rating img {
  width: 22px !important;
  height: 22px !important;
}
@media (max-width: 768px) {
  .content-main .fear-level .star-rating img {
    width: 20px !important;
    height: 20px !important;
  }
}
.content-main .fear-level .star-rating.no-rating {
  opacity: 0.4;
}
.content-main .fear-level .average-rating-value {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #c93b3b !important;
  margin: 0 !important;
  min-width: 30px !important;
  text-shadow: 0 0 5px rgba(201, 59, 59, 0.3) !important;
}
@media (max-width: 768px) {
  .content-main .fear-level .average-rating-value {
    font-size: 1rem !important;
  }
}
.content-main .reviews {
  margin: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.content-main .reviews p {
  font-size: 0.8rem !important;
  color: rgba(224, 224, 224, 0.7) !important;
  margin: 0 !important;
}
@media (max-width: 768px) {
  .content-main .reviews p {
    font-size: 0.75rem !important;
  }
}

.content-excerpt {
  margin-top: 12px !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.content-excerpt .excerpt {
  color: rgba(224, 224, 224, 0.85) !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
@media (max-width: 768px) {
  .content-excerpt .excerpt {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    -webkit-line-clamp: 2 !important;
  }
}

.taxonomy-categories {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 15px 25px !important;
  padding: 15px 0 !important;
  border-top: 1px solid rgba(224, 224, 224, 0.1) !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media (max-width: 768px) {
  .taxonomy-categories {
    margin: 12px 20px !important;
    padding: 12px 0 !important;
  }
}
.taxonomy-categories .term-link {
  background: rgba(201, 59, 59, 0.1) !important;
  color: rgba(224, 224, 224, 0.9) !important;
  padding: 6px 12px !important;
  border-radius: 20px !important;
  font-size: 0.8rem !important;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  border: 1px solid rgba(201, 59, 59, 0.2) !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.taxonomy-categories .term-link:hover {
  background: rgba(201, 59, 59, 0.9) !important;
  color: white !important;
  border-color: #c93b3b !important;
  -webkit-transform: translateY(-1px) !important;
          transform: translateY(-1px) !important;
  -webkit-box-shadow: 0 4px 10px rgba(201, 59, 59, 0.3) !important;
          box-shadow: 0 4px 10px rgba(201, 59, 59, 0.3) !important;
}
.taxonomy-categories .no-categories {
  color: rgba(224, 224, 224, 0.5) !important;
  font-size: 0.8rem !important;
  font-style: italic !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.entry-footer {
  margin: 0 25px 0 25px !important;
  padding: 15px 0 !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  border-top: 1px solid rgba(224, 224, 224, 0.1) !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media (max-width: 768px) {
  .entry-footer {
    margin: 12px 20px 0 20px !important;
    padding: 12px 0 !important;
  }
}
.entry-footer .favorite-date {
  text-align: center !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.entry-footer .favorite-date small {
  color: rgba(201, 59, 59, 0.8) !important;
  font-size: 16px !important;
  font-weight: 600;
  font-style: italic !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1;
  background: rgba(201, 59, 59, 0.1) !important;
  padding: 4px 8px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(201, 59, 59, 0.2) !important;
}
@media (max-width: 768px) {
  .entry-footer .favorite-date small {
    font-size: 0.75rem !important;
    padding: 3px 6px !important;
  }
}

.no-favorites {
  background: linear-gradient(135deg, #2a2a2a 0%, rgb(39.9, 39.9, 39.9) 100%);
  border: 1px solid rgb(73.95, 73.95, 73.95);
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding: 80px 40px;
  border: 2px dashed rgba(201, 59, 59, 0.3);
  margin-bottom: 50px;
  position: relative;
}
@media (max-width: 768px) {
  .no-favorites {
    padding: 60px 20px;
    margin-bottom: 40px;
  }
}
.no-favorites::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(201, 59, 59, 0.1), transparent);
  border-radius: inherit;
  z-index: -1;
}

.no-favorites-content {
  max-width: 500px;
  margin: 0 auto;
}

.no-favorites-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.6;
  -webkit-animation: ghostFloat 3s ease-in-out infinite;
          animation: ghostFloat 3s ease-in-out infinite;
}
@media (max-width: 768px) {
  .no-favorites-icon {
    font-size: 3rem;
    margin-bottom: 15px;
  }
}
.no-favorites-icon .icon-bookmark::before {
  content: "👻";
}

@-webkit-keyframes ghostFloat {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes ghostFloat {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
.no-favorites h2 {
  color: #c93b3b;
  font-size: 2rem;
  margin: 0 0 15px 0;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(201, 59, 59, 0.3);
}
@media (max-width: 768px) {
  .no-favorites h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
}

.no-favorites p {
  color: rgba(224, 224, 224, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 30px 0;
}
@media (max-width: 768px) {
  .no-favorites p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
}

.button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}
.button.button-primary {
  background: linear-gradient(135deg, #c93b3b 0%, rgb(163.072, 44.928, 44.928) 100%);
  color: white;
  border: 2px solid #c93b3b;
  -webkit-box-shadow: 0 4px 15px rgba(201, 59, 59, 0.3);
          box-shadow: 0 4px 15px rgba(201, 59, 59, 0.3);
}
.button.button-primary:hover {
  background: linear-gradient(135deg, rgb(206.4, 78.6, 78.6) 0%, #c93b3b 100%);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 25px rgba(201, 59, 59, 0.5);
          box-shadow: 0 8px 25px rgba(201, 59, 59, 0.5);
}

.favorites-info {
  background: linear-gradient(135deg, #2a2a2a 0%, rgb(39.9, 39.9, 39.9) 100%);
  border: 1px solid rgb(73.95, 73.95, 73.95);
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-left: 4px solid #c93b3b;
}
@media (max-width: 768px) {
  .favorites-info {
    padding: 30px 20px;
  }
}
.favorites-info h3 {
  color: #c93b3b;
  font-size: 1.8rem;
  text-align: center;
  margin: 0 0 30px 0;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(201, 59, 59, 0.3);
}
@media (max-width: 768px) {
  .favorites-info h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.info-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 768px) {
  .info-item {
    padding: 20px;
  }
}
.info-item:hover {
  background: rgba(255, 255, 255, 0.08);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.info-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#c93b3b), to(rgb(142.688, 39.312, 39.312)));
  background: linear-gradient(to bottom, #c93b3b, rgb(142.688, 39.312, 39.312));
  border-radius: 0 0 0 12px;
}
.info-item h4 {
  color: #e0e0e0;
  font-size: 1.2rem;
  margin: 0 0 12px 0;
  font-weight: 600;
}
@media (max-width: 768px) {
  .info-item h4 {
    font-size: 1.1rem;
  }
}
.info-item p {
  color: rgba(224, 224, 224, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .info-item p {
    font-size: 0.9rem;
  }
}
.info-item .info-icon {
  margin-bottom: 15px;
  font-size: 1.8rem;
  color: #c93b3b;
}
.info-item .info-icon .icon-info::before {
  content: "⚠️";
}

.sort-feedback {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  z-index: 9999;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.sort-feedback.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (max-width: 768px) {
  .sort-feedback {
    top: 10px;
    right: 10px;
    left: 10px;
    text-align: center;
    font-size: 13px;
  }
}
.sort-feedback::before {
  content: "✓ ";
  margin-right: 5px;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.ghost-spot-item {
  -webkit-animation: fadeInUp 0.6s ease-out;
          animation: fadeInUp 0.6s ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.ghost-spot-item:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.ghost-spot-item:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.ghost-spot-item:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.ghost-spot-item:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.ghost-spot-item:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.ghost-spot-item:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.ghost-spot-item:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.ghost-spot-item:nth-child(8) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.ghost-spot-item:nth-child(9) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.ghost-spot-item:nth-child(10) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.ghost-spot-item:nth-child(11) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.ghost-spot-item:nth-child(12) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.ghost-spot-item:nth-child(13) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.ghost-spot-item:nth-child(14) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.ghost-spot-item:nth-child(15) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.ghost-spot-item:nth-child(16) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.ghost-spot-item:nth-child(17) {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}
.ghost-spot-item:nth-child(18) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.ghost-spot-item:nth-child(19) {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}
.ghost-spot-item:nth-child(20) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.info-item {
  -webkit-animation: fadeInUp 0.6s ease-out;
          animation: fadeInUp 0.6s ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.info-item:nth-child(1) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.info-item:nth-child(2) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.info-item:nth-child(3) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.info-item:nth-child(4) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

@media (prefers-reduced-motion: reduce) {
  .ghost-spot-item,
  .info-item,
  .page-title,
  .no-favorites-icon {
    -webkit-animation: none;
            animation: none;
  }
  .ghost-spot-item:hover,
  .ghost-spot-item:hover .post-thumbnail img {
    -webkit-transform: none;
            transform: none;
  }
}
@media (prefers-contrast: high) {
  .ghost-spot-item {
    border-color: white;
  }
  .page-title {
    color: white;
    text-shadow: none;
  }
  .button-primary {
    background: white;
    color: black;
  }
}