html {
    font-size: 100%;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.8;
    background: #fff;
    color: #000;
    font-size: 1rem;
}

/* ===== изображения (БЕЗ МИГАНИЯ) ===== */
img {
    max-width: 100%;
    height: auto;
}

/* ===== skip link ===== */
.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 20px;
    top: 20px;
    background: #000;
    color: #fff;
    padding: 10px;
    z-index: 99999;
}

/* ===== панель ===== */
.vision-panel {
    position: sticky;
    top: 0;
    background: #004a87;
    color: white;
    padding: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 99999;
}

.vision-panel button {
    font-size: 18px;
    padding: 8px 14px;
    cursor: pointer;
}

/* ===== темы ===== */
body.theme-black {
    background: #000;
    color: #fff;
}

body.theme-black a {
    color: #ffff00;
}

body.theme-yellow {
    background: #000;
    color: #ffff00;
}

body.theme-yellow a {
    color: #fff;
}

body.theme-white {
    background: #fff;
    color: #000;
}

/* ===== скрытие изображений ===== */
body.hide-images img {
    display: none;
}

/* ===== ссылки ===== */
a {
    text-decoration: underline;
}

/* ===== фокус ===== */
button:focus,
a:focus,
input:focus {
    outline: 4px solid red;
}

/* ===== контейнер ===== */
main#content {
    width: 80%;
    margin: 0 auto;
}