/* Base and layout styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

:root {
    --header-height: 80px;
}

body {
    min-height: 100vh;
    background-color: rgb(12, 12, 18);
}



#particles {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    pointer-events: none;
}

.title {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--header-height);
    padding: 0 24px;
    background: rgba(8, 8, 14, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    z-index: 1100;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
}

.title {
    display: inline-flex;
    gap: 0.7ch;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.title-main {
    color: #f3ce18;
}

.title-accent {
    color: #ffffff;
}

.node-points {
    cursor: pointer;
}

.node-name {
    pointer-events: none;
}