/* Utility classes */
.hidden-by-filter {
  display: none !important;
}

/* Post list layout */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.post-list-card {
  background: linear-gradient(145deg, rgba(17, 17, 17, 0.95) 0%, rgba(12, 12, 12, 0.98) 60%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: transform var(--animation-speed-slow) ease, box-shadow var(--animation-speed-slow) ease, border-color var(--animation-speed-normal) ease;
  cursor: pointer;
  overflow: hidden;
}

.post-list-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.08), transparent);
  transition: left 0.9s ease;
}

.post-list-card:hover::before {
  left: 100%;
}

.post-list-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(220, 38, 38, 0.6);
  box-shadow: 0 30px 60px rgba(220, 38, 38, 0.15), 0 20px 45px rgba(0, 0, 0, 0.7);
}

.post-list-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-tertiary);
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 260px;
}

.post-list-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--animation-speed-slow) ease, filter var(--animation-speed-normal) ease;
}

.post-list-card.locked .post-list-media img {
  filter: blur(4px) brightness(0.8);
}

.post-lock-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.95));
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1.5rem;
}

.post-lock-overlay p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.post-lock-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-red);
}

.post-list-card:hover .post-list-media img {
  transform: scale(1.05);
  filter: brightness(1.05) saturate(1.1);
}

.post-lock-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(220, 38, 38, 0.6);
  color: var(--accent-red);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
}

.post-list-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-list-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  transition: color var(--animation-speed-normal) ease, transform var(--animation-speed-normal) ease;
}

.post-list-card:hover .post-list-title {
  color: var(--accent-red);
  transform: translateX(6px);
}

.post-list-excerpt {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.post-meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.post-meta-badges .badge {
  background: rgba(220, 38, 38, 0.15) !important;
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: var(--accent-red) !important;
  letter-spacing: 0.04em;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
}

.post-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.post-stats span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.post-stats i {
  color: var(--accent-red);
  font-size: 1.1rem;
}

.post-card-actions {
  margin-top: auto;
}

.post-card-actions .btn {
  min-width: 180px;
}

/* Post Card Grid */
.post-card {
  background: linear-gradient(155deg, rgba(17, 17, 17, 0.98) 0%, rgba(10, 10, 10, 0.95) 80%);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  transition: transform var(--animation-speed-normal) ease, border-color var(--animation-speed-normal) ease, box-shadow var(--animation-speed-normal) ease;
}

.post-card:hover {
  transform: translateY(-8px);
  border-color: rgba(220, 38, 38, 0.45);
  box-shadow: 0 22px 45px rgba(220, 38, 38, 0.18), 0 18px 38px rgba(0, 0, 0, 0.65);
}

.post-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--animation-speed-slow) ease, filter var(--animation-speed-normal) ease;
}

.post-card:hover .post-card-media img {
  transform: scale(1.08);
  filter: brightness(1.08) saturate(1.15);
}

.post-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  height: 100%;
  background: linear-gradient(155deg, rgba(12, 12, 12, 0.95) 0%, rgba(17, 17, 17, 0.98) 100%);
}

.post-card-body .btn {
  margin-top: auto;
}

