@font-face {
  font-family: 'Gothica';
  src: url('../fonts/Gothica-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  margin: 0;
  background-color: #0d0d0d !important; /* Base black to prevent white bars */
  background: linear-gradient(rgba(17, 17, 17, 0.9), rgba(10, 10, 10, 1));
  color: #fff;
  font-family: 'Gothica', sans-serif;
  font-weight: normal;
  min-height: 100vh;
  overflow-x: hidden;
  text-shadow: none;
  position: relative;
}

/* Global Darken Overlay - Fixes 'Expansion Gap' by being fixed to viewport */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85); /* Refined high-contrast overlay */
  z-index: 1;
  pointer-events: none;
}

/* Enhancing high-value typographic targets */
h1, h2, h3, a, button {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

::-webkit-scrollbar {
  width: 8px;
}

#spiral-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
}

::selection {
  background: #fff;
  color: #000;
}

.dv-banner {
  width: 100%;
  background: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 9999;
  position: relative;
}

.dv-root {
  position: relative;
  z-index: 2; /* Sits ABOVE the body::after overlay */
  min-height: 100vh;
  width: 100%;
  display: flow-root;
}

/* NAV */
.dv-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 70px; 
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  position: sticky;
  top: 0;
  background: linear-gradient(rgba(10, 10, 10, 0.98), rgba(5, 5, 5, 0.98)), 
              url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  backdrop-filter: blur(15px);
  z-index: 100;
  
  /* Carved Rock Depth & Glow */
  box-shadow: 
    0 5px 30px rgba(255, 255, 255, 0.08), 
    inset 0 -10px 20px rgba(0, 0, 0, 0.8),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.dv-logo-wrap { display: flex; align-items: center; }
.dv-logo-img { height: 28px; object-fit: contain; opacity: 1; transition: opacity 0.3s; filter: brightness(1.2); }
.dv-logo-wrap:hover .dv-logo-img { filter: brightness(1.5) drop-shadow(0 0 6px rgba(255,255,255,0.8)); }

