* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a192f;
    color: white;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

.desktop-layout {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Левое меню */
.desktop-left {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: rgba(10, 25, 47, 0.95);
    z-index: 100;
    padding: 20px;
}

/* Верхнее меню */
.desktop-top {
    position: fixed;
    left: 280px;
    top: 0;
    right: 280px;
    height: 80px;
    background: rgba(10, 25, 47, 0.95);
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

/* Правый виджет */
.desktop-right {
    position: fixed;
    right: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: rgba(10, 25, 47, 0.95);
    z-index: 100;
    padding: 20px;
}

/* Слайдер */
.desktop-slider {
    position: absolute;
    left: 280px;
    top: 80px;
    right: 280px;
    bottom: 0;
}

.desktop-slider .swiper {
    width: 100%;
    height: 100%;
}

.desktop-slider .swiper-slide {
    background: #0a192f;
    overflow-y: auto;
    padding: 20px;
}

/* Навигация */
.swiper-button-next,
.swiper-button-prev {
    color: #ff6b6b;
    background: rgba(255, 255, 255, 0.05);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}