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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #8B7355 0%, #5C4033 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 100%;
    padding: 40px;
}

h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.subtitle {
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

h2 {
    color: #34495e;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #8B7355;
}

.map-list {
    list-style: none;
}

.map-item {
    margin-bottom: 15px;
}

.map-item a {
    display: block;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.map-item a:hover {
    background: #8B7355;
    color: white;
    border-color: #6F5C4A;
    transform: translateX(5px);
}

.map-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.map-description {
    font-size: 0.95rem;
    opacity: 0.8;
}

footer {
    margin-top: 40px;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}
