/* Lucidity Paradox — Official Stylesheet for www.lucidityparadox.com */
:root {
  --bg-dark: #050508;
  --purple-glow: #a855f7;
  --purple-dim: #581c87;
  --orange-glow: #f97316;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
}

/* SOUND ON/OFF TOGGLE */
.sound-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;
  background: rgba(18, 18, 24, 0.85);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #a855f7;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sound-toggle:hover {
  background: rgba(168, 85, 247, 0.2);
  border-color: #a855f7;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
  transform: scale(1.08);
}

.sound-toggle .icon-sound-off {
  display: none;
}

.sound-toggle.muted .icon-sound-on {
  display: none;
}

.sound-toggle.muted .icon-sound-off {
  display: block;
}

/* AMBIENT PARTICLE FIELD */
.particle-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  animation: floatUp linear infinite, flicker ease-in-out infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  20% {
    opacity: var(--particle-opacity, 0.5);
  }
  80% {
    opacity: var(--particle-opacity, 0.5);
  }
  100% {
    transform: translateY(-105vh) translateX(var(--drift-x, 20px));
    opacity: 0;
  }
}

@keyframes flicker {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* HOLOGRAPHIC OVERLAYS */
.holo-grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: 
    linear-gradient(to right, rgba(168, 85, 247, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.holo-scan-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(0, 0, 0, 0.25) 51%
  );
  background-size: 100% 4px;
}

/* LAYERED BANNER & LOGO ANIMATIONS */
.banner {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(88, 28, 135, 0.4) 0%, rgba(15, 12, 27, 0.95) 70%, #050508 100%);
}

.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: contrast(1.15) saturate(1.25) brightness(0.85);
  pointer-events: none;
}

/* LP LOGO - Main Centered Hero */
.lp-logo-entrance {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: smoothFadeIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  will-change: transform, opacity;
}

@keyframes smoothFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.94);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.lp-logo-hover {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: lpIdleFloat 5s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes lpIdleFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-3px);
  }
}

.banner-lp-logo {
  width: 90%;
  max-width: 640px;
  height: auto;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.7)) drop-shadow(0 0 50px rgba(88, 28, 135, 0.5));
  animation: lpGlowPulse 4s ease-in-out infinite alternate;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
  will-change: transform, filter;
}

.banner-lp-logo.hovering,
.lp-logo-hover:hover .banner-lp-logo {
  transform: scale(1.06);
  filter: drop-shadow(0 0 45px rgba(249, 115, 22, 0.95)) drop-shadow(0 0 25px rgba(255, 170, 60, 0.85)) drop-shadow(0 0 65px rgba(168, 85, 247, 0.7));
}

@keyframes lpGlowPulse {
  0% {
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5)) drop-shadow(0 0 40px rgba(88, 28, 135, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 35px rgba(192, 132, 252, 0.85)) drop-shadow(0 0 55px rgba(168, 85, 247, 0.6));
  }
  100% {
    filter: drop-shadow(0 0 25px rgba(249, 115, 22, 0.65)) drop-shadow(0 0 45px rgba(168, 85, 247, 0.5));
  }
}

/* LG LOGO - Top Right Studio Badge */
.banner-lg-logo {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 100%;
  max-width: 145px;
  height: auto;
  z-index: 15;
  opacity: 0.88;
  cursor: pointer;
  filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.5));
  animation: lgIdleFloat 4s ease-in-out infinite alternate, lgGlowPulse 3s ease-in-out infinite alternate;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease, opacity 0.3s ease;
  will-change: transform, filter, opacity;
}

.banner-lg-logo:hover,
.banner-lg-logo.hovering {
  opacity: 1;
  transform: scale(1.12) rotate(-1.5deg);
  filter: drop-shadow(0 0 22px rgba(168, 85, 247, 0.95)) drop-shadow(0 0 12px rgba(249, 115, 22, 0.75)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
}

@keyframes lgIdleFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(0.8deg);
  }
  100% {
    transform: translateY(-2px) rotate(-0.5deg);
  }
}

@keyframes lgGlowPulse {
  0% {
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.4));
  }
  100% {
    filter: drop-shadow(0 0 18px rgba(168, 85, 247, 0.8));
  }
}

@media (max-width: 640px) {
  .banner {
    min-height: 380px;
    padding: 70px 16px 40px;
  }
  .banner-lp-logo {
    max-width: 90vw;
  }
  .banner-lg-logo {
    top: 16px;
    right: 16px;
    max-width: 110px;
  }
}

