* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    overflow: hidden;
    font-family: 'Courier New', monospace;
}

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

.image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

#sunset-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    animation: fadeIn 3s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.dialogue-box {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.85);
    border: 3px solid #fff;
    padding: 25px 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    opacity: 0;
    animation: fadeInBox 1s ease-in 3s forwards;
}

@keyframes fadeInBox {
    to {
        opacity: 1;
    }
}

.dialogue-text {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    min-height: 60px;
    letter-spacing: 0.5px;
}

.continue-indicator {
    position: absolute;
    bottom: 8px;
    right: 15px;
    color: #fff;
    font-size: 20px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.continue-indicator.hidden {
    display: none;
}