@media (max-width: 992px) {
  .post-list-card {
    padding: 2rem;
  }

  .post-list-media {
    min-height: 220px;
  }

  .post-list-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  .post-list-card {
    padding: 1.75rem;
  }

  .post-list {
    gap: 24px;
  }

  .post-list-title {
    font-size: 1.7rem;
  }

  .post-list-excerpt {
    font-size: 1rem;
  }

  .post-card-actions .btn {
    width: 100%;
  }

  .post-card-body {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .post-list-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .post-list-media {
    border-radius: 12px;
  }

  .post-stats {
    gap: 1rem;
  }

  .post-meta-badges .badge {
    font-size: 0.7rem;
  }
}
/* SkuddArt Visitor CSS - Dark Theme with Red Highlights */

/* Dark Theme Variables */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #e5e5e5;
  --text-muted: #999999;
  --accent-red: #dc2626;
  --accent-red-hover: #ef4444;
  --accent-red-light: rgba(220, 38, 38, 0.1);
  --accent-red-bright: #ff3333;
  --accent-red-neon: #ff0040;
  --accent-gold: #ffd700;
  --accent-cyan: #00ffff;
  --border-color: #333333;
  --shadow-color: rgba(0, 0, 0, 0.8);
  --gradient-red: linear-gradient(135deg, #dc2626 0%, #ff3333 50%, #ff0040 100%);
  --gradient-cyberpunk: linear-gradient(135deg, #dc2626 0%, #ff3333 25%, #ffd700 50%, #00ffff 75%, #dc2626 100%);
  --glow-red: 0 0 20px rgba(220, 38, 38, 0.6), 0 0 40px rgba(220, 38, 38, 0.4), 0 0 60px rgba(220, 38, 38, 0.2);
  --glow-neon: 0 0 10px rgba(255, 0, 64, 0.8), 0 0 20px rgba(255, 0, 64, 0.6), 0 0 30px rgba(255, 0, 64, 0.4);
  --animation-speed-fast: 0.2s;
  --animation-speed-normal: 0.3s;
  --animation-speed-slow: 0.6s;
}

/* Base Styles */
body.dark-theme {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.floating-cube {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  opacity: 0.3;
  animation: floatUp 15s linear infinite;
}

.cube-1 {
  left: 10%;
  animation-delay: 0s;
}

.cube-2 {
  left: 30%;
  animation-delay: 5s;
}

.cube-3 {
  left: 70%;
  animation-delay: 10s;
}

.cube-4 {
  left: 85%;
  animation-delay: 3s;
  width: 6px;
  height: 6px;
}

.cube-5 {
  left: 5%;
  animation-delay: 18s;
  width: 10px;
  height: 10px;
}

.floating-reel {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid var(--accent-red);
  border-radius: 50%;
  opacity: 0.2;
  animation: floatUp 20s linear infinite;
}

.reel-1 {
  left: 20%;
  animation-delay: 2s;
}

.reel-2 {
  left: 80%;
  animation-delay: 12s;
}

.reel-3 {
  left: 60%;
  animation-delay: 8s;
  width: 8px;
  height: 8px;
}

.floating-diamond {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--accent-gold);
  transform: rotate(45deg);
  opacity: 0.15;
  animation: floatUpSpin 18s linear infinite;
}

.diamond-1 {
  left: 45%;
  animation-delay: 6s;
}

.diamond-2 {
  left: 90%;
  animation-delay: 14s;
}

.floating-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid var(--accent-cyan);
  opacity: 0.12;
  animation: floatUpRotate 22s linear infinite;
}

.triangle-1 {
  left: 35%;
  animation-delay: 4s;
}

.triangle-2 {
  left: 75%;
  animation-delay: 16s;
}

.glow-orb {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-red-neon);
  box-shadow: var(--glow-neon);
  opacity: 0.8;
  animation: floatUpGlow 25s linear infinite;
}

.orb-1 {
  left: 15%;
  animation-delay: 7s;
}

.orb-2 {
  left: 55%;
  animation-delay: 13s;
}

.orb-3 {
  left: 95%;
  animation-delay: 20s;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes floatUpSpin {
  0% {
    transform: translateY(100vh) rotate(45deg) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 0.15;
  }
  50% {
    transform: translateY(50vh) rotate(225deg) scale(1.2);
  }
  90% {
    opacity: 0.15;
  }
  100% {
    transform: translateY(-100px) rotate(405deg) scale(0.3);
    opacity: 0;
  }
}

@keyframes floatUpRotate {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.12;
  }
  90% {
    opacity: 0.12;
  }
  100% {
    transform: translateY(-100px) rotate(720deg);
    opacity: 0;
  }
}

@keyframes floatUpGlow {
  0% {
    transform: translateY(100vh) scale(0.3);
    opacity: 0;
    box-shadow: 0 0 5px rgba(255, 0, 64, 0.3);
  }
  10% {
    opacity: 0.8;
    box-shadow: var(--glow-neon);
  }
  50% {
    transform: translateY(50vh) scale(1.5);
    box-shadow: 0 0 30px rgba(255, 0, 64, 1), 0 0 60px rgba(255, 0, 64, 0.6);
  }
  90% {
    opacity: 0.8;
    box-shadow: var(--glow-neon);
  }
  100% {
    transform: translateY(-100px) scale(0.1);
    opacity: 0;
    box-shadow: 0 0 5px rgba(255, 0, 64, 0.1);
  }
}

/* Hero Section */
.hero-section {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(255, 0, 64, 0.08) 25%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(220, 38, 38, 0.03) 25%, rgba(255, 0, 64, 0.05) 50%, rgba(220, 38, 38, 0.03) 75%, transparent 100%);
  animation: heroSweep 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroSweep {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

.hero-subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 0;
  animation: subtitleFade 2s ease-out 0.5s both;
  position: relative;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.hero-subtitle::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gradient-red);
  animation: underlineGlow 2s ease-out 1s both;
}