/* MAIN TITLE & TEXT */
.cs-content {
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 10;
}

.glow-purple {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f3e8ff;
  text-shadow: 0 0 15px rgba(168, 85, 247, 0.8);
  letter-spacing: 0.05em;
}

/* SHOWCASE SECTION & CATEGORY TILES */
.cs-showcase {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  z-index: 10;
}

.cs-subtitle {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
}

.cs-text {
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* CATEGORY TILES GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.category-card {
  position: relative;
  background: rgba(15, 12, 27, 0.85);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #a855f7;
  box-shadow: 0 18px 40px rgba(168, 85, 247, 0.4), 0 0 20px rgba(249, 115, 22, 0.25);
}

.category-thumb-wrapper {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #080611;
}

.category-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.9) contrast(1.05);
}

.category-card:hover .category-thumb {
  transform: scale(1.08);
  filter: brightness(1.05) contrast(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 9, 23, 0.95) 0%, rgba(12, 9, 23, 0.2) 60%, transparent 100%);
}

.category-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(88, 28, 135, 0.75);
  border: 1px solid rgba(168, 85, 247, 0.5);
  color: #f3e8ff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.category-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(168, 85, 247, 0.85);
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.8);
  transition: all 0.3s ease;
}

.category-card:hover .category-play-icon {
  transform: translate(-50%, -50%) scale(1.15);
  background: #f97316;
  box-shadow: 0 0 35px rgba(249, 115, 22, 0.9);
}

.category-body {
  padding: 16px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-desc {
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.4;
  margin-bottom: 12px;
}

.category-action {
  font-size: 0.8rem;
  font-weight: 700;
  color: #c084fc;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.category-card:hover .category-action {
  color: #f97316;
}

/* MODAL SLIDESHOW LIGHTBOX */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 960px;
  background: #0b0817;
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(168, 85, 247, 0.3), 0 25px 60px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalPop {
  from { transform: scale(0.92) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-header {
  padding: 16px 24px;
  background: rgba(18, 14, 34, 0.9);
  border-bottom: 1px solid rgba(168, 85, 247, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-category-tag {
  background: linear-gradient(135deg, #581c87 0%, #a855f7 100%);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
}

.modal-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.modal-counter {
  font-size: 0.85rem;
  color: #a855f7;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #d1d5db;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.modal-close-btn:hover {
  background: rgba(249, 115, 22, 0.2);
  border-color: #f97316;
  color: #ffffff;
  transform: scale(1.1) rotate(90deg);
}

.modal-viewport {
  position: relative;
  width: 100%;
  height: 480px;
  background: #04030a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 640px) {
  .modal-viewport {
    height: 300px;
  }
}

.modal-media-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  transition: opacity 0.3s ease;
}

.modal-video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  position: relative;
}

.modal-video-player {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: contain;
}

.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11, 8, 23, 0.75);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.modal-nav-btn:hover {
  background: rgba(168, 85, 247, 0.35);
  border-color: #a855f7;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
  transform: translateY(-50%) scale(1.12);
}

.modal-nav-prev { left: 16px; }
.modal-nav-next { right: 16px; }

.modal-caption-bar {
  padding: 16px 24px;
  background: rgba(18, 14, 34, 0.95);
  border-top: 1px solid rgba(168, 85, 247, 0.2);
  text-align: left;
}

.modal-item-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.modal-item-desc {
  font-size: 0.88rem;
  color: #9ca3af;
  line-height: 1.45;
}

.modal-thumb-strip {
  padding: 12px 20px;
  background: #070510;
  border-top: 1px solid rgba(168, 85, 247, 0.15);
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #581c87 #070510;
}

.modal-thumb-item {
  width: 72px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  opacity: 0.6;
  transition: all 0.25s ease;
  background: #000;
  position: relative;
}

.modal-thumb-item:hover {
  opacity: 0.9;
  border-color: rgba(168, 85, 247, 0.6);
}

.modal-thumb-item.active {
  opacity: 1;
  border-color: #f97316;
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.8);
  transform: scale(1.05);
}

.modal-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DONATE BUTTON */
.donate-box {
  display: flex;
  justify-content: center;
  margin: 20px 0 60px 0;
  position: relative;
  z-index: 10;
}

.donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #0070ba 0%, #1546a0 100%);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 112, 186, 0.4);
  transition: all 0.3s ease;
}

.donate-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 112, 186, 0.6);
  background: linear-gradient(135deg, #0070ba 0%, #1e52b7 100%);
}

.pp-logo {
  height: 22px;
  width: auto;
}

