@import url('https://fonts.googleapis.com/css2?family=Carter+One&family=Open+Sans:wght@400;700&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #14532d;
    color: #f0fdf4;
    overflow-x: hidden
}

.font-map {
    font-family: 'Carter One', cursive
}

.jungle-bg {
    background: url('https://images.unsplash.com/photo-1596395819057-d37fb7181c0c?q=80&w=2072&auto=format&fit=crop') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    position: relative
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 83, 45, 0.85);
    backdrop-filter: blur(3px)
}

.compass {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23d6d3d1"><circle cx="50" cy="50" r="45" stroke="%2378350f" stroke-width="5" fill="%23f5f5f4"/><path d="M50,10 L60,45 L90,50 L60,55 L50,90 L40,55 L10,50 L40,45 Z" fill="%2378350f"/><text x="50" y="30" text-anchor="middle" fill="%23b91c1c" font-weight="bold">N</text></svg>') no-repeat center/contain;
    transform: rotate(-15deg)
}

.path-node {
    width: 60px;
    height: 60px;
    background: #fcd34d;
    border: 4px solid #78350f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #451a03;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s
}

.path-node:hover {
    transform: scale(1.1)
}

.path-node.active {
    background: #22c55e;
    border-color: #14532d;
    box-shadow: 0 0 15px #22c55e
}

.path-node.locked {
    background: #78716c;
    border-color: #44403c;
    opacity: 0.6;
    cursor: not-allowed
}

.path-line {
    position: absolute;
    height: 6px;
    background: #78350f;
    transform-origin: left center;
    z-index: -1
}

.adventure-panel {
    background: #fff7ed;
    color: #431407;
    border: 8px solid #92400e;
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    position: relative
}

.stamp {
    position: absolute;
    top: -10px;
    right: -10px;
    transform: rotate(20deg);
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #b91c1c;
    border: 4px double #b91c1c;
    padding: 5px 10px;
    font-size: 1.5rem;
    opacity: 0.8
}

.btn-adventure {
    background: #ea580c;
    color: white;
    border: none;
    padding: 12px 24px;
    font-family: 'Carter One';
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 0 #9a3412;
    transition: all 0.1s
}

.btn-adventure:active {
    transform: translateY(4px);
    box-shadow: none
}

.btn-adventure:hover {
    background: #c2410c
}

.operator-btn {
    background: #fed7aa;
    border: 2px solid #ea580c;
    width: 60px;
    height: 60px;
    font-size: 2rem;
    font-weight: bold;
    color: #9a3412;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.1s;
    display: flex;
    align-items: center;
    justify-content: center
}

.operator-btn:hover {
    background: #fdba74
}

.operator-btn.selected {
    background: #ea580c;
    color: white;
    border-color: #7c2d12
}