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

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

body {
  margin: 0;
  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: 0 0 6px rgba(255, 255, 255, 0.35);
  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, .dv-pill, .act {
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

::-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-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 60px;
  height: 80px; 
  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: 0;
  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: 30px;
  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: 18px; letter-spacing: 0.2em; color: #fff; margin-bottom: 25px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 15px; text-transform: uppercase; }

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

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

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

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

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

.dv-cart-remove { font-size: 18px; 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: 14px; letter-spacing: 1px; color: #fff; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
#cart-subtotal { font-family: 'Gothica', sans-serif; font-size: 20px; }

/* HERO - Store / Hub Focus */
.dv-hero {
  min-height: 60vh; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  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: 30px;
}

.dv-hero-gif-container {
  width: 100%;
  max-width: 400px; /* Smaller as requested */
  margin-bottom: -10px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.dv-hero-gif {
  width: 100%;
  height: auto;
  border-radius: 40px;
  box-shadow: none; /* No background/shadow as requested */
  filter: contrast(1.1) brightness(1.1);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dv-hero-gif:hover {
  transform: scale(1.02);
  box-shadow: none; /* Removed hover background/shadow as requested */
}

.dv-hero-headline { 
  font-weight: 900; 
  font-size: clamp(24px, 5vw, 100px); 
  letter-spacing: 0.3em; 
  line-height: 1; 
  color: #fff; 
  margin-left: 0.3em; 
  white-space: nowrap; 
  animation: levitate-desktop 12s ease-in-out infinite;
  display: inline-block;
}

@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-desc { font-size: 18px; line-height: 1.5; color: #aaa; max-width: 600px; margin-bottom: 20px; }
.dv-hero-actions { display: flex; gap: 16px; margin-top: 20px; }

/* 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;
}

@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: #fff;
  letter-spacing: 0.1em;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.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);
}
.dv-card:hover {
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.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.sold-out .dv-card-ph { filter: grayscale(1) brightness(0.5); }
.dv-sold-out-badge { position: absolute; top: 20px; right: 20px; background: #000; color: #fff; font-size: 10px; font-weight: 900; padding: 5px 10px; border-radius: 4px; letter-spacing: 0.1em; z-index: 5; }



.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; animation: fade-in 0.4s ease; }
@keyframes fade-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* SHOP HEADER */
.dv-shop-header { padding: 80px 40px; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: flex-end; }
.dv-shop-title { font-weight: 900; font-size: 50px; color: #fff; letter-spacing: 0.05em; line-height: 1; margin-bottom: 8px; text-transform: uppercase;}
.dv-shop-sub { font-size: 16px; color: #aaa; }
.dv-shop-count { font-weight: 600; font-size: 14px; color: #666; text-transform: uppercase; }

.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);
}

/* PDP - Monolithic Artifact Display */
.dv-pdp-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  min-height: 100vh;
  background: #050505;
}

.dv-pdp-gallery-wrap {
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
}

.dv-breadcrumb-pdp {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #444;
  margin-bottom: 40px;
}
.dv-breadcrumb-pdp span { cursor: pointer; transition: color 0.3s; }
.dv-breadcrumb-pdp span:hover { color: #fff; }
.dv-breadcrumb-pdp em { margin: 0 15px; font-style: normal; color: #222; }

.dv-pdp-main-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(30,30,30,0.4) 0%, transparent 70%);
  position: relative;
  min-height: 500px;
}

.dv-pdp-image {
  max-width: 85%;
  max-height: 70vh;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.8));
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.dv-pdp-image:hover { transform: scale(1.05); }

.dv-pdp-thumbs-row {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}
.dv-thumb-item {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  background: #000;
  opacity: 0.4;
}
.dv-thumb-item:hover, .dv-thumb-item.act {
  opacity: 1;
  border-color: #fff;
  box-shadow: 0 0 15px rgba(255,255,255,0.2);
}
.dv-thumb-item img { width: 100%; height: 100%; object-fit: cover; }

/* Side Monolith */
.dv-pdp-side {
  border-left: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(to right, rgba(10,10,10,0.5), transparent);
  position: relative;
}

.dv-pdp-sticky {
  position: sticky;
  top: 80px;
  padding: 60px;
  height: calc(100vh - 80px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

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

.dv-pdp-name-large {
  font-family: 'Gothica', sans-serif;
  font-size: 56px;
  line-height: 0.9;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

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

.dv-pdp-lore {
  font-size: 16px;
  line-height: 1.6;
  color: #aaa;
  margin-bottom: 60px;
  padding: 30px;
  background: rgba(255,255,255,0.02);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
}
/* Hiding size charts and technical tables in the lore as requested */
.dv-pdp-lore table { display: none; }
.dv-pdp-lore img:not(:first-child) { display: none; } /* Often size charts are secondary images in the desc */

.dv-pdp-controls {
  margin-top: auto;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.dv-control-group label { display: none; } /* Hide 'SELECT VARIATION' */


.dv-pdp-options { display: none; } /* User requested to hide sizes */
.dv-opt-btn { display: none; }


.dv-control-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.dv-qty-stepper {
  display: flex;
  align-items: center;
  background: #111;
  border-radius: 12px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,0.1);
}
.dv-qty-stepper button {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.dv-qty-stepper span {
  width: 40px;
  text-align: center;
  font-weight: 800;
  font-size: 18px;
}

.dv-purchase-btn {
  flex: 1;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  color: #000;
  border: none;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
}
.dv-purchase-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.4);
}

.dv-checkout-fast {
  width: 100%;
  padding: 18px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.3s;
}
.dv-checkout-fast:hover {
  background: rgba(255,255,255,0.05);
  border-color: #fff;
}

.dv-pdp-footer-meta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dv-meta-item {
  font-size: 12px;
  line-height: 1.5;
  color: #555;
}
.dv-meta-item strong { color: #888; letter-spacing: 0.05em; margin-right: 5px; }

/* Fallback / Offline */
.dv-offline-msg {
  text-align: center;
  padding: 100px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #333;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .dv-pdp-container { grid-template-columns: 1fr; }
  .dv-pdp-side { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
  .dv-pdp-sticky { height: auto; position: static; padding: 40px; }
  .dv-pdp-image { max-height: 50vh; }
}

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

.dv-purchase-btn:disabled {
  background: #1a1a1a !important;
  color: #444 !important;
  border: 1px solid #333 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

