/* Dhammapada Stories (法句经故事集) - Modern Sacred Buddhist Styling */

:root {
  --dp-gold-primary: #d4af37;
  --dp-gold-light: #f3e5ab;
  --dp-gold-dark: #aa820a;
  --dp-gold-glow: rgba(212, 175, 55, 0.35);
  --dp-navy-deep: #0c1829;
  --dp-navy-card: #152238;
  --dp-navy-surface: #1e304d;
  --dp-navy-border: rgba(212, 175, 55, 0.25);
  --dp-text-primary: #2d3748;
  --dp-text-muted: #718096;
  --dp-bg-warm: #faf8f5;
  --dp-bg-card: #ffffff;
}

/* ==========================================================================
   Homepage Feature Section: Dhammapada Story Spotlight ("Bling Bling" Entrance)
   ========================================================================== */
.dp-home-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f7f5f0 0%, #edf2f7 100%);
  position: relative;
  overflow: hidden;
}

.dp-home-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0) 70%);
  pointer-events: none;
}

.dp-home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.dp-feature-banner {
  background: linear-gradient(135deg, #0e1a2f 0%, #172a46 50%, #0d1728 100%);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 16px 40px rgba(12, 24, 41, 0.25), 0 0 30px rgba(212, 175, 55, 0.15);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dp-feature-banner:hover {
  box-shadow: 0 20px 50px rgba(12, 24, 41, 0.35), 0 0 45px rgba(212, 175, 55, 0.25);
}

/* Animated Golden Shimmer Bar */
.dp-feature-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 235, 160, 0.12), transparent);
  transform: skewX(-25deg);
  animation: dpShimmer 6s infinite ease-in-out;
  pointer-events: none;
}

@keyframes dpShimmer {
  0% { left: -150%; }
  35% { left: 150%; }
  100% { left: 150%; }
}

.dp-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 6px 14px;
  border-radius: 30px;
  color: #f3e5ab;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.dp-feature-badge i {
  color: #ffd700;
  animation: dpRotate 12s linear infinite;
}

@keyframes dpRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.dp-feature-title {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.dp-feature-title span {
  background: linear-gradient(135deg, #ffd700 0%, #fff0b3 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dp-feature-desc {
  color: #cbd5e0;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.dp-verse-preview-box {
  background: rgba(12, 24, 41, 0.6);
  border-left: 3px solid #d4af37;
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 28px;
}

.dp-verse-pali-short {
  color: #f3e5ab;
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.dp-verse-zh-short {
  color: #e2e8f0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.dp-feature-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.dp-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #d4af37 0%, #b8911e 100%);
  color: #0c1829 !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

.dp-btn-gold:hover {
  background: linear-gradient(135deg, #f5d77f 0%, #d4af37 100%);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.6);
  transform: translateY(-2px);
  color: #0c1829 !important;
}

.dp-audio-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 18px;
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
}

.dp-audio-pill i {
  color: #ffd700;
}

/* Feature Image Preview on Homepage */
.dp-feature-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dp-art-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.3);
  border: 2px solid rgba(212, 175, 55, 0.6);
  background: #000;
  max-width: 320px;
  transition: transform 0.4s ease;
}

.dp-feature-banner:hover .dp-art-frame {
  transform: scale(1.03) rotate(0.5deg);
}

.dp-art-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.dp-art-frame-tag {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(12, 24, 41, 0.88);
  border: 1px solid #d4af37;
  padding: 4px 14px;
  border-radius: 20px;
  color: #f3e5ab;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ==========================================================================
   Dhammapada Stories Index Page (/dhammapada-stories)
   ========================================================================== */
.dp-index-hero {
  background: linear-gradient(135deg, #0f1d33 0%, #1e3354 100%);
  color: #ffffff;
  padding: 70px 0 50px;
  text-align: center;
  position: relative;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.dp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid #d4af37;
  color: #f3e5ab;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.dp-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.dp-hero-title span {
  background: linear-gradient(135deg, #ffd700 0%, #ffffff 70%, #f3e5ab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dp-hero-subtitle {
  color: #cbd5e0;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.dp-chapter-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #a0aec0;
  font-size: 0.95rem;
}

.dp-chapter-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dp-chapter-meta span i {
  color: #d4af37;
}

/* Stories Grid */
.dp-stories-section {
  padding: 50px 0 80px;
  background: #f8fafc;
}

.dp-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.dp-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 35px;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 15px;
}

.dp-section-header h2 {
  font-size: 1.6rem;
  color: #1a202c;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dp-section-header h2 i {
  color: #d4af37;
}

.dp-progress-tag {
  background: #ebf8ff;
  color: #2b6cb0;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #bee3f8;
}

.dp-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

/* Active Story Card */
.dp-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.dp-card-active {
  border: 1.5px solid rgba(212, 175, 55, 0.7);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.18), 0 2px 6px rgba(0, 0, 0, 0.04);
}

.dp-card-active:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(212, 175, 55, 0.28), 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #d4af37;
}

.dp-card-media {
  position: relative;
  height: 200px;
  background: #0f1d33;
  overflow: hidden;
}

.dp-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fdfdfd;
  transition: transform 0.5s ease;
}

.dp-card-active:hover .dp-card-media img {
  transform: scale(1.06);
}

.dp-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0c1829;
  color: #ffd700;
  border: 1px solid #d4af37;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.dp-card-audio-tag {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(12, 24, 41, 0.88);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dp-card-audio-tag i {
  color: #ffd700;
}

