/*
 * MYTHICAL ARCHIVES - Creature Detail Page Template
 * Version: 3.4.0
 * Stunning creature profile pages with immersive styling
 */

/* ========================================
   CREATURE STATS GRID (KEY ADDITION)
   ======================================== */
.creature-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background: var(--myth-bg-card);
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: 12px;
    margin-bottom: 3rem;
}

.stat-card {
    text-align: center;
    padding: 1.25rem;
    background: rgba(201,162,39,0.03);
    border-radius: 8px;
    transition: all var(--myth-transition-med);
}

.stat-card:hover {
    background: rgba(201,162,39,0.08);
    transform: translateY(-2px);
}

.stat-card .stat-label {
    display: block;
    font-family: var(--myth-font-heading);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--myth-text-muted);
    margin-bottom: 0.5rem;
}

.stat-card .stat-value {
    display: block;
    font-family: var(--myth-font-heading);
    font-size: 1.1rem;
    color: var(--myth-gold);
    font-weight: 600;
}

/* ========================================
   CREATURE PAGE HERO
   ======================================== */
.creature-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, 
        var(--myth-bg-primary) 0%,
        rgba(201,162,39,0.03) 50%,
        var(--myth-bg-primary) 100%);
}

.creature-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(201,162,39,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(74,144,164,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.creature-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.creature-origin-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(201,162,39,0.1);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 50px;
    font-family: var(--myth-font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--myth-gold);
    margin-bottom: 1.5rem;
}

.creature-origin-badge .badge-icon {
    font-size: 1rem;
}

.creature-title {
    font-family: var(--myth-font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--myth-text-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 40px rgba(201,162,39,0.2);
}

.creature-epithet {
    font-family: var(--myth-font-body);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--myth-gold);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.creature-quick-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    font-family: var(--myth-font-heading);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--myth-text-muted);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-family: var(--myth-font-heading);
    font-size: 1rem;
    color: var(--myth-text-primary);
}

/* ========================================
   CREATURE IMAGE SHOWCASE
   ======================================== */
.creature-image-showcase {
    position: relative;
    max-width: 700px;
    margin: -3rem auto 4rem;
    padding: 0 2rem;
}

.creature-image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0,0,0,0.5),
        0 0 60px rgba(201,162,39,0.15),
        inset 0 0 0 1px rgba(201,162,39,0.2);
}

.creature-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--myth-gold), transparent, var(--myth-blue), transparent, var(--myth-gold)) 1;
    border-radius: 12px;
    pointer-events: none;
    z-index: 2;
}

.creature-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.creature-image-frame:hover img {
    transform: scale(1.03);
}

.creature-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(201,162,39,0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* ========================================
   CREATURE CONTENT SECTIONS
   ======================================== */
.creature-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.creature-section {
    margin-bottom: 4rem;
}

.creature-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201,162,39,0.2);
}

.section-icon {
    font-size: 1.5rem;
}

.creature-section h2 {
    font-family: var(--myth-font-display);
    font-size: 1.75rem;
    color: var(--myth-gold);
    margin: 0;
    text-shadow: 0 0 20px rgba(201,162,39,0.3);
}

.creature-section p,
.creature-section ul,
.creature-section ol {
    color: var(--myth-text-secondary);
    line-height: 1.9;
    font-size: 1.1rem;
}

.creature-section ul {
    list-style: none;
    padding: 0;
}

.creature-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.creature-section ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--myth-gold);
    font-size: 0.7rem;
}

/* ========================================
   CREATURE ATTRIBUTES GRID
   ======================================== */
.creature-attributes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.attribute-card {
    background: var(--myth-bg-card);
    border: 1px solid rgba(201,162,39,0.1);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all var(--myth-transition-med);
}

.attribute-card:hover {
    border-color: rgba(201,162,39,0.3);
    transform: translateY(-3px);
    box-shadow: var(--myth-shadow-md);
}

.attribute-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.attribute-name {
    font-family: var(--myth-font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--myth-text-muted);
    margin-bottom: 0.5rem;
}

.attribute-value {
    font-family: var(--myth-font-heading);
    font-size: 1.1rem;
    color: var(--myth-text-primary);
}

/* ========================================
   POWERS & ABILITIES
   ======================================== */
.powers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.power-card {
    background: linear-gradient(135deg, rgba(201,162,39,0.05) 0%, rgba(74,144,164,0.05) 100%);
    border: 1px solid rgba(201,162,39,0.15);
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.power-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--myth-gold), var(--myth-blue));
}

.power-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.power-name {
    font-family: var(--myth-font-heading);
    font-size: 1.15rem;
    color: var(--myth-gold);
    margin-bottom: 0.5rem;
}

