/* styles/room-separator.css */
.room-separator {
    width: 100vw;
    height: 20vh;
    background: var(--separator-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
}

.separator-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.separator-decorations {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0.6;
}

.decoration-line {
    width: 100px;
    height: 1px;
    background: var(--accent-gold);
}

.decoration-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
}