.dp-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dp-card-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.dp-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.4;
  margin-bottom: 4px;
}

.dp-card-pali {
  color: #718096;
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 12px;
}

.dp-card-desc {
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.dp-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #edf2f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dp-card-btn {
  font-size: 0.9rem;
  font-weight: 700;
  color: #b8911e;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.dp-card-active:hover .dp-card-btn {
  gap: 10px;
  color: #976f08;
}

/* Coming Soon Story Card */
.dp-card-disabled {
  background: #f8fafc;
  border: 1px dashed #cbd5e0;
  opacity: 0.88;
  cursor: default;
}

.dp-card-disabled .dp-card-media {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #718096;
  font-size: 2.5rem;
}

.dp-card-disabled .dp-card-badge {
  background: #4a5568;
  color: #ffffff;
  border: none;
}

.dp-card-disabled:hover {
  opacity: 1;
  border-color: #a0aec0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.dp-status-pill-soon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #edf2f7;
  color: #718096;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}

/* ==========================================================================
   Story Detail Page (/dhammapada-stories/cakkhupala-thera)
   ========================================================================== */
.dp-detail-header {
  background: linear-gradient(135deg, #0e1a2f 0%, #172a46 100%);
  color: #ffffff;
  padding: 50px 0 40px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.dp-container-narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.dp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #cbd5e0;
  margin-bottom: 20px;
}

.dp-breadcrumb a {
  color: #f3e5ab;
  text-decoration: none;
}

.dp-breadcrumb a:hover {
  text-decoration: underline;
}

.dp-detail-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid #d4af37;
  color: #f3e5ab;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.dp-detail-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 8px;
}

.dp-detail-pali {
  font-size: 1.15rem;
  color: #cbd5e0;
  font-style: italic;
  margin-bottom: 12px;
}

.dp-detail-subtitle {
  font-size: 1.1rem;
  color: #f3e5ab;
  font-weight: 500;
}

/* Main Content Area */
.dp-detail-body {
  padding: 50px 0 80px;
  background: #ffffff;
}

/* Spotlight: Illustration & Golden Verse Card */
.dp-hero-verse-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 35px;
  background: #fbf9f4;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #e8dfc9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.dp-illustration-box {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border: 2px solid #d4af37;
  background: #ffffff;
}

.dp-illustration-box img {
  width: 100%;
  height: auto;
  display: block;
}

.dp-verse-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dp-verse-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.dp-verse-card-header i {
  color: #d4af37;
  font-size: 1.3rem;
}

.dp-verse-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.dp-verse-pali-block {
  background: #0f1d33;
  color: #ffd700;
  padding: 16px 20px;
  border-radius: 12px;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
  border-left: 4px solid #d4af37;
  white-space: pre-line;
}

.dp-verse-zh-block {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #2d3748;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 18px;
  border-left: 4px solid #c53030;
  white-space: pre-line;
}

.dp-verse-meaning {
  background: rgba(212, 175, 55, 0.08);
  border: 1px dashed rgba(212, 175, 55, 0.4);
  padding: 14px 18px;
  border-radius: 10px;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.65;
}

.dp-verse-meaning strong {
  color: #b8911e;
}

/* Audio Player Box */
.dp-audio-section {
  background: linear-gradient(135deg, #101e35 0%, #1a2e4c 100%);
  border-radius: 18px;
  padding: 28px 32px;
  color: #ffffff;
  margin-bottom: 45px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 10px 30px rgba(12, 24, 41, 0.2);
}

.dp-audio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}

.dp-audio-title-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dp-audio-icon-disc {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  border: 1.5px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd700;
  font-size: 1.2rem;
}

.dp-audio-title-group h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: #ffffff;
}

.dp-audio-title-group p {
  font-size: 0.88rem;
  color: #cbd5e0;
  margin: 0;
}

.dp-audio-duration-badge {
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #f3e5ab;
  font-weight: 600;
}