.dv-nav-links { display: flex; gap: 30px; list-style: none; }
.dv-nav-links a { font-weight: 600; font-size: 14px; letter-spacing: 0.05em; color: #888; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: color 0.2s; }
.dv-nav-links a:hover, .dv-nav-links a.act { color: #fff; }

.dv-cart-btn { font-weight: 600; font-size: 14px; letter-spacing: 0.05em; color: #fff; text-transform: uppercase; cursor: pointer; background: transparent; border: none; display: flex; align-items: center; gap: 6px; padding: 10px; border-radius: 4px; transition: background 0.3s; }
.dv-cart-btn:hover { background: rgba(255, 255, 255, 0.05); }

.dv-cart-container { position: relative; }

.dv-cart-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  right: -20px;
  width: calc(100vw - 40px);
  max-width: 400px;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 255, 255, 0.05);
  padding: 25px;
  display: none;
  z-index: 1000;
  transform-origin: top right;
  animation: cart-reveal 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes cart-reveal {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.dv-cart-dropdown.act { display: block; }

.dv-cart-header { font-family: 'Gothica', sans-serif; font-size: 16px; letter-spacing: 0.2em; color: #fff; margin-bottom: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 15px; text-transform: uppercase; }

.dv-cart-list { max-height: 350px; overflow-y: auto; margin-bottom: 20px; padding-right: 5px; }

.dv-cart-item { display: grid; grid-template-columns: 70px 1fr auto; gap: 15px; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.dv-cart-item:last-child { border-bottom: none; }

.dv-cart-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.1); }

.dv-cart-info h4 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.dv-cart-info p { font-size: 10px; color: #666; text-transform: uppercase; letter-spacing: 1px; }

.dv-cart-ctrl { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.dv-cart-ctrl span { font-size: 13px; font-weight: 800; }
.dv-cart-ctrl button { background: none; border: none; color: #555; cursor: pointer; font-size: 16px; transition: color 0.2s; }
.dv-cart-ctrl button:hover { color: #fff; }

.dv-cart-remove { font-size: 16px; color: #333; cursor: pointer; transition: color 0.2s; background: none; border: none; }
.dv-cart-remove:hover { color: #fff; }

.dv-cart-subtotal { display: flex; justify-content: space-between; font-weight: 800; font-size: 13px; letter-spacing: 1px; color: #fff; margin-top: 15px; padding-top: 15px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
#cart-subtotal { font-family: 'Gothica', sans-serif; font-size: 18px; }

/* HERO - Store / Hub Focus */
.dv-hero {
  min-height: 80vh; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dv-hero-content {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px; /* Increased for breathing room */
}

.dv-hero-gif-container {
  width: 100%;
  max-width: 200px; 
  margin-bottom: 30px; /* Better separation */
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.dv-hero-gif {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: none; /* No background/shadow as requested */
  filter: contrast(1.1) brightness(1.1);
}

.dv-hero-headline { 
  font-weight: 900; 
  font-size: clamp(24px, 10vw, 80px); 
  letter-spacing: 0.25em; 
  line-height: 1.1; 
  color: #fff; 
  margin: 0 auto; 
  white-space: normal; 
  animation: levitate-desktop 12s ease-in-out infinite;
  display: inline-block;
}

.dv-hero-sub {
  font-size: 14px;
  font-weight: 600;
  color: #888;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 15px;
  max-width: 90%;
}

.dv-hero-sigil {
  font-style: italic;
  color: #555;
  font-size: 13px;
  max-width: 90%;
  line-height: 1.7;
  margin-top: 20px;
}

@keyframes levitate-desktop {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  25% { transform: translate(3px, -4px) scale(1.02) rotate(0.5deg); }
  50% { transform: translate(-2px, 3px) scale(0.98) rotate(-0.5deg); }
  75% { transform: translate(-3px, -2px) scale(1.01) rotate(0.2deg); }
  100% { transform: translate(0, 0) scale(1) rotate(0deg); }
}

.dv-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.dv-tag-pill {
  background: #222;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 10px 18px;
  border-radius: 6px;
  text-transform: uppercase;
}

.dv-hero-actions { 
  display: flex; 
  flex-direction: column; 
  gap: 25px; /* More space between buttons */
  margin-top: 50px; 
  position: relative; 
  z-index: 999; 
}
.dv-hero-actions .dv-btn {
  background: rgba(5, 5, 5, 0.95) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  padding: 18px 32px !important;
  font-size: 14px !important;
  letter-spacing: 0.12em !important;
  text-shadow: 0 0 10px #fff, 0 0 15px rgba(255, 255, 255, 0.2) !important;
  transition: all 0.4s ease !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9) !important;
  width: 100%;
  text-align: center;
}
.dv-hero-actions .dv-btn:hover {
  background: #000 !important;
  border-color: #fff !important;
  text-shadow: 0 0 12px #fff, 0 0 25px #fff !important;
}

/* BUTTONS - Carved Stone Tiles */
.dv-btn { 
  padding: 16px 32px; 
  font-weight: 800; 
  font-size: 14px; 
  letter-spacing: 0.1em; 
  text-transform: uppercase; 
  cursor: pointer; 
  border-radius: 20px; 
  border: 1px solid rgba(255,255,255,0.2); 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
  text-decoration: none; 
  display: inline-block;
  background: linear-gradient(rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.9));
  box-shadow: 0 4px 15px rgba(0,0,0,0.4), inset 0 0 10px rgba(255,255,255,0.05);
}
.dv-btn-primary { 
  background: #fff; 
  color: #000; 
  border-color: #fff;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}
.dv-btn-primary:hover { 
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255,255,255,0.4);
}
.dv-btn-outline { 
  color: #fff; 
}
.dv-btn-outline:hover { 
  background: rgba(255,255,255,0.05);
  border-color: #fff;
  box-shadow: 0 0 20px rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* COMMUNITY VIEW - Literal Copy of Succubus Seraphim adapted for B&W */
.dv-comm-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 0; /* Zero bottom padding to eliminate 'ghost' gap */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dv-join-btn {
  padding: 20px 60px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  font-family: 'Gothica', sans-serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 60px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 20;
}
.dv-join-btn:hover {
  border-color: #fff;
  box-shadow: 0 0 30px rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}

.dv-server-card {
  background: linear-gradient(rgba(10, 10, 10, 0.98), rgba(5, 5, 5, 0.98)), 
              url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  padding: 80px 60px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(15px);
  position: relative;
  
  /* Rounded Carved Rock Shape */
  border-radius: 80px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  
  /* Complex Shadowing for Carved Glow Effect */
  box-shadow: 
    0 0 40px rgba(255, 255, 255, 0.1), /* Outer Glow */
    inset 0 0 30px rgba(255, 255, 255, 0.05), /* Inner Depth */
    inset 0 0 15px rgba(0, 0, 0, 0.8); /* Carved darkness */
  
  animation: carved-aura 5s infinite alternate ease-in-out;
  overflow: visible;
}

@keyframes carved-aura {
  0% { 
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.08), inset 0 0 20px rgba(255, 255, 255, 0.03), inset 0 0 15px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
  }
  100% { 
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.18), inset 0 0 40px rgba(255, 255, 255, 0.07), inset 0 0 15px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.25);
  }
}

@keyframes card-aura {
  0% { box-shadow: 0 0 40px rgba(255,255,255,0.05), inset 0 0 10px rgba(255,255,255,0.02); }
  100% { box-shadow: 0 0 80px rgba(255,255,255,0.15), inset 0 0 30px rgba(255,255,255,0.06); }
}

.dv-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden; /* Contains drifting particles within the card bounds */
  z-index: 5;
}
.dv-particles span {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 12px 2px rgba(255,255,255,0.8);
  animation: micro-drift infinite ease-in-out;
  opacity: 0;
  will-change: transform, opacity;
}

#name-particles span {
  background: #b80000 !important;
  box-shadow: 0 0 10px 2px rgba(184, 0, 0, 0.8) !important;
}

@keyframes micro-drift {
  0% { transform: translate(0, 0) scale(0.2); opacity: 0; }
  30% { opacity: 0.8; }
  70% { opacity: 0.8; }
  100% { transform: translate(var(--dx), var(--dy)) scale(1.2); opacity: 0; }
}

.dv-server-img-container {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: 24px;
}

.dv-server-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 30px rgba(255,255,255,0.15); /* Ghostly white glow instead of neon pink */
}

.dv-tag-new {
  position: absolute;
  top: -12px;
  left: -16px;
  background: #fff; /* White instead of yellow for B&W */
  color: #000;
  font-weight: 900;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  transform: rotate(-6deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  z-index: 2;
}

.dv-tag-nsfw {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  border: 1px solid #444;
  font-weight: 800;
  font-size: 11px;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  z-index: 2;
}

.dv-server-title {
  font-family: 'Gothica', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  text-shadow: 0 0 15px rgba(255,255,255,0.4);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.dv-server-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.dv-server-tags span {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  color: #aaa;
  letter-spacing: 0.1em;
}

.dv-server-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #aaa;
  max-width: 650px;
  margin-bottom: 40px;
}

.dv-server-desc em {
  font-style: italic;
  color: #ddd;
}

/* --- ARTIST CARD: REMOTE_CONTROLLED (Consistent with Site Theme) --- */
.dv-artist-card {
  background: linear-gradient(rgba(10, 10, 10, 0.98), rgba(5, 5, 5, 0.98)), 
              url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  padding: 80px 60px 80px; /* Increased bottom padding to better frame the curved base */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(15px);
  position: relative;
  
  /* Matches Discord Card Roundness */
  border-radius: 80px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  
  /* Transitioned from neon pink to silver/purple glow */
  box-shadow: 
    0 0 40px rgba(180, 120, 255, 0.08), /* Subtle Purple Tint */
    inset 0 0 30px rgba(255, 255, 255, 0.03),
    inset 0 0 15px rgba(0, 0, 0, 0.8);
  
  animation: artist-carved-aura 5s infinite alternate ease-in-out;
}

@keyframes artist-carved-aura {
  0% { 
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.08), inset 0 0 20px rgba(255, 255, 255, 0.03), inset 0 0 15px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
  }
  100% { 
    box-shadow: 0 0 60px rgba(200, 100, 255, 0.15), inset 0 0 40px rgba(255, 255, 255, 0.06), inset 0 0 15px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
  }
}

.dv-artist-avatar-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 30px;
}

.dv-artist-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 30px rgba(200, 100, 255, 0.2);
  padding: 4px;
  background: rgba(0, 0, 0, 0.8);
}

.dv-artist-name {
  font-family: 'Gothica', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #b80000 !important;
  letter-spacing: 0.1em;
  text-shadow: 0 0 20px rgba(184, 0, 0, 0.4);
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
  z-index: 10;
}

.dv-artist-tagline {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #888; /* More sterile, consistent with site secondary text */
  text-transform: uppercase;
  margin-bottom: 35px;
}

.dv-artist-bio {
  font-size: 17px;
  line-height: 1.8;
  color: #aaa;
  max-width: 600px;
  margin-bottom: 40px;
}

.dv-portfolio-header {
  font-family: 'Gothica', sans-serif;
  font-size: 32px;
  color: #fff;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  text-shadow: 0 0 15px rgba(255,255,255,0.4);
}

.dv-portfolio-wrapper {
  width: 100%;
  position: relative;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.dv-portfolio-wrapper.collapsed {
  max-height: 800px; /* Roughly 2 rows of large images */
  overflow: hidden;
}

.dv-portfolio-wrapper.collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to top, rgba(10, 10, 10, 1), transparent);
  pointer-events: none;
}

.dv-portfolio-expand {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s;
}

.dv-portfolio-expand:hover {
  transform: translateX(-50%) translateY(-5px);
}

.dv-portfolio-expand svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

.dv-portfolio-expand span {
  font-size: 11px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 800;
  margin-top: 10px;
  opacity: 0.8;
}

.dv-portfolio-wrapper:not(.collapsed) .dv-portfolio-expand {
  display: none;
}

.dv-portfolio-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row, very big */
  gap: 40px;
  margin-top: 40px;
  padding-bottom: 20px; /* Reduced from 80px to fix the gap */
}

.dv-portfolio-item {
  width: 100%;
  aspect-ratio: 1/1.2;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.dv-portfolio-item:hover {
  transform: translateY(-20px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 40px 80px rgba(0,0,0,1);
  z-index: 10;
}

.dv-portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: grayscale(0.2) contrast(1.1); /* Subtle artistic filtering */
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.dv-portfolio-item:hover img {
  opacity: 1;
  filter: grayscale(0) contrast(1.2) scale(1.05); /* Interactive pop */
}

.m-portfolio-wrapper {
  width: 100%;
  position: relative;
  transition: all 0.6s ease;
}

.m-portfolio-wrapper.collapsed {
  max-height: 600px; /* 1.5 images roughly */
  overflow: hidden;
}

.m-portfolio-wrapper.collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, rgba(15, 15, 15, 1), transparent);
  pointer-events: none;
}

.m-portfolio-expand {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 20;
}

.m-portfolio-expand svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #fff;
  stroke-width: 3;
}