.power-description {
    color: var(--myth-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   MYTHOLOGY STORIES BOX
   ======================================== */
.mythology-story-box {
    background: linear-gradient(135deg, rgba(13,13,21,0.9) 0%, rgba(26,26,40,0.9) 100%);
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 2rem 0;
    position: relative;
}

.mythology-story-box::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: var(--myth-font-display);
    font-size: 5rem;
    color: rgba(201,162,39,0.15);
    line-height: 1;
}

.story-content {
    position: relative;
    z-index: 1;
}

.story-content p {
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--myth-text-secondary);
}

.story-source {
    margin-top: 1.5rem;
    font-family: var(--myth-font-heading);
    font-size: 0.9rem;
    color: var(--myth-gold);
}

/* ========================================
   RELATED CREATURES
   ======================================== */
.related-creatures {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(201,162,39,0.02) 50%, transparent 100%);
}

.related-creatures-header {
    text-align: center;
    margin-bottom: 3rem;
}

.related-creatures-header h2 {
    font-family: var(--myth-font-display);
    font-size: 2rem;
    color: var(--myth-gold);
    margin-bottom: 0.5rem;
}

.related-creatures-header p {
    color: var(--myth-text-muted);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-creature-card {
    background: var(--myth-bg-card);
    border: 1px solid rgba(201,162,39,0.1);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: all var(--myth-transition-med);
}

.related-creature-card:hover {
    border-color: rgba(201,162,39,0.3);
    transform: translateY(-5px);
    box-shadow: var(--myth-shadow-lg);
}

.related-creature-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.related-creature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-creature-card:hover .related-creature-image img {
    transform: scale(1.08);
}

.related-creature-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(13,13,21,0.9));
}

.related-creature-info {
    padding: 1.25rem;
}

.related-creature-name {
    font-family: var(--myth-font-heading);
    font-size: 1.15rem;
    color: var(--myth-text-primary);
    margin-bottom: 0.25rem;
}

.related-creature-origin {
    font-size: 0.85rem;
    color: var(--myth-gold);
}

/* ========================================
   CREATURE SIDEBAR (for desktop)
   ======================================== */
.creature-page-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 1024px) {
    .creature-page-layout {
        grid-template-columns: 1fr;
    }
}

.creature-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: var(--myth-bg-card);
    border: 1px solid rgba(201,162,39,0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card-title {
    font-family: var(--myth-font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--myth-gold);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(201,162,39,0.15);
}

.quick-facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-facts-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
}

.quick-facts-list li:last-child {
    border-bottom: none;
}

.fact-label {
    color: var(--myth-text-muted);
}

.fact-value {
    color: var(--myth-text-primary);
    font-family: var(--myth-font-heading);
}

/* Table of Contents */
.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    color: var(--myth-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 0.5rem 0;
    border-left: 2px solid transparent;
    padding-left: 1rem;
    transition: all var(--myth-transition-fast);
}

.toc-list a:hover,
.toc-list a.active {
    color: var(--myth-gold);
    border-left-color: var(--myth-gold);
}

/* ========================================
   DANGER/THREAT LEVEL INDICATOR
   ======================================== */
.threat-level {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(138,58,58,0.1);
    border: 1px solid rgba(138,58,58,0.3);
    border-radius: 8px;
    margin: 1.5rem 0;
}

.threat-level.harmless {
    background: rgba(58,122,74,0.1);
    border-color: rgba(58,122,74,0.3);
}

.threat-level.moderate {
    background: rgba(201,162,39,0.1);
    border-color: rgba(201,162,39,0.3);
}

.threat-icon {
    font-size: 2rem;
}

.threat-info h4 {
    font-family: var(--myth-font-heading);
    font-size: 0.9rem;
    margin: 0 0 0.25rem 0;
    color: var(--myth-text-primary);
}

.threat-info p {
    font-size: 0.85rem;
    color: var(--myth-text-secondary);
    margin: 0;
}

/* ========================================
   CREATURE APPEARANCE VISUALIZATION
   ======================================== */
