.filter-bar {
    margin-bottom: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 2px dashed var(--c3);
}

.filter-btn {
    padding: 10px 14px;
    background: var(--c3);
    color: var(--text);
    border: 3px solid var(--c4);
    font-family: 'Tiny5', monospace;
    text-transform: uppercase;
}

.filter-btn:hover {
    background: var(--c1); 
    color: var(--c4); 
    box-shadow: 0 8px 0 var(--c4); 
    transform: translateY(-4px);
}

.filter-btn.active {
    background: var(--c1);
    color: var(--c4);
    border-color: var(--c1);
    box-shadow: 0 4px 0 var(--c4);
    transform: translateY(2px);
    border-color: var(--C4);
}

.card {
    height: 80vh; 
    display: flex;
    flex-direction: column;
}

.layout {
    flex: 1;
    grid-template-columns: 40% 1fr;
}

.btn {
    display: block; 
    padding: 12px 10px;
    background: var(--c2);
    color: var(--c4);
    text-align: center;
    font-size: 18px;
}

.btn:hover {
    background: var(--c1);
}

.btn.active { 
    background: var(--c1); 
    transform: translateY(-4px); 
    box-shadow: 0 10px 0 var(--c4); 
    border-color: var(--text); 
}

.detail-img {
    width: 100%;
    height: 100%; 
    max-height: 400px; 
    display: block;
    object-fit: cover; 
    object-position: top; 
}

.zone-title {
    margin-top: 0;
    color: var(--c1);
    width: 100%;
    margin-bottom: auto;
}

.image-container {
    width: 100%;
    border: 4px solid var(--c4);
    box-shadow: 0 6px 0 rgba(0,0,0,0.3);
    margin-bottom: 20px;
    cursor: help;
    line-height: 0;
}

.detail-desc {
    font-size: 18px;
    line-height: 1.5;
}

#initial-message {
    display: block;
    text-align: center;
    width: 100%;
    padding-top: 50px;
    opacity: 0.6;
}

#content-wrapper {
    display: none;
    width: 100%;
}

#attr-popup {
    display: none;
    position: fixed;
    width: auto;
    min-width: 150px;
    background: var(--c2);
    border: 4px solid var(--c4);
    padding: 8px 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    z-index: 100;
    pointer-events: none;
    font-size: 14px;
    color: var(--c4);
    font-weight: regular;
}
