:root {
    --primary-dark: #14231c;
    --accent-green: #63a35a;
    --accent-red: #e74c3c;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --border-gray: #e0e0e0;
}
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: var(--light-gray);
    color: var(--primary-dark);
}
h1, h2, h3 {
    color: var(--primary-dark);
}
a {
    color: var(--accent-green);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: var(--accent-green);
}
.logo-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}
.logo-link {
    text-decoration: none;
    color: black;
}
.logo-link img {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}
p.note {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1em;
}
body, html {
    height: 100vh;
    margin: 0;
    padding: 0;
    background: #fff;
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-wrapper {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.background-map {
    position: relative;
    width: 75vmin;
    height: 100vmin;
    max-width: 100vw;
    max-height: 100vh;
    aspect-ratio: 3/4;
    background: #fff;
}
.background-map img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    z-index: 1;
}
.city-marker {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.city-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.city-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-red);
    border: 2px solid #fff;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    display: inline-block;
}
.city-dot:hover {
    background: var(--accent-green);
}
.city-name {
    color: var(--accent-red);
    font-weight: bold;
    font-size: 1.1em;
    margin-left: 4px;
    transition: color 0.2s;
}
.city-link:hover .city-dot {
    background: var(--accent-green);
}
.city-link:hover .city-name {
    color: var(--accent-green);
}