@keyframes subtitleFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underlineGlow {
  0% {
    width: 0;
    box-shadow: none;
  }
  100% {
    width: 60px;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.8);
  }
}/* Navigation */
.navbar {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.navbar-scrolled {
  padding: 0.5rem 0;
}

.navbar.navbar-scrolled .navbar-brand .brand-text {
  font-size: 1.3rem;
}

.navbar.navbar-scrolled::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent-red);
  animation: redUnderline 0.3s ease-out;
}

@keyframes redUnderline {
  from { width: 0; }
  to { width: 60px; }
}

.navbar-brand {
  text-decoration: none;
  position: relative;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-brand .brand-text {
  font-family: 'Orbitron', monospace;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.6rem;
  transition: all var(--animation-speed-normal) ease;
  position: relative;
  letter-spacing: 0.08em;
  text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.navbar-brand:hover .brand-text {
  color: var(--accent-red-bright);
  text-shadow:
    0 0 5px rgba(255, 0, 64, 0.8),
    0 0 10px rgba(255, 0, 64, 0.6),
    0 0 15px rgba(255, 0, 64, 0.4),
    0 0 20px rgba(220, 38, 38, 0.2);
  animation: brandPulse 1.5s ease-in-out infinite;
}

@keyframes brandPulse {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.3);
  }
}

.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--animation-speed-normal) ease;
  position: relative;
  padding: 0.8rem 1.2rem !important;
  border-radius: 8px;
  letter-spacing: 0.02em;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
  transition: left var(--animation-speed-slow) ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-red-bright) !important;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
  transform: translateY(-2px);
  box-shadow:
    0 4px 12px rgba(220, 38, 38, 0.15),
    0 0 20px rgba(220, 38, 38, 0.1);
  text-shadow: 0 0 8px rgba(220, 38, 38, 0.4);
}

.nav-link:hover::after,
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: var(--gradient-red);
  animation: navGlow var(--animation-speed-normal) ease-out;
  border-radius: 2px;
}

.user-menu .nav-link {
  padding-right: 2.4rem !important;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.user-menu .nav-link::after {
  display: none;
}

.user-menu.show .nav-link,
.user-menu .nav-link[aria-expanded="true"] {
  color: var(--accent-red-bright) !important;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.25);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.18), 0 0 20px rgba(220, 38, 38, 0.12);
}

.user-menu-dropdown {
  background: rgba(12, 12, 16, 0.97);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: 0.85rem;
  padding: 0.5rem;
  min-width: 11rem;
}

.user-menu-dropdown .dropdown-item {
  color: var(--text-secondary);
  font-weight: 500;
  border-radius: 0.6rem;
  transition: all var(--animation-speed-normal) ease;
}

.user-menu-dropdown .dropdown-item:hover {
  color: var(--text-primary);
  background: rgba(220, 38, 38, 0.2);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.2);
}

@keyframes navGlow {
  from {
    width: 0;
    box-shadow: none;
    opacity: 0;
  }
  to {
    width: 80%;
    box-shadow:
      0 0 8px rgba(220, 38, 38, 0.8),
      0 0 16px rgba(220, 38, 38, 0.4);
    opacity: 1;
  }
}

/* Buttons */
.btn-danger {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--gradient-red);
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all var(--animation-speed-normal) ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  box-shadow:
    0 4px 15px rgba(220, 38, 38, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-danger::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 var(--animation-speed-slow) ease;
}

.btn-danger:hover::before {
  left: 100%;
}

.btn-danger:hover {
  background: var(--gradient-red);
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 8px 25px rgba(220, 38, 38, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@keyframes buttonPulse {
  0%, 100% {
    box-shadow:
      0 8px 25px rgba(220, 38, 38, 0.4),
      0 0 20px rgba(255, 0, 64, 0.3);
  }
  50% {
    box-shadow:
      0 12px 35px rgba(220, 38, 38, 0.6),
      0 0 30px rgba(255, 0, 64, 0.5),
      0 0 50px rgba(220, 38, 38, 0.2);
  }
}

.btn-outline-danger {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--accent-red);
  background: transparent;
  border: 2px solid var(--accent-red);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all var(--animation-speed-normal) ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.btn-outline-danger::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gradient-red);
  transition: width var(--animation-speed-slow) ease;
  z-index: -1;
}

.btn-outline-danger:hover::before {
  width: 100%;
}

