body { 
    margin: 0; 
    overflow: hidden; 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; 
    background-color: #0a0e14; 
    color: #e5e7eb; 
}
#canvas-container { 
    width: 100vw; 
    height: 100vh; 
    display: block; 
}
#blocker {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    cursor: pointer;
    z-index: 20;
}
#instructions-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
#instructions-container p {
    margin: 10px 0;
    font-size: 24px;
}
#instructions-container p.title {
    font-size: 36px;
    font-weight: bold;
}
#start-museum-btn {
    margin-top: 2rem; 
    background-color: #f59e0b; 
    color: #111827; 
    font-weight: 700; 
    padding: 0.75rem 1.5rem; 
    border-radius: 0.5rem; 
    font-size: 1.25rem; 
    border: none; 
    cursor: pointer;
    transition: background-color 150ms ease-in-out;
}
#start-museum-btn:hover {
    background-color: #d97706; 
}
#consent-info {
    font-size: 14px;
    color: #cbd5e0; 
    max-width: 600px;
    margin-top: 20px;
    line-height: 1.5;
}
#loading-status {
    font-size: 28px;
    color: white;
}
.exhibit-info {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(20, 25, 35, 0.97);
    color: white;
    padding: 20px; 
    border-radius: 10px; 
    border: 1px solid #4a5568; 
    max-width: 90%;
    width: 550px; 
    text-align: left;
    font-size: 15px;
    display: none; 
    z-index: 10;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5); 
}
.exhibit-info h3 {
    font-size: 20px; 
    margin-bottom: 12px;
    color: #f59e0b; 
}
.exhibit-info p, .exhibit-info ul {
    margin-bottom: 8px; 
    line-height: 1.6; 
}
 .exhibit-info ul {
    list-style-position: inside;
    padding-left: 5px;
}
.exhibit-info li {
    margin-bottom: 4px;
}
.exhibit-info img {
    max-width: 100%;
    height: auto;
    border-radius: 6px; 
    margin-top: 12px;
}
.exhibit-info strong {
    color: #a0aec0; 
}
.exhibit-info em {
    color: #9ca3af;
    font-size: 0.9em;
} 