/* ==========================================================================
   NUTRAPLANET STYLE: MAXIMALIST (REPAIRED)
   Scope: .np-scope.np-style-maximalist
   ========================================================================== */

/* --- SCOPED VARIABLES --- */
.np-scope.np-style-maximalist {
  /* Colors */
  --color-primary: #116F59;
  --color-primary-light: #18A078;
  --color-primary-neon: #1FD89A;
  --color-magenta-neon: #FF2E93;
  --color-blue-light: #18A0CC;
  --color-purple-light: #7818A0;
  
  /* Backgrounds */
  --color-bg-dark: #121212;
  --color-callout-bg: #0D2B36;
  --color-white: #FFFFFF;
  --color-cream: #F2F0E9;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue-light) 35%, var(--color-purple-light) 70%, var(--color-complement) 100%);
  --gradient-cta: linear-gradient(90deg, var(--color-primary) 0%, var(--color-blue-light) 25%, var(--color-purple-light) 50%, var(--color-complement) 75%, var(--color-primary) 100%);
  --gradient-text-rainbow: linear-gradient(90deg, var(--color-primary-neon) 0%, var(--color-blue-light) 50%, var(--color-magenta-neon) 100%);
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-blur: blur(20px);
  
  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Literata', 'Georgia', serif;

  /* Sizing */
  --font-size-base: 1.25rem;
  --radius-xl: 1.5rem; 
  --radius-2xl: 2.5rem;
} 

/* --- BASE RESET FOR SCOPE --- */
div.np-scope.np-style-maximalist {
  font-family: var(--font-body) !important;
  font-size: var(--font-size-base);
  line-height: 1.8;
  color: var(--color-cream) !important;
  background: radial-gradient(at 20% 30%, #0a3d32 0%, transparent 50%),
              radial-gradient(at 80% 70%, #2d0a3d 0%, transparent 50%),
              #121212;
  background-attachment: fixed;
  padding: 4rem 0;
  text-align: left;
}

/* Force Headings */
div.np-scope.np-style-maximalist h1, 
div.np-scope.np-style-maximalist h2, 
div.np-scope.np-style-maximalist h3, 
div.np-scope.np-style-maximalist h4, 
div.np-scope.np-style-maximalist h5, 
div.np-scope.np-style-maximalist h6 {
  font-family: var(--font-heading) !important;
  color: inherit;
  margin-top: 0;
}

/* Force Buttons */
div.np-scope.np-style-maximalist a,
div.np-scope.np-style-maximalist button {
  text-decoration: none !important;
  box-shadow: none; 
}

/* --- HERO SECTION --- */
.np-scope.np-style-maximalist .hero {
  position: relative;
  padding: 6rem 3rem;
  margin-bottom: 4rem;
  border-radius: var(--radius-2xl);
  background: var(--gradient-hero);
  background-size: 400% 400%;
  animation: npMaxGradientFlow 15s ease infinite;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  overflow: hidden;
}

.np-scope.np-style-maximalist .hero__title {
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  text-shadow: 
    0 0 30px rgba(31, 216, 154, 0.4),
    4px 4px 0px rgba(143, 41, 97, 0.8);
}

/* --- GLASS CARDS --- */
.np-scope.np-style-maximalist .glass-grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.np-scope.np-style-maximalist .glass-card {
  display: flex;
  flex-direction: column;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: transform 0.3s ease;
}

.np-scope.np-style-maximalist .glass-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-primary-neon);
}

/* --- CALLOUT CARDS --- */
.np-scope.np-style-maximalist .callout {
  background: var(--color-callout-bg);
  border-left: 8px solid var(--color-primary-neon);
  border-radius: var(--radius-xl);
  padding: 3rem;
  margin: 4rem 0;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.np-scope.np-style-maximalist .callout__title {
  color: var(--color-primary-neon);
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* --- READING BOX --- */
.np-scope.np-style-maximalist .reading-box {
  background: rgba(0, 0, 0, 0.4);
  padding: 3rem;
  border-radius: var(--radius-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.np-scope.np-style-maximalist .reading-box h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  color: var(--color-white);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid var(--color-primary-neon);
  display: inline-block;
}

.np-scope.np-style-maximalist .reading-box h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-primary-neon);
  margin-top: 2.5rem;
}

.np-scope.np-style-maximalist .reading-box p {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  opacity: 0.95;
}

/* --- ENHANCEMENTS --- */
.np-scope.np-style-maximalist ::selection {
  background: var(--color-primary-neon);
  color: #000;
}

.np-scope.np-style-maximalist img {
  border-radius: var(--radius-xl);
  transition: all 0.5s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.np-scope.np-style-maximalist img:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 0 25px rgba(31, 216, 154, 0.4);
}

.np-scope.np-style-maximalist blockquote {
  position: relative;
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--color-white);
  margin: 4rem 0;
  padding: 2rem 4rem;
  background: none;
  border: none;
  text-align: center;
}
.np-scope.np-style-maximalist blockquote::before {
  content: '“';
  font-family: serif;
  font-size: 10rem;
  color: var(--color-magenta-neon);
  opacity: 0.15;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.np-scope.np-style-maximalist::-webkit-scrollbar {
  width: 12px;
}
.np-scope.np-style-maximalist::-webkit-scrollbar-track {
  background: #000;
}
.np-scope.np-style-maximalist::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-primary), var(--color-magenta-neon));
  border-radius: 6px;
  border: 2px solid #000;
}

@keyframes npMaxGradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}