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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.header {
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 3rem;
}

.title {
    /* position: relative; */
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.map-description {
    text-align: center;
    /* margin-bottom: 1rem; */
    color: var(--text-color);
}

.map-container {
    background: white;
    /* border-radius: 10px; */
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    width: 80%;
    height: 60%;
    margin: 2rem auto;
}

#map-wrapper {
    width: 100%;
    height: 600px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.map-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* top: 50%;
    left: 50%; */
    /* transform: translate(-50%, -50%) scale(1.5); */
}

.province {
    fill: #e0f7ff;
    stroke: #fff;
    stroke-width: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.province:hover {
    transform: scale(1.02);
}

.province.visited {
    fill: #0d47a1;
}

.stats-container {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
}

.stats-text {
    font-size: 1.1rem;
    color: #333;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.stats-text span {
    font-weight: bold;
    color: #0d47a1;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .title {
        font-size: 2rem;
    }

    #map-wrapper {
        height: 400px;
    }
    
    #map-wrapper img {
        transform: translate(-50%, -50%) scale(1.1);
    }
} 