.m-portfolio-wrapper:not(.collapsed) .m-portfolio-expand {
  display: none;
}

.m-portfolio-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 20px;
}

.m-portfolio-item {
  width: 100%;
  aspect-ratio: 1/1.2;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.m-portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dv-portfolio-info {
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  margin-top: 20px;
}

.dv-portfolio-count {
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(255,255,255,0.4);
}

.dv-portfolio-hint {
  font-size: 11px;
  color: #333;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dv-artist-contact {
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  margin-bottom: 40px;
  opacity: 0.8;
}

.dv-artist-contact span {
  color: #ffbbf1;
  margin-left: 10px;
}

/* SECTION & GRID */
.dv-section { padding: 80px 40px; }
.dv-section-header { 
  display: flex; 
  justify-content: space-between; 
  align-items: flex-end; 
  margin-bottom: 40px; 
  border-bottom: 2px solid rgba(255,255,255,0.1); 
  padding-bottom: 20px;
}
.dv-section-title { 
  font-weight: 800; 
  font-size: 28px; 
  letter-spacing: 0.1em; 
  color: #fff; 
  text-transform: uppercase; 
  text-shadow: 0 0 15px rgba(255,255,255,0.2);
}
.dv-section-link { font-weight: 600; font-size: 14px; letter-spacing: 0.05em; color: #888; text-transform: uppercase; cursor: pointer; transition: color 0.2s; }
.dv-section-link:hover { color: #fff; }

.dv-grid, .dv-shop-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 30px; 
  padding: 20px 0;
}
.dv-shop-grid { margin: 40px; width: calc(100% - 80px); }

/* CARDS - Carved Stone Tablets */
.dv-card { 
  background: linear-gradient(rgba(20, 20, 20, 0.98), rgba(10, 10, 10, 0.98)),
              url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  cursor: pointer; 
  border: 1px solid rgba(255,255,255,0.1); 
  border-radius: 40px;
  position: relative; 
  overflow: hidden; 
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.03);
  text-decoration: none !important;
  color: inherit !important;
}
.dv-card:hover {
  border-color: rgba(255,255,255,0.4);
}
.dv-card-img { 
  aspect-ratio: 1; 
  background: #000; 
  position: relative; 
  border-bottom: 1px solid rgba(255,255,255,0.1); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}
.dv-card-ph { width: 45%; opacity: 0.8; pointer-events: none; transition: all 0.4s ease; filter: brightness(1.1); }
.dv-card:hover .dv-card-ph { opacity: 1; }



.dv-card-body { padding: 30px 25px; text-align: center; }
.dv-card-cat { font-weight: 800; font-size: 11px; letter-spacing: 0.15em; color: #555; text-transform: uppercase; margin-bottom: 10px; }
.dv-card-name { font-weight: 600; font-size: 20px; color: #fff; margin-bottom: 15px; line-height: 1.2; font-family: 'Gothica', sans-serif; }
.dv-card-footer { display: flex; justify-content: center; align-items: center; }
.dv-card-price { font-weight: 800; font-size: 18px; color: #fff; opacity: 0.9; }

/* VIEWS */
.dv-view { display: none; }
.dv-view.active { display: block; }
.dv-view.animate-in { animation: fade-in 0.4s ease; }
@keyframes fade-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.dv-shop-count { font-weight: 600; font-size: 12px; color: #555; text-transform: uppercase; }
.dv-search-box {
  width: 140px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0 12px;
  transition: width 0.3s;
}
.dv-search-box:focus-within {
  width: 180px;
  border-color: rgba(255, 255, 255, 0.3);
}
.dv-search-box input {
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 0;
  width: 100%;
  font-family: 'Gothica', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  outline: none;
}
.dv-search-box input::placeholder {
  color: #333;
}

.dv-filter-bar { display: flex; gap: 12px; align-items: center; padding: 20px 40px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.dv-pill { 
  padding: 10px 24px; 
  border-radius: 20px; 
  background: rgba(30, 30, 30, 0.5); 
  font-weight: 800; 
  font-size: 13px; 
  letter-spacing: 0.1em; 
  color: #888; 
  cursor: pointer; 
  transition: all 0.3s; 
  border: 1px solid rgba(255,255,255,0.1); 
  text-transform: uppercase;
  font-family: 'Gothica', sans-serif;
}
.dv-pill:hover, .dv-pill.act { 
  background: #fff; 
  color: #000; 
  border-color: #fff;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* MOBILE PDP: Monolithic Artifact Display */
.dv-pdp-m-container {
  background: #050505;
  display: flex;
  flex-direction: column;
}

.dv-pdp-m-hero {
  padding: 30px 20px;
  background: radial-gradient(circle at center, rgba(30,30,30,0.3) 0%, transparent 80%);
}

.dv-breadcrumb-m {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #444;
  margin-bottom: 30px;
}
.dv-breadcrumb-m a { color: inherit; text-decoration: none; }
.dv-breadcrumb-m em { margin: 0 10px; font-style: normal; color: #222; }

.dv-pdp-m-img-box {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.dv-pdp-m-image {
  max-width: 90%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 40px rgba(0,0,0,0.8));
}

.dv-pdp-m-thumbs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}
.dv-pdp-m-thumb {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #000;
  opacity: 0.4;
  overflow: hidden;
}
.dv-pdp-m-thumb.act { opacity: 1; border-color: #fff; box-shadow: 0 0 10px rgba(255,255,255,0.2); }
.dv-pdp-m-thumb img { width: 100%; height: 100%; object-fit: cover; }

.dv-pdp-m-info {
  padding: 40px 25px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.9), #050505);
  border-top: 1px solid rgba(255,255,255,0.05);
  flex: 1;
}

.dv-pdp-m-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dv-pdp-m-status { font-size: 9px; font-weight: 900; background: #222; color: #fff; padding: 4px 10px; border-radius: 4px; }
.dv-pdp-m-cat { font-size: 10px; font-weight: 800; letter-spacing: 0.3em; color: #666; }

.dv-pdp-m-name {
  font-family: 'Gothica', sans-serif;
  font-size: 40px;
  line-height: 0.95;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.dv-pdp-m-price-hero {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 35px;
}
.dv-pdp-m-price-hero span:first-child { font-size: 32px; font-weight: 800; color: #fff; }
.dv-pdp-m-edition { font-size: 11px; font-weight: 900; color: #444; letter-spacing: 0.1em; }

.dv-pdp-m-lore-header {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.3em;
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 8px;
}

.dv-pdp-m-lore {
  font-size: 13px;
  line-height: 1.8;
  color: #bbb;
  margin-bottom: 40px;
  padding: 0;
  background: transparent;
  border: none;
  width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
}
.dv-pdp-m-lore > *:first-child { margin-top: 0; }
.dv-pdp-m-lore *:last-child { margin-bottom: 0 !important; }

/* Show size charts and images in the lore */
.dv-pdp-m-lore table { display: table; }
.dv-pdp-m-lore img:not(:first-child) { display: block; }
.dv-pdp-m-options { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 25px; }
.dv-m-opt-btn {
  padding: 10px 18px;
  border-radius: 8px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  color: #888;
  font-weight: 800;
  font-size: 13px;
}
.dv-m-opt-btn.act { background: #fff; color: #000; border-color: #fff; box-shadow: none; }

.dv-m-control-row { display: flex; gap: 12px; margin-bottom: 12px; }
.dv-m-qty {
  display: flex;
  align-items: center;
  background: #111;
  border-radius: 8px;
  padding: 0 8px;
  border: 1px solid rgba(255,255,255,0.1);
}
.dv-m-qty button { width: 36px; height: 48px; background: transparent; border: none; color: #fff; font-size: 18px; }
.dv-m-qty span { width: 30px; text-align: center; font-weight: 800; color: #fff; }

.dv-m-add-btn {
  flex: 1;
  height: 48px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  border: none;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.dv-m-checkout-fast {
  width: 100%;
  height: 44px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.2em;
  margin-top: 5px;
}

.dv-pdp-m-controls {
  margin-top: 10px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}



.dv-pdp-m-lore ul {
  list-style-type: disc !important;
  padding-left: 20px !important;
  margin: 10px 0 !important;
}
.dv-pdp-m-lore li {
  display: list-item !important;
  margin-bottom: 8px !important;
  line-height: 1.5 !important;
  color: #ccc !important;
}

/* Sharp Table Styling for Mobile Sizing Charts */
.dv-pdp-m-lore table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 15px 0;
  font-family: -apple-system, system-ui, sans-serif !important;
  font-size: 11px !important;
  text-shadow: none !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #000 !important;
}

.dv-pdp-m-lore th, .dv-pdp-m-lore td {
  padding: 10px 8px !important;
  text-align: center !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
}

.dv-pdp-m-lore th {
  background: rgba(255, 255, 255, 0.1) !important;
  font-weight: 900 !important;
}

.dv-pdp-m-lore td:first-child, .dv-pdp-m-lore th:first-child {
  text-align: left !important;
  background: rgba(255, 255, 255, 0.05) !important;
  font-weight: 800 !important;
}

.dv-pdp-m-lore img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 10px 0;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
}

.dv-pdp-m-footer {
  font-size: 11px;
  color: #444;
  line-height: 1.6;
}
.dv-pdp-m-footer strong { color: #666; margin-right: 5px; }

/* --- MOBILE RESPONSIVE OVERRIDES --- */
@media (max-width: 768px) {
  * { -webkit-tap-highlight-color: transparent; }
  
  .dv-nav { 
    padding: 0 15px; 
    height: 70px;
    background: #000 !important; /* Pure black for maximum contrast */
  }
  .dv-nav-links { gap: 15px; }
  .dv-nav-links a { 
    font-size: 13px !important; 
    letter-spacing: 0.08em !important; 
    color: #bbb !important; /* Lighter grey for inactive */
    text-shadow: none !important; /* Remove blurring glow */
  }
  .dv-nav-links a.act {
    color: #fff !important; /* Pure white for active */
    text-shadow: 0 0 10px rgba(255,255,255,0.4) !important; /* Subtle glow only for active */
  }
  .dv-cart-btn {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
  }
  .dv-cart-icon {
    width: 20px !important;
    height: 20px !important;
    color: #fff !important;
    opacity: 0.9 !important;
  }
  .dv-cart-count {
    position: absolute !important;
    top: -4px !important;
    right: -4px !important;
    background: #fff !important;
    color: #000 !important;
    font-size: 9px !important;
    font-weight: 900 !important;
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 0 10px rgba(255,255,255,0.4) !important;
  }
  .dv-logo-img { height: 22px; }

  .dv-hero { padding: 60px 20px; min-height: 40vh; }
  .dv-hero-headline { 
    font-size: 32px !important; 
    letter-spacing: 0.1em !important; 
    white-space: normal !important;
    line-height: 1.2 !important;
    margin-left: 0 !important;
    display: block !important;
  }
  .dv-hero-sub { font-size: 14px !important; }
  .dv-hero-actions { flex-direction: column; width: 100%; gap: 12px; }
  
  /* Solving the 'grey on grey' issue with high-contrast carved buttons */
  .dv-btn-primary, .dv-btn-outline {
    background: #050505 !important;
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05), inset 0 0 5px rgba(255, 255, 255, 0.02) !important;
    text-shadow: none !important;
    width: 100% !important;
    text-align: center !important;
    padding: 16px 20px !important;
    font-size: 12px !important;
    border-radius: 12px !important;
  }
  
  /* Horizontal Filter Bar with wrapping for full visibility */
  .dv-filter-bar {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    padding: 15px !important;
    gap: 8px !important;
  }
  
  .dv-btn-primary:active, .dv-btn-outline:active {
    background: #111 !important;
    border-color: #fff !important;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.25) !important;
  }

  .dv-section { padding: 40px 20px; }
  .dv-section-title { font-size: 20px; }
  .dv-grid, .dv-shop-grid { 
    grid-template-columns: 1fr !important; 
    gap: 20px !important; 
  }
  .dv-shop-grid { margin: 20px; width: calc(100% - 40px); }

  .dv-comm-wrapper { padding: 20px 15px; }
  .dv-server-card, .dv-artist-card { 
    padding: 60px 25px; 
    border-radius: 40px; 
  }
  .dv-server-title, .dv-artist-name { font-size: 32px !important; }
  .dv-server-tags span { padding: 6px 12px; font-size: 9px; }
  .dv-server-desc, .dv-artist-bio { font-size: 14px; line-height: 1.6; }
  
  .dv-artist-avatar-wrap { width: 120px; height: 120px; }
  .dv-portfolio-grid { 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 15px !important; 
  }
  .dv-portfolio-item { border-radius: 20px; border-width: 0.5px; }

  .dv-pdp { grid-template-columns: 1fr !important; padding: 20px; gap: 30px; }
  .dv-pdp-main { border-radius: 30px; padding: 40px 0; }
  .dv-pdp-name { font-size: 36px !important; }
  .dv-pdp-price { font-size: 24px !important; }
  .dv-pdp-thumbs { flex-wrap: wrap; }
  .dv-add-row { grid-template-columns: 1fr !important; }
  
  /* Resetting potential overflows */
  .dv-root { overflow-x: hidden !important; }
}

/* --- FINAL VISIBILITY & CONTAINMENT REFINEMENT --- */
@media (max-width: 768px) {
  /* Prevent massive names from falling out of the card */
  .dv-artist-name, .dv-server-title {
    font-size: 22px !important;
    letter-spacing: 0.1em !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    hyphens: auto !important;
    max-width: 100% !important;
    margin: 0 auto 15px !important;
    padding: 0 10px !important;
    display: block !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.3) !important;
  }

  /* Clear up 'blurry' or 'grey on grey' text */
  .dv-artist-tagline, .dv-artist-bio, .dv-server-desc, .dv-artist-contact, .dv-size-label, .dv-qty-val {
    text-shadow: none !important;
    color: #fff !important; 
    opacity: 1 !important;
    font-weight: 700 !important;
  }

  .dv-artist-bio, .dv-server-desc {
    color: #ddd !important;
    text-shadow: none !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    padding: 0 10px !important;
  }
  
  .dv-pdp-cat, .dv-edition-tag {
    color: #fff !important;
    background: rgba(255,255,255,0.1) !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    text-shadow: none !important;
  }

  /* Increase card contrast background */
  .dv-artist-card, .dv-server-card {
    background: #000 !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    box-shadow: 0 0 40px rgba(0,0,0,1), inset 0 0 20px rgba(255,255,255,0.05) !important;
  }
}

/* --- MOBILE SHARPNESS & LAYOUT RECOVERY --- */
@media (max-width: 768px) {
  /* Sharp UI: Eliminate almost all blurry glows which are unreadable on small viewports */
  *, h1, h2, h3, a, button, span, .dv-pill, .act, .dv-shop-title, .dv-hero-headline, .dv-artist-name, .dv-server-title {
    text-shadow: none !important;
  }

  /* Fix 'hanging text' (Product Count) in Storefront Header */
  .dv-shop-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 30px 20px 10px !important;
    gap: 8px !important;
  }
  .dv-shop-count {
    font-size: 11px !important;
    color: #fff !important; /* Brighter for visibility */
    background: rgba(255,255,255,0.05) !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
    border: 0.5px solid rgba(255,255,255,0.2) !important;
    width: fit-content !important;
  }

  /* Sharp Pill Navigation (Category Buttons) */
  .dv-pill {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: #fff !important;
    font-weight: 800 !important;
    text-shadow: none !important;
    padding: 8px 16px !important;
    transition: all 0.2s !important;
  }
  .dv-pill.act {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
  }
}

.dv-sold-out-badge { 
  position: absolute; 
  top: 15px; 
  right: 15px; 
  background: #fff; 
  color: #000; 
  font-size: 9px; 
  font-weight: 900; 
  padding: 4px 10px; 
  border-radius: 4px; 
  letter-spacing: 0.1em; 
  z-index: 5; 
  box-shadow: 0 0 10px rgba(255,255,255,0.3); 
}
.dv-card.sold-out { opacity: 0.7; }
.dv-card.sold-out .dv-card-ph { filter: grayscale(1) brightness(0.6); }

.dv-m-add-btn:disabled {
  background: #1a1a1a !important;
  color: #444 !important;
  border: 1px solid #333 !important;
  pointer-events: none !important;
}

/* Dev Modal */
.dv-modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.95); backdrop-filter: blur(20px);
  z-index: 10000; display: none; align-items: center; justify-content: center;
  padding: 15px;
}
.dv-modal-overlay.active { display: flex; animation: fadeIn 0.3s ease; }

.dv-modal-card {
  background: #050505; border: 1px solid rgba(255,255,255,0.1);
  padding: 50px 25px; border-radius: 30px; max-width: 90%; width: 100%;
  text-align: center; position: relative;
}

.dv-modal-close {
  position: absolute; top: 15px; right: 15px;
  background: transparent; border: none; color: #444;
  font-size: 28px; cursor: pointer;
}

.dv-dev-avatar { width: 140px; height: 140px; margin: 0 auto 20px; }
.dv-dev-avatar img { width: 100%; height: 100%; border-radius: 50%; border: 2px solid #811; box-shadow: 0 0 30px rgba(128,0,0,0.4); object-fit: cover; }

.dv-dev-name { font-family: 'Gothica', sans-serif; font-size: 32px; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; margin-bottom: 15px; }
.dv-dev-title { font-weight: 700; font-size: 10px; letter-spacing: 0.1em; color: #c90; margin-bottom: 25px; text-transform: uppercase; }
.dv-dev-bio { color: #aaa; line-height: 1.5; font-size: 14px; margin-bottom: 30px; }
.dv-dev-contact { font-size: 13px; color: #666; }
.dv-dev-contact span { color: #fff; font-weight: 700; }

.dv-dev-link {
  display: block; margin: 40px auto 10px;
  font-size: 8px; color: #555; text-decoration: none;
  letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: color 0.3s;
}
.dv-dev-link:hover { color: #888; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* REDESIGNED LIGHTBOX SYSTEM */
.dv-lightbox {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.99); backdrop-filter: blur(30px);
  z-index: 20000; display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
  user-select: none;
}
.dv-lightbox.active { display: flex; opacity: 1; }

.dv-lightbox-content {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}

.dv-lightbox-img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: center center;
}

.dv-lightbox-img.zoomed {
  transform: scale(4); 
}

.dv-lightbox-img.dragging {
  transition: none;
}

.dv-lightbox-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(0,0,0,0.5); border: none; color: #fff; 
  font-size: 40px; width: 50px; height: 50px; border-radius: 50%;
  cursor: pointer; line-height: 50px; text-align: center;
  z-index: 20001;
}
.dv-view {
  min-height: 100vh;
  margin-bottom: 120px; /* Stronger separation between distinct views or scrolls */
}

/* ARTIST CARD - Mobile Archive */
.dv-artist-card {
  margin: 40px auto; /* More vertical space */
  padding: 60px 20px; /* More internal space */
}

/* ORACLE - Mobile */
.dv-oracle-section {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #000, #0a0a0a);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.05);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}
.dv-oracle-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 10;
}
.dv-oracle-header {
  font-family: 'Cinzel Decorative', serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
  text-align: center;
  text-transform: uppercase;
}
.void-sphere-wrap {
  width: 220px;
  height: 220px;
  margin: 30px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.dv-particles {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}

.dv-triangle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

.dv-triangle {
  width: 80px;
  height: 70px;
  background: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dv-triangle-inner {
  width: 72px;
  height: 62px;
  background: #000;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: absolute;
  top: 5px;
  transition: background 0.3s ease;
}

.void-sphere-wrap:active .dv-triangle-wrapper {
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
  transform: scale(1.1);
}

@keyframes triangle-shake-mobile {
  0%, 100% { transform: scale(1.05) translate(0); filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8)); }
  25% { transform: scale(1.1) translate(-3px, 3px) rotate(-3deg); filter: drop-shadow(0 0 50px rgba(255, 255, 255, 1)); }
  75% { transform: scale(1.1) translate(3px, -3px) rotate(3deg); filter: drop-shadow(0 0 50px rgba(255, 255, 255, 1)); }
}

.dv-triangle-wrapper.shaking {
  animation: triangle-shake-mobile 0.1s infinite;
}

.dv-triangle-wrapper.shaking .dv-triangle {
  background: #fff;
}
.dv-triangle-wrapper.shaking .dv-triangle-inner {
  background: #fff;
}

.response-box {
  min-height: 120px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.response-text {
  font-size: 17px;
  line-height: 1.5;
  padding: 0 10px;
  max-width: 90%;
  font-weight: 100;
  letter-spacing: 1px;
  color: #999;
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transform: translateY(20px);
  font-style: italic;
}
.response-text.active {
  opacity: 1;
  transform: translateY(0);
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}
.response-meta {
  font-size: 9px;
  letter-spacing: 2px;
  color: #333;
  margin-top: 20px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 1s;
}
.response-meta.active {
  opacity: 1;
}

