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

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #1a1a1a;
    color: #e0e0e0;
}

/* Navbar */
.navbar {
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand .rune {
    font-size: 1.2rem;
}

.navbar-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.navbar-menu a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
    font-size: 1.1rem;
}

.navbar-menu a:hover {
    opacity: 0.8;
}

/* Home Page */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 60px);
    text-align: center;
}

.rune-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #3498db;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ecf0f1;
}

.divider {
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, transparent, #3498db, transparent);
    margin: 2rem 0;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #2980b9;
}

/* Map Page */
.map-container {
    position: relative;
    height: calc(100vh - 60px);
}

#map {
    width: 100%;
    height: 100%;
}
