/* ========================================
   WORLD DATABASE - HIERARCHICAL STYLES
   ======================================== */

.lore-container {
    max-width: 1200px;
    margin: 0 auto;
}

.lore-entry {
    border: 1px solid #404040;
    margin-bottom: 20px;
    background: #1a1a1a;
}

.entry-header {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #2d2d2d;
    padding: 15px 20px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s;
}

.entry-header:hover {
    background: #353535;
}

.collapse-icon {
    font-size: 1.2rem;
    color: #c41e3a;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(-90deg); /* Collapsed by default */
}

.lore-entry.expanded > .entry-header > .collapse-icon {
    transform: rotate(0deg);
}

.entry-title {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    margin: 0;
}

h2.entry-title { font-size: 1.5rem; }
h3.entry-title { font-size: 1.3rem; }
h4.entry-title { font-size: 1.1rem; }

.entry-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.lore-entry.expanded > .entry-content {
    max-height: 5000px; /* Adjust if content is very long */
}

.entry-keywords {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding: 15px 20px;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid #404040;
    border-bottom: 1px solid #404040;
}

.keyword-badge { display: inline-flex; align-items: center; gap: 8px; padding: 5px 12px; background: #252525; border: 1px solid #404040; font-size: 0.85rem; }
.keyword-badge.primary { border-color: #c41e3a; }
.keyword-badge.secondary { border-color: #4a9eff; }
.key-label { font-weight: bold; }
.keyword-badge.primary .key-label { color: #c41e3a; }
.keyword-badge.secondary .key-label { color: #4a9eff; }
.key-value { color: #a0a0a0; }

.entry-description {
    padding: 20px;
    color: #b0b0b0;
    line-height: 1.7;
}

/* --- Hierarchy Indentation --- */
.lore-entry .lore-entry {
    margin-left: 30px;
    margin-top: 20px;
    border-left: 2px solid #c41e3a;
}
.lore-entry.state { border: 1px solid #c41e3a; }
.lore-entry.city { border-left-color: #4a9eff; }
.lore-entry.district { border-left-color: #808080; }