.btn-outline-danger:hover {
  color: white;
  border-color: var(--accent-red-bright);
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 8px 25px rgba(220, 38, 38, 0.4),
    0 0 20px rgba(255, 0, 64, 0.3);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Main Content */
.main-content {
  padding-top: 100px;
  min-height: calc(100vh - 200px);
}

/* Post Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  padding: 0;
}

@media (max-width: 768px) {
  .posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }
}

.post-thumbnail {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--bg-secondary);
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}

.post-overlay .post-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--accent-red);
}

.post-overlay .post-description {
  font-size: 0.7rem;
  color: var(--text-secondary);
  line-height: 1.2;
}

.post-thumbnail:hover {
  transform: translateY(-8px) scale(1.02);
  z-index: 10;
  box-shadow:
    0 20px 40px rgba(220, 38, 38, 0.25),
    0 8px 20px var(--shadow-color),
    0 0 30px rgba(255, 0, 64, 0.15);
  border: 2px solid rgba(255, 0, 64, 0.3);
  border-radius: 12px;
}

.post-thumbnail:hover img {
  transform: scale(1.15) rotate(1deg);
  filter: brightness(1.1) saturate(1.2) contrast(1.05);
}

.post-thumbnail:hover .post-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.85);
}

.post-thumbnail:hover .post-overlay .post-title {
  color: var(--accent-red-bright);
  text-shadow: 0 0 10px rgba(255, 0, 64, 0.6);
  transform: translateY(-4px);
}

.post-thumbnail:hover .post-overlay .post-description {
  transform: translateY(4px);
  color: var(--text-primary);
}

.object-fit-cover {
  object-fit: cover;
}

/* Locked post styling */
.post-thumbnail.locked img {
  filter: blur(3px) brightness(0.8);
}

.post-thumbnail.locked .lock-icon {
  position: relative;
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, 0.2);
  color: var(--accent-red);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  z-index: 5;
}

.post-thumbnail.locked .post-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.85);
}

.post-thumbnail.locked .post-description {
  color: var(--text-secondary);
}

/* Category Filters */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.filter-btn {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn[data-locked="true"] {
  pointer-events: none;
  cursor: default;
  opacity: 0.9;
  transform: none;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-red);
  color: white;
  border-color: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

/* Like Button Animation */
.like-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.like-btn:hover {
  color: var(--accent-red);
  transform: scale(1.1);
}

.like-btn.liked {
  color: var(--accent-red);
  animation: likePop 0.6s ease;
}

.like-btn.liked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-red) 0%, transparent 70%);
  animation: particleBurst 0.6s ease;
  pointer-events: none;
}

@keyframes likePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

@keyframes particleBurst {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2);
  }
}

