/*! Version: 1.5 | Date: 2025-11-25 */
/* critical css content */

/* Базовые сбросы */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

body {
    color: #666;
    font-family: Arial, sans-serif;
}

/* Класс для скрытия элементов визуально, но оставления доступными для скринридеров */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Шапка */
.header_top_area {
    height: 40px;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header_bottom_area {
    margin-bottom: 5px;
}

.logo {
    margin-top: 10px;
}

.logo img {
    width: 250px;
    height: 125px;
    border: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
    transform: translateZ(0);
}

.logo img:hover {
    opacity: 0.9;
}

/* МЕНЮ*/
:root {
    --primary: #0a1f3c;
    --primary-light: #1a3b6c;
    --accent: #00d4ff;
    --accent-hover: #00b8e0;
    --white: #ffffff;
    --gray-light: #f8fafc;
    --gray: #64748b;
    --gray-dark: #334155;
    --dark-bg: #ffffff;
    --dark-card: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --card-radius: 12px;
}

h3.cate {
    font-size: 1.5em;
    text-align: center;
}

.blog_page h2 {
    background: #D3D3D3;
    text-align: center;
    padding: 10px 0;
    margin: 0 0 10px 0;
    border-radius: 10px;
    font-size: 1.8em;
}

.blog_page h3 {
    text-align: center;
}

.banner_abrisburo_txt h4 {
    font-size: 16px;
    display: inline-block;
    transform: scale(1.2, 1);
}

.mainmenu {
    text-transform: uppercase;
}

.menu-container {
    max-width: 1440px;
    margin: 0 auto;
}

.main-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, auto));
    gap: 2px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.main-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
}

.menu-item {
    position: relative;
}

.menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #485563 0%, #29323c 100%);
    border-radius: 10px;
    margin: 2px;
    border: 2px solid transparent;
    transform: translateZ(0);
    will-change: transform, background-color;
}

.menu-link:hover {
    background: linear-gradient(135deg, #4a6572 0%, #34495e 100%);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.menu-link i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-link i {
    transform: rotate(180deg);
}

.menu > li > a, .menu ul li a {
    text-indent: 0.5em;
}

/* Выпадающие меню */
#nav > li ul ul {
    background: #e6e6e1;
    left: 120px;
    position: absolute;
}

nav ul ul {
    display: none;
    top: 100%;
}

nav ul ul li {
    display: list-item;
    position: relative;
}

nav ul ul ul {
    top: 0;
    left: 100%;
}

/* Подменю первого уровня */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: linear-gradient(145deg, #34495e, #2c3e50);
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    transform: translateZ(0);
    will-change: transform, opacity;
}

.menu-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-link {
    display: block;
    padding: 7px 10px;
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 2px;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.submenu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, #4ecdc4, #45b7d1);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.submenu-link:hover {
    color: #ecf0f1;
    background: linear-gradient(135deg, #4a6572 0%, #34495e 100%);
    padding-left: 30px;
}

.submenu-link:hover::before {
    transform: scaleY(1);
}

/* Подменю второго уровня */
.subsubmenu {
    position: absolute;
    left: 100%;
    top: 0;
    width: 250px;
    background: linear-gradient(145deg, #3d566e, #2c3e50);
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    transform: translateZ(0);
    will-change: transform, opacity;
}

.submenu-item {
    position: relative;
}

.submenu-item:hover .subsubmenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.subsubmenu-link {
    display: block;
    padding: 7px 10px;
    color: #95a5a6;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 2px;
    font-size: 0.9em;
    transform: translateZ(0);
}

.subsubmenu-link:hover {
    color: #ecf0f1;
    background: linear-gradient(135deg, #5d6d7e 0%, #34495e 100%);
    padding-left: 25px;
}

/* Вафельное меню для мобильных устройств */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background: yellow;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    z-index: 1002;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateZ(0);
}

.menu-text {
    color: black;
    font-size: 1.8rem;
    font-weight: 600;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 24px;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: black;
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.mobile-menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 85, 96, 0.95), rgba(45, 55, 72, 0.95));
    backdrop-filter: blur(10px);
    z-index: 1001;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
    transform: translateZ(0);
    will-change: transform;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e2e8f0;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateZ(0);
}

.mobile-menu-close::before {
    content: "✕";
    font-size: 2rem;
    font-weight: 700;
}

.mobile-menu-list {
    list-style: none;
    padding: 20px 0;
}

.mobile-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.mobile-menu-link:hover {
    background: linear-gradient(135deg, rgba(90, 101, 112, 0.5), rgba(60, 70, 85, 0.5));
    color: #ffffff;
}

.mobile-menu-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    color: #a0aec0;
}