.appearance-visual {
    background: var(--myth-bg-tertiary);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.appearance-diagram {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.appearance-item {
    padding: 1rem;
}

.appearance-item span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.appearance-item h4 {
    font-family: var(--myth-font-heading);
    font-size: 0.85rem;
    color: var(--myth-gold);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.appearance-item p {
    font-size: 0.9rem;
    color: var(--myth-text-secondary);
    margin: 0;
}

/* ========================================
   CULTURAL SIGNIFICANCE BOX
   ======================================== */
.cultural-significance {
    background: linear-gradient(135deg, rgba(74,144,164,0.08) 0%, rgba(201,162,39,0.08) 100%);
    border: 1px solid rgba(74,144,164,0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.cultural-significance h3 {
    font-family: var(--myth-font-display);
    font-size: 1.35rem;
    color: var(--myth-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cultural-significance p {
    color: var(--myth-text-secondary);
    line-height: 1.8;
}

/* ========================================
   CREATURE COMPARISON TABLE
   ======================================== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--myth-bg-card);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comparison-table th {
    background: rgba(201,162,39,0.1);
    font-family: var(--myth-font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--myth-gold);
}

.comparison-table td {
    color: var(--myth-text-secondary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: rgba(201,162,39,0.03);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
    .creature-hero {
        min-height: 50vh;
        padding: 4rem 1.5rem;
    }
    
    .creature-title {
        font-size: 2.25rem;
    }
    
    .creature-quick-stats {
        gap: 1.25rem;
    }
    
    .creature-content {
        padding: 0 1.5rem 3rem;
    }
    
    .creature-section h2 {
        font-size: 1.5rem;
    }
    
    .powers-grid {
        grid-template-columns: 1fr;
    }
    
    .mythology-story-box {
        padding: 1.5rem;
    }
    
    .mythology-story-box::before {
        font-size: 3rem;
        top: 0.5rem;
        left: 1rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .creature-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   CULTURE LANDING PAGE HEROES
   ======================================== */
.culture-hero {
    min-height: 70vh;
    background: radial-gradient(ellipse at center, rgba(201,162,39,0.08) 0%, transparent 60%);
}

.culture-hero .portal-content {
    max-width: 900px;
}

.culture-hero .portal-subtitle {
    max-width: 700px;
}

/* Culture-specific gradient overlays */
.culture-hero.culture-greek::before {
    background: radial-gradient(ellipse at 30% 40%, rgba(74,144,164,0.1) 0%, transparent 50%);
}

.culture-hero.culture-norse::before {
    background: radial-gradient(ellipse at 70% 30%, rgba(74,144,164,0.15) 0%, transparent 50%);
}

.culture-hero.culture-japanese::before {
    background: radial-gradient(ellipse at 30% 60%, rgba(138,58,58,0.1) 0%, transparent 50%);
}

.culture-hero.culture-egyptian::before {
    background: radial-gradient(ellipse at 50% 30%, rgba(201,162,39,0.15) 0%, transparent 50%);
}

.culture-hero.culture-celtic::before {
    background: radial-gradient(ellipse at 40% 50%, rgba(58,122,74,0.1) 0%, transparent 50%);
}

.culture-hero.culture-chinese::before {
    background: radial-gradient(ellipse at 60% 40%, rgba(138,58,58,0.1) 0%, transparent 50%);
}

.culture-hero.culture-slavic::before {
    background: radial-gradient(ellipse at 30% 50%, rgba(74,100,164,0.1) 0%, transparent 50%);
}

.culture-hero.culture-mesopotamian::before {
    background: radial-gradient(ellipse at 50% 40%, rgba(180,140,50,0.12) 0%, transparent 50%);
}

.culture-hero.culture-polynesian::before {
    background: radial-gradient(ellipse at 60% 60%, rgba(64,144,180,0.12) 0%, transparent 50%);
}

.culture-hero.culture-native-american::before {
    background: radial-gradient(ellipse at 40% 40%, rgba(180,120,60,0.12) 0%, transparent 50%);
}

.culture-hero.culture-african::before {
    background: radial-gradient(ellipse at 50% 50%, rgba(160,100,40,0.12) 0%, transparent 50%);
}

.culture-hero.culture-hindu::before {
    background: radial-gradient(ellipse at 45% 45%, rgba(180,90,140,0.1) 0%, transparent 50%);
}

.culture-hero.culture-mesoamerican::before {
    background: radial-gradient(ellipse at 55% 35%, rgba(50,140,100,0.12) 0%, transparent 50%);
}

/* ========================================
   CREATURE-SPECIFIC PAGE CLASSES
   ======================================== */
.creature-page.greek-creature .creature-hero::before {
    background: radial-gradient(ellipse at 30% 40%, rgba(74,144,164,0.08) 0%, transparent 50%);
}

.creature-page.norse-creature .creature-hero::before {
    background: radial-gradient(ellipse at 70% 30%, rgba(74,144,164,0.1) 0%, transparent 50%);
}

.creature-page.japanese-creature .creature-hero::before {
    background: radial-gradient(ellipse at 30% 60%, rgba(138,58,58,0.08) 0%, transparent 50%);
}

.creature-page.egyptian-creature .creature-hero::before {
    background: radial-gradient(ellipse at 50% 30%, rgba(201,162,39,0.1) 0%, transparent 50%);
}

.creature-page.celtic-creature .creature-hero::before {
    background: radial-gradient(ellipse at 40% 50%, rgba(58,122,74,0.08) 0%, transparent 50%);
}

.creature-page.chinese-creature .creature-hero::before {
    background: radial-gradient(ellipse at 60% 40%, rgba(138,58,58,0.08) 0%, transparent 50%);
}

.creature-page.slavic-creature .creature-hero::before {
    background: radial-gradient(ellipse at 30% 50%, rgba(74,100,164,0.08) 0%, transparent 50%);
}

.creature-page.native-american-creature .creature-hero::before {
    background: radial-gradient(ellipse at 40% 40%, rgba(180,120,60,0.08) 0%, transparent 50%);
}

.creature-page.mesoamerican-creature .creature-hero::before {
    background: radial-gradient(ellipse at 55% 35%, rgba(50,140,100,0.08) 0%, transparent 50%);
}

.creature-page.universal-creature .creature-hero::before {
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(201,162,39,0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(74,144,164,0.08) 0%, transparent 40%);
}

/* ========================================
   CREATURE CONTENT ENHANCEMENTS
   ======================================== */
.creature-content h3 {
    font-family: var(--myth-font-heading);
    font-size: 1.35rem;
    color: var(--myth-text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(201,162,39,0.15);
}

.creature-content h4 {
    font-family: var(--myth-font-heading);
    font-size: 1.15rem;
    color: var(--myth-gold);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.creature-content strong {
    color: var(--myth-gold);
    font-weight: 600;
}

.creature-content em {
    color: var(--myth-text-secondary);
    font-style: italic;
}

/* Featured Creatures Grid for Culture Pages */
.featured-creatures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.featured-creature-card {
    background: var(--myth-bg-card);
    border: 1px solid rgba(201,162,39,0.15);
    border-radius: 10px;
    padding: 1.75rem;
    text-decoration: none;
    transition: all var(--myth-transition-med);
    position: relative;
    overflow: hidden;
}

.featured-creature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--myth-gold), var(--myth-blue));
    transform: scaleX(0);
    transition: transform var(--myth-transition-med);
}

.featured-creature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201,162,39,0.35);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.featured-creature-card:hover::before {
    transform: scaleX(1);
}

.featured-creature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.featured-creature-name {
    font-family: var(--myth-font-heading);
    font-size: 1.25rem;
    color: var(--myth-text-primary);
    margin-bottom: 0.5rem;
}

.featured-creature-type {
    font-size: 0.85rem;
    color: var(--myth-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.featured-creature-desc {
    font-size: 0.95rem;
    color: var(--myth-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Cultural Context Box */
.cultural-context-box {
    background: linear-gradient(135deg, rgba(74,144,164,0.06) 0%, rgba(201,162,39,0.06) 100%);
    border: 1px solid rgba(74,144,164,0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
}

.cultural-context-box h3 {
    font-family: var(--myth-font-display);
    font-size: 1.35rem;
    color: var(--myth-blue);
    margin: 0 0 1rem 0;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cultural-context-box p {
    color: var(--myth-text-secondary);
    line-height: 1.8;
    margin: 0 0 1rem 0;
}

.cultural-context-box p:last-child {
    margin-bottom: 0;
}

/* Key Facts List */
.key-facts-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.key-facts-list li {
    background: rgba(201,162,39,0.05);
    border-left: 3px solid var(--myth-gold);
    padding: 1rem 1.25rem;
    border-radius: 0 6px 6px 0;
}

.key-facts-list li strong {
    display: block;
    font-family: var(--myth-font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--myth-text-muted);
    margin-bottom: 0.25rem;
}

.key-facts-list li span {
    color: var(--myth-text-primary);
    font-size: 1rem;
}

/* Timeline/Origin Stories */
.origin-timeline {
    position: relative;
    padding-left: 2.5rem;
    margin: 2rem 0;
}

.origin-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--myth-gold), var(--myth-blue), var(--myth-gold));
}

.timeline-entry {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-entry::before {
    content: '✦';
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: var(--myth-gold);
    background: var(--myth-bg-primary);
    border: 2px solid var(--myth-gold);
    border-radius: 50%;
}

.timeline-entry h4 {
    font-family: var(--myth-font-heading);
    font-size: 1.1rem;
    color: var(--myth-gold);
    margin: 0 0 0.5rem 0;
}

.timeline-entry p {
    color: var(--myth-text-secondary);
    margin: 0;
    line-height: 1.7;
}