/* Modal Styling */
.modal-content {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.modal-header {
  border-bottom: 1px solid var(--border-color);
}

.modal-header .modal-title {
  color: var(--accent-red);
}

.modal-header .btn-close {
  filter: invert(1);
}

.modal-body {
  text-align: center;
}

.modal-body .lock-icon-large {
  font-size: 3rem;
  color: var(--accent-red);
  margin-bottom: 1rem;
}

/* Comments Section */
.comments-section {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.comment {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.comment .comment-author {
  color: var(--accent-red);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.comment .comment-text {
  color: var(--text-secondary);
  line-height: 1.5;
}

.comment .comment-actions {
  margin-top: 0.5rem;
}

.comment .comment-actions .reply-btn {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.comment .comment-actions .reply-btn:hover {
  color: var(--accent-red);
}

.comment-thread {
  background: transparent;
}

.comment-card {
  background: linear-gradient(155deg, rgba(17, 17, 17, 0.92) 0%, rgba(12, 12, 12, 0.94) 100%);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: border-color var(--animation-speed-normal) ease, box-shadow var(--animation-speed-normal) ease;
}

.comment-card:hover {
  border-color: rgba(220, 38, 38, 0.35);
  box-shadow: 0 16px 36px rgba(220, 38, 38, 0.12), 0 12px 32px rgba(0, 0, 0, 0.4);
}

.comment-reply {
  border-left: 2px solid rgba(220, 38, 38, 0.2);
  background: rgba(12, 12, 12, 0.8);
}

.comment-children {
  border-left: 1px dashed rgba(220, 38, 38, 0.25);
}

/* Form Styling */
.form-control {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.form-control:focus {
  background-color: transparent;
  border-color: var(--accent-red);
  color: var(--text-primary);
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

.form-control::placeholder {
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--bg-secondary);
      filter: blur(3px) brightness(0.8);
  padding: 2rem 0 1rem;
  color: var(--text-secondary);
    .lock-icon {
      position: relative;
      display: inline-flex;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      background: rgba(220, 38, 38, 0.2);
      color: var(--accent-red);
      font-size: 1.2rem;
      margin-bottom: 0.75rem;
      z-index: 5;
.dropdown-item {

    .post-overlay {
      opacity: 1;
      background: rgba(0, 0, 0, 0.85);
    }

    .post-description {
      color: var(--text-secondary);
    }
  color: var(--text-secondary);
}

.dropdown-item:hover {
  background-color: var(--bg-tertiary);
  color: var(--accent-red);
}

.dropdown-divider {
  border-color: var(--border-color);
}

/* Breadcrumb */
.breadcrumb {
  background: none;
  padding: 0;
}

.breadcrumb-item a {
  text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
}

/* Post Detail Styles */
.post-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.post-detail {
  background: transparent;
}

.post-body {
  backdrop-filter: blur(6px);
}

.media-frame {
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-tertiary);
  border: 1px solid rgba(220, 38, 38, 0.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.media-frame iframe,
.media-frame img,
.media-frame model-viewer {
  display: block;
  border: none;
}

.model-viewer-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: radial-gradient(circle at top, rgba(220, 38, 38, 0.08), rgba(0, 0, 0, 0.75));
}

.model-viewer-frame model-viewer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, rgba(10, 10, 10, 0.95), rgba(5, 5, 5, 0.85));
}

.media-index {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--text-secondary);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(220, 38, 38, 0.35);
}

.post-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.post-image-container {
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.sidebar-widget {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.post-content {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
}

.post-content h5,
.post-content h6 {
  color: var(--accent-red);
}

.post-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.post-content ul li {
  color: var(--text-secondary);
}

/* Lightbox Styles */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10001;
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--accent-red);
}

.lightbox-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.9rem;
}

/* Additional Post Detail Fixes */
.breadcrumb-item.active {
  color: var(--text-secondary);
}

.badge {
  color: var(--text-primary) !important;
}

.bg-danger {
  background-color: var(--accent-red) !important;
}

.bg-dark {
  background-color: transparent !important;
  border: 1px solid var(--border-color) !important;
}

.text-danger {
  color: var(--accent-red) !important;
}

.text-white {
  color: var(--text-primary) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-secondary {
  color: var(--text-secondary) !important;
}

.bg-secondary {
  background-color: transparent !important;
  border: 1px solid var(--border-color) !important;
}

.related-post {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.related-post:last-child {
  border-bottom: none;
}

.related-post h6 {
  color: var(--text-primary);
  font-size: 0.9rem;
}

.related-post p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.post-header {
  margin-bottom: 2rem;
}

.post-actions {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
}

.related-card {
  padding: 1rem;
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 16px;
  background: linear-gradient(155deg, rgba(17, 17, 17, 0.96) 0%, rgba(12, 12, 12, 0.94) 100%);
  transition: transform var(--animation-speed-normal) ease, border-color var(--animation-speed-normal) ease, box-shadow var(--animation-speed-normal) ease;
}

.related-card:hover {
  transform: translateY(-6px);
  border-color: rgba(220, 38, 38, 0.35);
  box-shadow: 0 16px 36px rgba(220, 38, 38, 0.18), 0 12px 28px rgba(0, 0, 0, 0.45);
}

.avatar-circle,
.avatar-circle-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(155deg, rgba(220, 38, 38, 0.3) 0%, rgba(255, 0, 64, 0.15) 100%);
  color: var(--text-primary);
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid rgba(220, 38, 38, 0.4);
}

.avatar-circle {
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
}

.avatar-circle-sm {
  width: 38px;
  height: 38px;
  font-size: 1rem;
}

.bg-dark-900 {
  background-color: #090909 !important;
}

.tracking-wide {
  letter-spacing: 0.08em;
}

.auth-prompt {
  background-color: transparent !important;
  border: 1px solid var(--border-color) !important;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* Responsive Design */
@media (max-width: 768px) {
  .navbar-brand .brand-text {
    font-size: 1.4rem;
  }

  .main-content {
    padding-top: 80px;
  }

  .hero-title {
    font-size: 3rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .post-list-title {
    font-size: 1.8rem;
  }

  .nav-link {
    padding: 0.6rem 1rem !important;
    font-size: 0.9rem;
  }

  .category-filters {
    margin-bottom: 1rem;
  }

  .category-filters .filter-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .post-title {
    font-size: 2rem;
  }

  .lightbox-prev, .lightbox-next {
    position: fixed;
    top: 50%;
    font-size: 1.2rem;
    padding: 0.8rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
  }

  .lightbox-counter {
    bottom: 20px;
  }
}