.mobile-submenu-toggle {
    margin-left: auto;
    background: none;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateZ(0);
}

.mobile-submenu-toggle::before {
    content: "▼";
    font-size: 1.5rem;
    font-weight: 700;
}

.mobile-submenu-toggle.active {
    transform: rotate(180deg);
    color: #63b3ed;
}

.mobile-submenu {
    display: none;
    background: rgba(0, 0, 0, 0.2);
    list-style: none;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu-item {
    border-bottom: none;
}

.mobile-submenu-link {
    padding-left: 52px;
    font-size: 1.4rem;
    transform: translateZ(0);
}

.mobile-submenu-link .mobile-menu-icon {
    font-size: 1rem;
}

/* Адаптивность */
@media (max-width: 992px) {
    .menu-container {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-overlay.active,
    .mobile-menu.active {
        display: block;
    }
}


/* ===== ДОСТУПНЫЙ СЛАЙДЕР ===== */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 75vh;
    margin: 0;
    padding: 0;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.slide[aria-hidden="true"] {
    opacity: 0;
    pointer-events: none;
}

.slide[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.slide-content {
    max-width: 700px;
    width: 90%;
    margin: 0 auto;
    padding: 40px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    color: white;
}

.slide p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 25px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.slide-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slide-btn:hover,
.slide-btn:focus {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

/* УМЕНЬШЕННЫЕ КНОПКИ ВПЕРЕД/НАЗАД */
.btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    padding: 12px 20px; /* Уменьшено с 15px 25px */
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.6rem; /* без изм. 1.6rem */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    backdrop-filter: blur(7px);
    display: flex;
    align-items: center;
    gap: 6px; /* Уменьшено с 8px */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 1);
}

.btn:hover,
.btn:focus {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* УМЕНЬШЕННЫЕ СТИЛИ ДЛЯ ТОЧЕК */
.slider-dots {
    display: flex;
    gap: 16px; /* Уменьшено с 20px */
    padding: 12px 20px; /* Уменьшено с 15px 25px */
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.dot {
    width: 16px; /* Уменьшено с 20px */
    height: 16px; /* Уменьшено с 20px */
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(255, 255, 255, 0.6); /* Уменьшено с 3px */
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.dot.active {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.4);
    box-shadow: 
        0 0 0 3px rgba(255, 255, 255, 0.3), /* Уменьшено с 4px */
        0 0 15px rgba(255, 255, 255, 0.8), /* Уменьшено с 20px */
        0 0 25px rgba(255, 255, 255, 0.4); /* Уменьшено с 30px */
}

/* Анимация пульсации для активной точки */
.dot.active::after {
    content: '';
    position: absolute;
    top: -4px; /* Уменьшено с -6px */
    left: -4px; /* Уменьшено с -6px */
    right: -4px; /* Уменьшено с -6px */
    bottom: -4px; /* Уменьшено с -6px */
    border: 2px solid #ffffff;
    border-radius: 50%;
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.dot[aria-selected="true"] {
    background: white;
    transform: scale(1.4);
    border-color: white;
    box-shadow: 
        0 0 0 3px rgba(255, 255, 255, 0.3), /* Уменьшено с 4px */
        0 0 15px rgba(255, 255, 255, 0.8), /* Уменьшено с 20px */
        0 0 25px rgba(255, 255, 255, 0.4); /* Уменьшено с 30px */
}

.dot[aria-selected="false"] {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1);
}

/* Улучшенные стили для доступности точек-вкладок */
.dot:focus {
    outline: 3px solid #00d4ff;
    outline-offset: 3px;
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.dot .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.timer-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
    overflow: hidden;
}

.timer-progress {
    height: 100%;
    width: 100%;
    background: white;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.1s linear;
}

/* Оптимизированные стили для изображений */
.social-icon,
.slide-image,
.logo img,
.icon-image {
    opacity: 1;
    transition: opacity 0.3s ease;
    transform: translateZ(0);
}

.social-icon:hover,
.slide-image:hover,
.logo img:hover,
.icon-image:hover {
    opacity: 0.9;
}

/* Специфические стили для иконок соцсетей */
.icon-livejournal,
.icon-yandex,
.icon-blogger,
.icon-liveinternet,
.icon-mailru,
.icon-ok,
.icon-tumblr,
.icon-vk,
.icon-youtube,
.icon-pinterest,
.icon-facebook,
.icon-instagram,
.icon-twitter,
.icon-rutube,
.icon-telegram {
    opacity: 1;
    transition: opacity 0.3s ease;
    transform: translateZ(0);
}

.icon-livejournal:hover,
.icon-yandex:hover,
.icon-blogger:hover,
.icon-liveinternet:hover,
.icon-mailru:hover,
.icon-ok:hover,
.icon-tumblr:hover,
.icon-vk:hover,
.icon-youtube:hover,
.icon-pinterest:hover,
.icon-facebook:hover,
.icon-instagram:hover,
.icon-twitter:hover,
.icon-rutube:hover,
.icon-telegram:hover {
    opacity: 0.8;
}

/* Медиа-запросы для адаптивности слайдера */
@media (max-width: 1200px) {
    .slide h2 {
        font-size: 3rem;
    }
    .slide p {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .slide h2 {
        font-size: 2.5rem;
    }
    .slide p {
        font-size: 1.1rem;
    }
    .slide-content {
        padding: 30px;
    }
		

}

@media (max-width: 768px) {
    .slider-container {
        height: 50vh;
    }
    .slide {
        padding: 20px;
    }
    .slide-content {
        padding: 20px;
    }
    .slide h2 {
        font-size: 2rem;
    }
    .slide p {
        font-size: 1rem;
    }
    .slider-controls {
        bottom: 20px;
        gap: 15px;
    }
    .btn {
        padding: 10px 16px; /* Уменьшено для мобильных */
        font-size: 1.3rem; /* Уменьшено для мобильных */
    }
    .slide-btn {
        font-size: 1.3rem;
    }
    /* Адаптивные точки для мобильных */
    .slider-dots {
        gap: 14px; /* Уменьшено */
        padding: 10px 16px; /* Уменьшено */
    }
    .dot {
        width: 14px; /* Уменьшено */
        height: 14px; /* Уменьшено */
    }
}

@media (max-width: 640px) {
    .slider-container {
        height: 45vh;
    }
    .slide {
        padding: 15px;
    }
    .slide-content {
        padding: 15px;
    }
    .slide h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .slide p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    .slider-controls {
        bottom: 15px;
        gap: 10px;
    }
    .btn {
        padding: 8px 14px; /* Уменьшено */
        font-size: 1rem; /* Уменьшено */
    }
    .slide-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
    .slider-dots {
        gap: 12px;
        padding: 8px 14px; /* Уменьшено */
    }
    .dot {
        width: 12px; /* Уменьшено */
        height: 12px; /* Уменьшено */
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 40vh;
    }
    .slide {
        padding: 10px;
    }
    .slide-content {
        padding: 15px;
    }
    .slide h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    .slide p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    .slider-controls {
        bottom: 10px;
        flex-wrap: wrap;
        gap: 8px;
    }
    .btn {
        padding: 6px 12px; /* Уменьшено */
        font-size: 0.9rem; /* Уменьшено */
    }
    .slide-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    .slider-dots {
        gap: 10px;
        padding: 6px 12px; /* Уменьшено */
    }
    .dot {
        width: 10px; /* Уменьшено */
        height: 10px; /* Уменьшено */
        border-width: 1.5px; /* Уменьшено */
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.logo a {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Критические утилиты */
.fix {
    overflow: hidden;
}

.alignleft {
    float: left;
    margin-right: 15px;
}

/* Дополнительные оптимизации для производительности */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .slide {
        transition: none;
    }
    
    .timer-progress {
        transition: none;
    }
    
    .dot.active::after {
        animation: none;
    }
}

/* Улучшенная поддержка GPU ускорения */
.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Доступность слайдера - улучшенные стили */
.slide[aria-hidden="true"] {
    opacity: 0;
    pointer-events: none;
}

.slide[aria-hidden="true"] * {
    pointer-events: none;
}

.slide[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.slide[aria-hidden="false"] * {
    pointer-events: auto;
}

/* Фокус для доступности */
.btn:focus,
.slide-btn:focus,
.dot:focus {
    outline: 2px solid #00d4ff;
    outline-offset: 2px;
}

/* Улучшенные стили для роли tablist и tab */
[role="tablist"] {
    display: flex;
    gap: 16px; /* Уменьшено с 20px */
}

[role="tab"] {
    cursor: pointer;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    width: 16px; /* Уменьшено с 20px */
    height: 16px; /* Уменьшено с 20px */
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.6); /* Уменьшено с 3px */
}

[role="tab"][aria-selected="true"] {
    background: white;
    transform: scale(1.4);
    border-color: white;
    box-shadow: 
        0 0 0 3px rgba(255, 255, 255, 0.3), /* Уменьшено с 4px */
        0 0 15px rgba(255, 255, 255, 0.8); /* Уменьшено с 20px */
}

[role="tab"][aria-selected="false"] {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1);
}

[role="tab"]:focus {
    outline: 3px solid #00d4ff;
    outline-offset: 3px;
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

/* Стили для скринридеров и доступности */
#slider-announcement {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Улучшенная доступность для навигации */
.prev-btn:focus,
.next-btn:focus {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}