/* === Game Console (Cactus demo) === */

.vn-app {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
    background-color: #000;
}

.vn-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.25s ease;
}

.vn-character {
    position: absolute;
    bottom: 130px;
    right: 60px;
    height: 260px;
    width: auto;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.5));
    transition: opacity 0.15s ease;
}

.vn-score {
    position: absolute;
    top: 16px;
    left: 16px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 4px 10px;
    border-radius: 8px;
    z-index: 5;
}

.vn-dialogue-box {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: 140px;
    background-color: #050505ce;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Pixelify Sans', sans-serif;
    padding: 20px 30px;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.vn-speaker-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vn-speaker-icon {
    height: 32px;
    width: 32px;
}

.vn-speaker-name {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.vn-text {
    font-size: 1.3rem;
    line-height: 1.4;
}

.vn-continue-hint {
    align-self: flex-end;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.vn-choices {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 4;
    width: 60%;
}

.vn-choice-btn {
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 1.1rem;
    background-color: rgba(46, 46, 46, 0.9);
    border: thin solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    padding: 14px 18px;
    cursor: pointer;
}

.vn-choice-btn:hover {
    background-color: rgba(5, 5, 5, 0.85);
}

.vn-trivia-question {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    background-color: rgba(5, 5, 5, 0.85);
    border-radius: 10px;
    padding: 24px;
    box-sizing: border-box;
    z-index: 6;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Pixelify Sans', sans-serif;
    text-align: center;
}

.vn-trivia-question p {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.vn-trivia-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vn-trivia-btn {
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 1rem;
    background-color: rgba(46, 46, 46, 0.9);
    border: thin solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    cursor: pointer;
}

.vn-trivia-btn:hover {
    background-color: rgba(5, 5, 5, 0.85);
}

.vn-trivia-btn.correct {
    background-color: rgba(60, 130, 70, 0.85);
}

.vn-trivia-btn.wrong {
    background-color: rgba(150, 50, 50, 0.85);
}
