body{
    margin:0;
    padding:0;
    font-family:'Cinzel',serif;
    background:url('./dark_fog.jpg') no-repeat center center fixed;
    background-size:cover;
    color:#e5e5e5;
    overflow-x:hidden;
}

/* Туман */
.background-fog{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.55);
    backdrop-filter:blur(3px);
    z-index:-1;
}

/* НАВИГАЦИЯ */
.side-menu{
    position:fixed;
    left:0;
    top:0;
    width:260px;
    height:100%;
    background:rgba(20,20,20,0.85);
    padding:20px;
    border-right:2px solid #555;
    box-shadow:4px 0 20px rgba(0,0,0,0.6);
    z-index:10;
}

.side-menu h2{
    text-align:center;
    color:#ddd;
    font-size:22px;
    font-family:"IM Fell English SC", serif;
    margin-bottom:25px;
}

.side-menu ul{
    list-style:none;
    padding:0;
    margin:0;
}

.side-menu ul li{
    margin:12px 0;
}

.side-menu ul li a{
    color:#cfcfcf;
    text-decoration:none;
    font-size:18px;
    transition:0.3s;
    display:block;
    padding:4px 0;
}

.side-menu ul li a:hover{
    color:white;
    margin-left:6px;
}

.btn-generator-nav{
    display:block;
    margin-top:30px;
    padding:12px;
    background:#2d2d2d;
    border:1px solid #aaa;
    border-radius:6px;
    color:white;
    text-align:center;
    text-decoration:none;
    font-size:18px;
    transition:0.3s;
}

.btn-generator-nav:hover{
    background:#444;
    transform:scale(1.05);
}

/* КОНТЕНТ – УХОДИТ ВПРАВО, чтобы меню не перекрывало */
.content{
    margin-left:300px; /* Отступ равен ширине меню */
    padding:40px;
    max-width:1100px;
}

h1{
    font-size:46px;
    text-shadow:0 0 10px black;
    margin-bottom:20px;
}

/* КАРТА */
.map-container{
    margin-top:20px;
    width:100%;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 0 25px rgba(0,0,0,0.6);
}

.map-container img{
    width:100%;
    height:auto;
    display:block;
    border-radius:12px;
}

/* КНОПКА НАЗАД */
.back-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#2d2d2d;
    color:#fff;
    padding:12px 20px;
    border-radius:8px;
    font-size:16px;
    text-decoration:none;
    transition:0.3s;
    z-index:50;
}

.back-btn:hover{
    background:#444;
    transform:scale(1.05);
}