
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(#000200, #021d00);
    color: #e9fa95;
}

.page-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.sidebar {
    width: 260px;
    background: #022300;
    padding: 20px;
    border-radius: 0 16px 16px 0;
    flex-shrink: 0;
}

.logo-block {
    text-align: center;
    margin-bottom: 20px;
}

.logo-block img {
    width: 120px;
    max-width: 100%;
    border-radius: 10px;
}

.menu {
    display: flex;
    flex-direction: column;
}

.menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    margin: 8px 0;
    padding: 6px 8px;
    border-radius: 6px;
    transition: 0.2s;
}

.menu a:hover {
    background: #2c7503;
}

.menu a:visited {
    color: #d63910;
}

.divider {
    height: 2px;
    background: #76ad20;
    opacity: 0.4;
    width: 80%;
    margin: 15px auto;
    border-radius: 2px;
}

.content {
    flex: 1;
    padding: 30px;
}

.content h1,
.content h2 {
    color: #ffffff;
    margin-top: 0;
}

.about-box {
    background: #021d00;
    padding: 16px;
    border-radius: 12px;
    border-left: 4px solid #76ad20;
    margin-top: 20px;
}

.buttons-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.round-button {
    padding: 12px 22px;
    border-radius: 30px;
    background: #76ad20;
    color: #000200;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}

.round-button:hover {
    background: #c3e63e;
}


.footer {
    background: #022300;
    text-align: center;
    color: #76ad20;
    padding: 10px;
    font-size: 14px;
}

/* ===== КАРТА БЕЗ ФОНА ===== */

.map {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 1 / 1;
    margin: 40px auto;
}

/* все элементы */
.zone {
    position: absolute;
    transform: translate(-50%, -50%);
    transition: 0.25s ease;
    cursor: pointer;
}

.zone img {
    width: 100%;
    max-width: 220px;
    display: block;
    pointer-events: none;
}

/* ===== ПОЗИЦИИ (звезда) ===== */

/* центр */
.center {
    top: 50%;
    left: 50%;
    z-index: 2;
}

/* лучи */
.a { top: 75%; left: 25%; }
.b { top: 25%; left: 20%; }
.c { top: 20%; left: 75%; }
.d { top: 65%; left: 80%; }
.e { top: 85%; left: 55%; }

/* ===== ЭФФЕКТЫ ===== */

/* ПК */
.zone:hover {
    transform: translate(-50%, -60%) scale(1.05);
    filter: brightness(1.2);
    z-index: 3;
}

/* телефон */
.zone:active {
    transform: translate(-50%, -55%) scale(0.97);
}

/* чуть меньше центр */
.center img {
    max-width: 160px;
}


@media (max-width: 900px) {
    .page-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        border-radius: 0;
    }
}

@media (max-width: 600px) {
    .buttons-row {
        flex-direction: column;
    }

    .round-button {
        width: 100%;
        text-align: center;
    }

    .about-box {
        width: 100%;
    }
}