.dp-custom-audio-wrapper {
  margin-top: 10px;
}

.dp-custom-audio-wrapper audio {
  width: 100%;
  height: 48px;
  border-radius: 30px;
  outline: none;
}

/* Structured Story Reading Text */
.dp-story-article {
  max-width: 840px;
  margin: 0 auto;
}

.dp-section-block {
  margin-bottom: 45px;
  position: relative;
}

.dp-section-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  border-bottom: 2px solid #edf2f7;
  padding-bottom: 12px;
}

.dp-num-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d4af37;
  color: #0c1829;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dp-section-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.dp-para {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #2d3748;
  margin-bottom: 18px;
  text-align: justify;
}

/* Highlight / Dialogue Callout Block */
.dp-callout-quote {
  background: #fbf9f4;
  border-left: 4px solid #d4af37;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.dp-callout-quote p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #744210;
  margin-bottom: 8px;
  font-weight: 500;
}

.dp-callout-quote p:last-child {
  margin-bottom: 0;
}

/* Key Insights / Modern Reflection Card Grid */
.dp-insights-box {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid #cbd5e0;
  margin-top: 40px;
}

.dp-insights-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.dp-insights-header i {
  color: #d4af37;
  font-size: 1.5rem;
}

.dp-insights-header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.dp-insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.dp-insight-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.dp-insight-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2b6cb0;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dp-insight-card h4 i {
  color: #d4af37;
}

.dp-insight-card p {
  font-size: 0.92rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

/* Story Bottom Navigation */
.dp-bottom-nav {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 2px solid #edf2f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.dp-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.dp-nav-btn-secondary {
  background: #edf2f7;
  color: #4a5568;
}

.dp-nav-btn-secondary:hover {
  background: #e2e8f0;
  color: #1a202c;
}

/* Responsive */
@media (max-width: 992px) {
  .dp-feature-banner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }
  .dp-hero-verse-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .dp-illustration-box {
    max-width: 400px;
    margin: 0 auto;
  }
  .dp-summary-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .dp-feature-title {
    font-size: 1.7rem;
  }
  .dp-hero-title {
    font-size: 2rem;
  }
  .dp-detail-title {
    font-size: 1.8rem;
  }
  .dp-audio-section {
    padding: 20px;
  }
  .dp-insights-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Summary Infographics Section & Lightbox
   ========================================================================== */
.dp-summary-section {
  background: linear-gradient(135deg, #fdfbf7 0%, #f4eee1 100%);
  border: 1.5px solid #d4af37;
  border-radius: 20px;
  padding: 35px 30px;
  margin: 45px 0;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.12);
}

.dp-summary-header {
  text-align: center;
  margin-bottom: 30px;
}

.dp-summary-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid #d4af37;
  color: #744210;
  padding: 5px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.dp-summary-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 8px;
}

.dp-summary-header p {
  color: #718096;
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}

.dp-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.dp-summary-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.dp-summary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.22);
  border-color: #d4af37;
}

.dp-summary-img-wrap {
  position: relative;
  background: #0f1d33;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 2 / 3;
}

.dp-summary-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
  display: block;
}

.dp-summary-card:hover .dp-summary-img-wrap img {
  transform: scale(1.04);
}

.dp-summary-overlay-hint {
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 41, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dp-summary-img-wrap:hover .dp-summary-overlay-hint {
  opacity: 1;
}

.dp-summary-overlay-hint i {
  font-size: 2rem;
  color: #ffd700;
}

.dp-summary-overlay-hint span {
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(0,0,0,0.6);
  padding: 4px 12px;
  border-radius: 20px;
}

.dp-summary-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dp-summary-card-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: #b8911e;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.dp-summary-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 10px;
}

.dp-summary-points {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  flex: 1;
}

.dp-summary-points li {
  font-size: 0.88rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.dp-summary-points li i {
  color: #d4af37;
  margin-top: 4px;
  flex-shrink: 0;
}

.dp-summary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  border-radius: 30px;
  background: #f7fafc;
  border: 1px solid #cbd5e0;
  color: #2d3748;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.dp-summary-btn:hover {
  background: #d4af37;
  color: #0c1829;
  border-color: #d4af37;
}

/* Lightbox Modal */
.dp-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.9);
  padding: 20px;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.dp-modal.active {
  display: flex;
}

.dp-modal-dialog {
  position: relative;
  max-width: 90vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dp-modal-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.dp-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 1.5rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.dp-modal-close:hover {
  background: #d4af37;
  color: #0c1829;
}

.dp-modal-caption {
  color: #f3e5ab;
  margin-top: 10px;
  font-size: 0.95rem;
  text-align: center;
  font-weight: 500;
}
