/* --- World Map Journey Styling --- */

#journey-canvas-container {
    min-height: 600px;
    background-image: 
        radial-gradient(var(--border) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 1rem;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 4rem 2rem;
}

.journey-trail {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        var(--accent) 0,
        var(--accent) 10px,
        transparent 10px,
        transparent 20px
    );
    transform: translateX(-50%);
    opacity: 0.2;
    z-index: 0;
}

.journey-landmark {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    width: 100%;
}

.journey-landmark:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.landmark-node {
    width: 3rem;
    height: 3rem;
    background: var(--bg-card);
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.landmark-node:hover {
    transform: scale(1.2);
}

.landmark-info {
    flex: 1;
    max-width: 200px;
}

.landmark-date {
    font-size: 0.6rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.landmark-title {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--text-primary);
    line-height: 1.2;
    margin-top: 0.25rem;
}

/* Theme Adaptations */
[data-theme='brick'] .landmark-node { border-radius: 0; border-style: solid; box-shadow: 4px 4px 0 var(--border); }
[data-theme='brick'] .journey-trail { background: var(--accent); opacity: 0.1; }

[data-theme='os'] .landmark-node {
    border-radius: 0;
    background: #c0c0c0;
    border: 2px solid;
    border-color: #ffffff #808080 #808080 #ffffff !important;
}

[data-theme='legacy'] .landmark-node {
    border-radius: 0;
    border: 1px solid #fff;
    background: #000;
    box-shadow: none;
}
[data-theme='legacy'] .journey-trail { background: #fff; opacity: 0.1; }
