/**
 * Game Styles
 * Game-specific UI elements (scene, character info, quests)
 */

/* Scene Display */
.scene-image {
    width: 100%;
    height: 350px;
    background: #1a1a2e;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.scene-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scene-text {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 25px;
    min-height: 120px;
    color: #e0e0e0;
}

/* Character Info */
.info-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #ffd700;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.info-item {
    margin: 12px 0;
    display: flex;
    justify-content: space-between;
    font-size: 1.1em;
}

.info-item span:first-child {
    color: rgba(255, 255, 255, 0.7);
}

.info-item span:last-child {
    color: #ffd700;
    font-weight: bold;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .scene-image {
        height: 250px;
        margin-bottom: 15px;
    }

    .scene-text {
        font-size: 1em;
        line-height: 1.6;
        margin-bottom: 15px;
        min-height: 80px;
    }

    .info-title {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .info-item {
        margin: 8px 0;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .scene-image {
        height: 180px;
        margin-bottom: 10px;
        border-radius: 8px;
    }

    .scene-text {
        font-size: 0.95em;
        line-height: 1.5;
        margin-bottom: 12px;
        min-height: 60px;
    }

    .info-title {
        font-size: 1.1em;
    }

    .info-item {
        margin: 6px 0;
        font-size: 0.95em;
    }
}
