/*
==============================================================
REVAMED MANSION
PHIRO BASELINE 009 — ACT 1 VERTICAL SLICE STYLES
==============================================================
*/

/* Room 006 — West Wing Hallway Scene */
.scene-west-wing {
    background: radial-gradient(circle at 50% 40%, #1a162b 0%, #08060f 100%);
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.west-wing-wall-art {
    position: absolute;
    top: 40px;
    left: 120px;
    width: 160px;
    height: 110px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(10, 15, 30, 0.6);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(212, 175, 55, 0.6);
    font-family: monospace;
    font-size: 10px;
}

.west-wing-door-art {
    position: absolute;
    bottom: 60px;
    right: 140px;
    width: 110px;
    height: 220px;
    background: linear-gradient(180deg, #2a1f18 0%, #150f0b 100%);
    border: 3px solid #5a3d28;
    border-radius: 4px 4px 0 0;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.9);
}

/* Room 007 — Drafting Room Scene */
.scene-drafting-room {
    background: radial-gradient(circle at 40% 30%, #201a14 0%, #0a0806 100%);
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.drafting-desk-art {
    position: absolute;
    bottom: 50px;
    left: 80px;
    width: 280px;
    height: 120px;
    background: #3a281c;
    border: 2px solid #6e4c34;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.8);
}

.blueprint-safe-art {
    position: absolute;
    top: 70px;
    right: 100px;
    width: 130px;
    height: 150px;
    background: linear-gradient(135deg, #2b303a 0%, #12151c 100%);
    border: 3px solid #d4af37;
    border-radius: 6px;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
}

/* Blueprint Safe Interactive Modal */
.safe-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 4, 6, 0.85);
    backdrop-filter: blur(20px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
}

.safe-modal-card {
    width: 360px;
    background: rgba(12, 14, 22, 0.95);
    border: 2px solid #d4af37;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
    color: #e2e8f0;
    text-align: center;
}

.safe-title {
    font-family: 'Outfit', sans-serif;
    color: #ffd700;
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.safe-dials-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 24px 0;
}

.safe-dial-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.safe-dial-val {
    width: 50px;
    height: 60px;
    background: #050507;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    font-size: 24px;
    font-weight: bold;
    color: #ffd700;
}

.safe-dial-btn {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #ffd700;
    width: 40px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.safe-dial-btn:hover {
    background: rgba(212, 175, 55, 0.3);
}

/* Categorised Clue Journal Tabs */
.journal-tabs-header {
    display: flex;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(0, 0, 0, 0.3);
    overflow-x: auto;
}

.journal-tab-btn {
    flex: 1;
    padding: 10px 6px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #94a3b8;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.journal-tab-btn.active {
    color: #ffd700;
    border-bottom-color: #ffd700;
    background: rgba(212, 175, 55, 0.08);
}

/* Act 1 Completion Overlay Card */
.act1-completion-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 3, 5, 0.92);
    backdrop-filter: blur(30px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.act1-completion-card {
    width: 440px;
    background: linear-gradient(180deg, #100f1a 0%, #050508 100%);
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    text-align: center;
    color: #e2e8f0;
}

.act1-completion-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    color: #ffd700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.act1-completion-tagline {
    font-size: 13px;
    color: #cbd5e1;
    font-style: italic;
    margin-bottom: 20px;
}

.act1-summary-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    padding: 16px;
    text-align: left;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 24px;
}
