body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
    touch-action: manipulation;
}

.game {
    position: relative;
    width: 100vw;
    height: 100vh;
}

/* Background */
.background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #2c3e50, #4ca1af);
}

/* Characters */
.character {
    position: absolute;
    bottom: 0;
    height: 500px;       /* fixed size for desktop */
    width: auto;
    transition: opacity 0.3s ease;
}

.left {
    left: 2%;
}

.right {
    right: 2%;
}

/* Dialogue box */
.dialogue-box {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.name {
    font-weight: bold;
    font-size: clamp(16px, 4vw, 20px);
    margin-bottom: 8px;
}

.text {
    font-size: clamp(16px, 4.5vw, 20px);
    min-height: 60px;
    line-height: 1.4;
}

.hint {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 8px;
}

/* 🔥 Mobile Specific Tweaks */
@media (max-width: 768px) {

    .character {
        max-height: 60vh;
        max-width: 45vw;
    }

    .dialogue-box {
        padding: 18px;
    }

    .text {
        min-height: 80px;
    }
}

/* 📱 Very Small Phones */
@media (max-width: 480px) {

    .character {
        max-height: 55vh;
        max-width: 48vw;
    }

    .dialogue-box {
        padding: 15px;
    }
}