/* =========================================================
   WORLD LORE CODEX MODAL STYLING
   ========================================================= */
.lore-codex-container {
  display: flex;
  height: 520px;
  max-height: 70vh;
  background: #080612;
  overflow: hidden;
}

@media (max-width: 768px) {
  .lore-codex-container {
    flex-direction: column;
    height: auto;
    max-height: 75vh;
  }
}

.lore-sidebar {
  width: 280px;
  flex-shrink: 0;
  background: rgba(14, 11, 28, 0.95);
  border-right: 1px solid rgba(168, 85, 247, 0.2);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #581c87 #080612;
}

@media (max-width: 768px) {
  .lore-sidebar {
    width: 100%;
    max-height: 160px;
    border-right: none;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
  }
}

.lore-chapter-item {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  background: transparent;
  border-left: 3px solid transparent;
}

.lore-chapter-item:hover {
  background: rgba(168, 85, 247, 0.12);
  border-left-color: rgba(168, 85, 247, 0.6);
}

.lore-chapter-item.active {
  background: rgba(88, 28, 135, 0.35);
  border-left-color: #f97316;
}

.lore-chapter-num {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c084fc;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lore-chapter-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.lore-reading-pane {
  flex: 1;
  padding: 28px 32px;
  overflow-y: auto;
  text-align: left;
  background: radial-gradient(circle at 80% 20%, rgba(88, 28, 135, 0.15) 0%, transparent 60%), #080612;
  scrollbar-width: thin;
  scrollbar-color: #a855f7 #080612;
}

@media (max-width: 640px) {
  .lore-reading-pane {
    padding: 20px 16px;
  }
}

.lore-header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.lore-badge-tag {
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(249, 115, 22, 0.45);
  color: #fb923c;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lore-clearance-stamp {
  font-family: monospace;
  font-size: 0.75rem;
  color: #9ca3af;
  letter-spacing: 0.05em;
}

.lore-article-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.lore-article-subtitle {
  font-size: 0.95rem;
  color: #c084fc;
  margin-bottom: 22px;
  font-style: italic;
}

.lore-body-content {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #d1d5db;
}

.lore-body-content p {
  margin-bottom: 18px;
}

.lore-quote-box {
  margin: 20px 0;
  padding: 16px 20px;
  background: rgba(168, 85, 247, 0.08);
  border-left: 4px solid #a855f7;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #f3e8ff;
}

.lore-quote-author {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =========================================================
   DEV UPDATES / TRANSMISSIONS SECTION (WIDE LIST STYLE)
   ========================================================= */
.dev-updates-section {
  max-width: 1100px;
  margin: 50px auto 30px;
  padding: 0 20px;
  text-align: left;
  position: relative;
  z-index: 10;
}

.dev-updates-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.25);
  padding-bottom: 14px;
  flex-wrap: wrap;
  gap: 12px;
}

.dev-updates-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dev-updates-icon {
  font-size: 1.5rem;
}

.dev-updates-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 0 12px rgba(168, 85, 247, 0.4);
}

.dev-updates-count {
  background: rgba(88, 28, 135, 0.5);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #f3e8ff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dev-updates-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dev-update-card {
  background: rgba(14, 11, 26, 0.85);
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .dev-update-card {
    flex-direction: column;
    padding: 18px;
    gap: 16px;
  }
}

.dev-update-card:hover {
  border-color: #a855f7;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(168, 85, 247, 0.25), 0 0 15px rgba(249, 115, 22, 0.15);
}

.dev-update-main {
  flex: 1;
}

.dev-update-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.dev-update-date {
  font-size: 0.82rem;
  font-weight: 700;
  color: #a855f7;
  letter-spacing: 0.04em;
  font-family: monospace;
}

.dev-update-author {
  font-size: 0.8rem;
  color: #d1d5db;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 8px;
  border-radius: 6px;
}

.dev-update-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #fb923c;
  padding: 2px 8px;
  border-radius: 6px;
}

.dev-update-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.dev-update-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #9ca3af;
  margin: 0;
}

.dev-update-media {
  width: 220px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.3);
  background: #080611;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

@media (max-width: 768px) {
  .dev-update-media {
    width: 100%;
    max-height: 200px;
  }
}

.dev-update-media:hover {
  transform: scale(1.03);
  border-color: #f97316;
}

.dev-update-media img,
.dev-update-media video {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .dev-update-media img,
  .dev-update-media video {
    height: 180px;
  }
}

.dev-update-media-tag {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pp-logo {
  height: 22px;
  width: auto;
}
