/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f7f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Header */
.header {
    width: 100%;
    background-color: #2d6a4f; /* Eco Green */
    color: white;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header h1 {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Main Layout Container */
.game-container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Placeholders */
.image-area, .map-area {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #b7b7b7;
    border-radius: 8px;
    color: #666;
    transition: background-color 0.2s ease;
}

/* Image space aspect ratio (typically 16:9) */
.image-area {
    height: 400px;
    background-color: #e9ecef;
}

/* Map space aspect ratio (typically shorter/wider) */
.map-area {
    height: 300px;
    background-color: #e2eafc;
    border-color: #adc1e6;
}

.placeholder-text {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    padding: 10px;
}