:root {
  /* Colorful theme custom variables */
  --dc-bg-gradient-start: #0f0c1b;
  --dc-bg-gradient-end: #1a102f;
  --dc-surface-card: #22153b;
  --dc-surface-alt: #160e28;
  
  --dc-color-badge: #ff007f;    /* neon magenta */
  --dc-color-accent: #00f0ff;   /* bright cyan */
  --dc-color-btn: #39ff14;      /* neon green contrast */
  
  --dc-text-primary: #ffffff;
  --dc-text-secondary: #c2b9d9;
  
  --dc-border-radius: 16px;     /* soft border radius */
  --dc-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7); /* deep shadows */
  
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

/* Base resets & styling */
body {
  font-family: var(--font-body);
  color: var(--dc-text-secondary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* Custom shell substituting standard containers */
.dc-shell {
  max-width: 1180px; /* Custom random width */
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Background ornament positioning */
.dc-background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

header, footer, main {
  position: relative;
  z-index: 10;
}

/* Oswald font implementation for headings */
.dc-caption-mega {
  font-family: var(--font-display);
  text-transform: uppercase;
}

/* Animated hover for neon green button */
.dc-action-anchor {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
}

.dc-action-anchor:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(57, 255, 20, 0.6);
  filter: brightness(1.1);
}

.dc-action-anchor:active {
  transform: translateY(1px);
}

/* Pull quote decorative enhancements */
.dc-editorial-quote {
  background-color: rgba(22, 14, 40, 0.6);
  border-radius: 0 var(--dc-border-radius) var(--dc-border-radius) 0;
}

/* Testimonials Masonry implementation */
.dc-opinion-masonry {
  column-count: 3;
  column-gap: 1.5rem;
}

.dc-opinion-tile {
  break-inside: avoid-column;
  display: inline-block;
  width: 100%;
  margin-bottom: 1.5rem;
}

/* Responsive constraints for masonry */
@media (max-width: 1023px) {
  .dc-opinion-masonry {
    column-count: 2;
  }
}

@media (max-width: 639px) {
  .dc-opinion-masonry {
    column-count: 1;
  }
}