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

.construction-panel {
    background: #00011A;
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    transition: background 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ТЕМНАЯ ТЕМА */
.construction-dashboard.night-theme {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: 
        radial-gradient(ellipse at 20% 20%, #00022C 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, #00011A 0%, transparent 50%),
        linear-gradient(135deg, #00011A 0%, #00022C 50%, #00011A 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* СВЕТЛАЯ ТЕМА - БЕЛЫЙ С ЯРКИМ ЗОЛОТОМ */
.construction-dashboard.light-theme {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: 
        linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 50%, #FFFFFF 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    color: #2C2C2C;
}

/* Слой звезд для темной темы */
.stars-layer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    background-image: 
        radial-gradient(1px 1px at 20% 30%, #FFFFFF 1px, transparent 0),
        radial-gradient(1px 1px at 40% 70%, #FFFFFF 1px, transparent 0),
        radial-gradient(1px 1px at 60% 20%, #FFFFFF 1px, transparent 0),
        radial-gradient(1px 1px at 80% 50%, #FFFFFF 1px, transparent 0),
        radial-gradient(2px 2px at 10% 80%, #FFE28A 2px, transparent 0),
        radial-gradient(2px 2px at 90% 10%, #FFE28A 2px, transparent 0),
        radial-gradient(2px 2px at 30% 40%, #FFE28A 2px, transparent 0);
    background-size: 400px 400px;
    animation: starsMove 180s linear infinite;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Слой темно-синих искр для светлой темы */
.blue-sparks-layer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Создание множества синих искр через псевдоэлементы */
.blue-spark {
    position: absolute;
    background: radial-gradient(circle, #00022C 0%, rgba(0, 2, 44, 0.3) 70%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(0.5px);
    box-shadow: 0 0 8px rgba(0, 2, 44, 0.6);
    animation: sparkFloat linear infinite;
}

/* Анимации для разных синих искр */
.blue-spark:nth-child(1) {
    width: 3px;
    height: 3px;
    top: 10%;
    left: 15%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.blue-spark:nth-child(2) {
    width: 2px;
    height: 2px;
    top: 20%;
    left: 80%;
    animation-duration: 15s;
    animation-delay: 2s;
}

.blue-spark:nth-child(3) {
    width: 4px;
    height: 4px;
    top: 40%;
    left: 10%;
    animation-duration: 18s;
    animation-delay: 4s;
}

.blue-spark:nth-child(4) {
    width: 2px;
    height: 2px;
    top: 60%;
    left: 90%;
    animation-duration: 14s;
    animation-delay: 1s;
}

.blue-spark:nth-child(5) {
    width: 3px;
    height: 3px;
    top: 80%;
    left: 20%;
    animation-duration: 16s;
    animation-delay: 3s;
}

.blue-spark:nth-child(6) {
    width: 2px;
    height: 2px;
    top: 30%;
    left: 60%;
    animation-duration: 20s;
    animation-delay: 5s;
}

.blue-spark:nth-child(7) {
    width: 4px;
    height: 4px;
    top: 70%;
    left: 40%;
    animation-duration: 13s;
    animation-delay: 2.5s;
}

.blue-spark:nth-child(8) {
    width: 3px;
    height: 3px;
    top: 50%;
    left: 85%;
    animation-duration: 17s;
    animation-delay: 6s;
}

.blue-spark:nth-child(9) {
    width: 2px;
    height: 2px;
    top: 25%;
    left: 30%;
    animation-duration: 19s;
    animation-delay: 1.5s;
}

.blue-spark:nth-child(10) {
    width: 3px;
    height: 3px;
    top: 85%;
    left: 70%;
    animation-duration: 21s;
    animation-delay: 4.5s;
}

/* Анимация плавающих синих искр */
@keyframes sparkFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Дополнительный слой темно-синих частиц */
.blue-particles-layer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-image: 
        radial-gradient(2px 2px at 10% 20%, rgba(0, 2, 44, 0.3) 2px, transparent 0),
        radial-gradient(1px 1px at 25% 35%, rgba(0, 2, 44, 0.2) 1px, transparent 0),
        radial-gradient(1px 1px at 40% 50%, rgba(0, 2, 44, 0.2) 1px, transparent 0),
        radial-gradient(2px 2px at 55% 65%, rgba(0, 2, 44, 0.3) 2px, transparent 0),
        radial-gradient(1px 1px at 70% 80%, rgba(0, 2, 44, 0.2) 1px, transparent 0),
        radial-gradient(2px 2px at 85% 95%, rgba(0, 2, 44, 0.3) 2px, transparent 0),
        radial-gradient(1px 1px at 95% 15%, rgba(0, 2, 44, 0.2) 1px, transparent 0),
        radial-gradient(2px 2px at 15% 85%, rgba(0, 2, 44, 0.3) 2px, transparent 0),
        radial-gradient(1px 1px at 30% 40%, rgba(0, 2, 44, 0.2) 1px, transparent 0),
        radial-gradient(2px 2px at 45% 25%, rgba(0, 2, 44, 0.3) 2px, transparent 0),
        radial-gradient(1px 1px at 60% 60%, rgba(0, 2, 44, 0.2) 1px, transparent 0),
        radial-gradient(2px 2px at 75% 75%, rgba(0, 2, 44, 0.3) 2px, transparent 0),
        radial-gradient(1px 1px at 90% 30%, rgba(0, 2, 44, 0.2) 1px, transparent 0),
        radial-gradient(2px 2px at 35% 90%, rgba(0, 2, 44, 0.3) 2px, transparent 0),
        radial-gradient(1px 1px at 50% 10%, rgba(0, 2, 44, 0.2) 1px, transparent 0);
    background-size: 800px 800px;
    animation: goldParticlesMove 200s linear infinite;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .stars-layer {
    opacity: 0;
}

.light-theme .blue-sparks-layer {
    opacity: 0.6;
}

.light-theme .blue-particles-layer {
    opacity: 0.3;
}

/* FIXED ШАПКА ДЛЯ ОБЕИХ ТЕМ */
.dashboard-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: #060718;
    border-bottom: 1px solid rgba(255, 226, 138, 0.1);
    box-shadow: 
        0 5px 14px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 226, 138, 0.05);
    backdrop-filter: blur(10px);
    padding: 0 15px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .dashboard-header-fixed {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 226, 138, 0.2);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
}

.header-content-fixed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    max-width: 100%;
    margin: 0 auto;
}

/* Контейнер для логотипа и кнопки темы */
.logo-with-theme {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ОСНОВНОЙ КОНТЕНТ С ОТСТУПОМ ДЛЯ ШАПКИ */
.main-content-with-header-offset {
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

/* Кнопка переключения темы */
.theme-toggle-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #0A0B23 0%, #0F1140 100%);
    color: #FFE28A;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 226, 138, 0.1);
    border: 1px solid rgba(255, 226, 138, 0.2);
}

.theme-toggle-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(255, 226, 138, 0.4),
        0 0 25px rgba(255, 226, 138, 0.3),
        inset 0 1px 0 rgba(255, 226, 138, 0.2);
}

.light-theme .theme-toggle-btn {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    color: #FFE28A;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 226, 138, 0.3);
}

.light-theme .theme-toggle-btn:hover {
    background: linear-gradient(135deg, #00011A 0%, #00022C 100%);
    color: #FFE28A;
    box-shadow: 
        0 8px 25px rgba(0, 2, 44, 0.4),
        0 0 20px rgba(0, 2, 44, 0.3),
        inset 0 1px 0 rgba(255, 226, 138, 0.2);
    border: 1px solid rgba(0, 2, 44, 0.3);
}

.theme-icon {
    position: absolute;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-icon.sun {
    opacity: 0;
    transform: translateY(20px) rotate(180deg);
}

.theme-icon.moon {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

.light-theme .theme-icon.sun {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

.light-theme .theme-icon.moon {
    opacity: 0;
    transform: translateY(-20px) rotate(-180deg);
}

/* ОБЩИЕ СТИЛИ ДЛЯ ОБЕИХ ТЕМ */
.logo {
    font-size: 22px;
    font-weight: 800;
    color: #FFE28A;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 
        0 0 15px rgba(255, 226, 138, 0.8),
        0 0 25px rgba(255, 226, 138, 0.4),
        0 1px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    padding: 12px 18px;
    background: linear-gradient(135deg, rgba(10, 11, 35, 0.7) 0%, rgba(6, 7, 24, 0.9) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 226, 138, 0.2);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 226, 138, 0.1);
    line-height: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .logo {
    color: #FFE28A;
    text-shadow: 
        0 0 20px rgba(255, 226, 138, 0.8),
        0 0 30px rgba(255, 226, 138, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.9) 100%);
    border: 1px solid rgba(255, 226, 138, 0.3);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.08),
        0 0 15px rgba(255, 226, 138, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.header-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-filter {
    padding: 10px 16px;
    border: none;
    background: 
        linear-gradient(135deg, #060718 0%, #0A0B23 50%, #060718 100%);
    color: #FFE28A;
    border-radius: 12px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 
        0 4px 11px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 226, 138, 0.1);
    border: 1px solid rgba(255, 226, 138, 0.15);
    min-width: 90px;
    text-align: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.nav-filter.active,
.nav-filter:hover {
    background: 
        linear-gradient(135deg, #FFE28A 0%, #D4B85A 100%);
    color: #00011A;
    transform: translateY(-3px);
    box-shadow: 
        0 6px 19px rgba(255, 226, 138, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: #FFE28A;
}

.light-theme .nav-filter {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    color: #FFE28A;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 226, 138, 0.2);
}

.light-theme .nav-filter.active,
.light-theme .nav-filter:hover {
    background: linear-gradient(135deg, #00011A 0%, #00022C 100%);
    color: #FFE28A;
    transform: translateY(-3px);
    box-shadow: 
        0 6px 19px rgba(0, 2, 44, 0.4),
        inset 0 1px 0 rgba(255, 226, 138, 0.2);
    border-color: rgba(0, 2, 44, 0.3);
}

/* СЕКЦИЯ БЫСТРЫЙ ДОСТУП */
.quick-access-container {
    position: relative;
    z-index: 5;
    margin-bottom: 25px;
    padding: 0 14px;
}

.quick-access-header {
    margin-bottom: 15px;
}

.quick-access-title-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quick-access-title {
    font-size: 14px;
    font-weight: 800;
    color: #FFE28A;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 
        0 0 12px rgba(255, 226, 138, 0.8),
        0 0 20px rgba(255, 226, 138, 0.4),
        0 1px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    padding: 9px 12px;
    background: linear-gradient(135deg, rgba(10, 11, 35, 0.7) 0%, rgba(6, 7, 24, 0.9) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 226, 138, 0.2);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 226, 138, 0.1);
    line-height: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .quick-access-title {
    color: #FFE28A;
    text-shadow: 
        0 0 15px rgba(255, 226, 138, 0.8),
        0 0 25px rgba(255, 226, 138, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.9) 100%);
    border: 1px solid rgba(255, 226, 138, 0.3);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.08),
        0 0 15px rgba(255, 226, 138, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.title-divider {
    width: 2px;
    height: 24px;
    background: linear-gradient(135deg, #FFE28A 0%, #D4B85A 50%, #FFE28A 100%);
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(255, 226, 138, 0.6);
    position: relative;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.title-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 226, 138, 0.3) 50%, transparent 100%);
    animation: titleShine 3s ease-in-out infinite;
}

.light-theme .title-divider {
    background: linear-gradient(135deg, #FFE28A 0%, #D4B85A 50%, #FFE28A 100%);
    box-shadow: 0 0 8px rgba(255, 226, 138, 0.6);
}

.light-theme .title-divider::before {
    background: linear-gradient(135deg, transparent 0%, rgba(255, 226, 138, 0.3) 50%, transparent 100%);
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    width: 100%;
}

.quick-access-card {
    background: #060718;
    border-radius: 16px;
    padding: 18px;
    border: 1px solid rgba(255, 226, 138, 0.1);
    box-shadow: 
        0 5px 14px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 226, 138, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.quick-access-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 226, 138, 0.2),
        inset 0 1px 0 rgba(255, 226, 138, 0.1);
    border-color: rgba(255, 226, 138, 0.3);
}

.light-theme .quick-access-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    border: 1px solid rgba(255, 226, 138, 0.2);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.05),
        0 0 10px rgba(255, 226, 138, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.light-theme .quick-access-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 0 20px rgba(0, 2, 44, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 2, 44, 0.3);
}

.quick-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 226, 138, 0.1);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .quick-card-header {
    border-bottom: 1px solid rgba(255, 226, 138, 0.15);
}

.quick-card-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 226, 138, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 226, 138, 0.2);
    box-shadow: 0 0 12px rgba(255, 226, 138, 0.2);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .quick-card-icon {
    background: rgba(255, 226, 138, 0.1);
    border: 1px solid rgba(255, 226, 138, 0.25);
    box-shadow: 0 0 10px rgba(255, 226, 138, 0.2);
    color: #FFE28A;
}

.quick-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #FFE28A;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 0 8px rgba(255, 226, 138, 0.6);
    flex: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .quick-card-title {
    color: #FFE28A;
    text-shadow: 0 0 8px rgba(255, 226, 138, 0.4);
}

.quick-card-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-link {
    display: block;
    padding: 10px 12px;
    background: linear-gradient(135deg, #0A0B23 0%, #0F1140 100%);
    color: #FFE28A !important;
    text-decoration: none;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255, 226, 138, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 6px rgba(255, 226, 138, 0.4);
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 226, 138, 0.08);
    position: relative;
    overflow: hidden;
}

.quick-link:hover {
    background: linear-gradient(135deg, #FFE28A 0%, #D4B85A 100%);
    color: #00011A !important;
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(255, 226, 138, 0.4),
        0 0 15px rgba(255, 226, 138, 0.3);
    border-color: #FFE28A;
    text-shadow: none;
}

.light-theme .quick-link {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    color: #FFE28A !important;
    border: 1px solid rgba(255, 226, 138, 0.2);
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.05),
        0 0 5px rgba(255, 226, 138, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 4px rgba(255, 226, 138, 0.3);
}

.light-theme .quick-link:hover {
    background: linear-gradient(135deg, #00011A 0%, #00022C 100%);
    color: #FFE28A !important;
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(0, 2, 44, 0.4),
        0 0 15px rgba(0, 2, 44, 0.3);
    border-color: rgba(0, 2, 44, 0.3);
    text-shadow: 0 0 6px rgba(255, 226, 138, 0.6);
}

/* СЕКЦИЯ СЕРВИСОВ */
.services-container {
    position: relative;
    z-index: 5;
    margin: 25px 0;
    padding: 0 14px;
}

.services-header {
    margin-bottom: 15px;
}

.services-title-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.services-title {
    font-size: 14px;
    font-weight: 800;
    color: #FFE28A;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 
        0 0 12px rgba(255, 226, 138, 0.8),
        0 0 20px rgba(255, 226, 138, 0.4),
        0 1px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    padding: 9px 12px;
    background: linear-gradient(135deg, rgba(10, 11, 35, 0.7) 0%, rgba(6, 7, 24, 0.9) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 226, 138, 0.2);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 226, 138, 0.1);
    line-height: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .services-title {
    color: #FFE28A;
    text-shadow: 
        0 0 15px rgba(255, 226, 138, 0.8),
        0 0 25px rgba(255, 226, 138, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.9) 100%);
    border: 1px solid rgba(255, 226, 138, 0.3);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.08),
        0 0 15px rgba(255, 226, 138, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.services-grid-compact {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
}

.service-item-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 8px;
    background: #060718;
    border-radius: 12px;
    border: 1px solid rgba(255, 226, 138, 0.08);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 226, 138, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 60px;
}

.service-item-compact:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.4),
        0 0 12px rgba(255, 226, 138, 0.1),
        inset 0 1px 0 rgba(255, 226, 138, 0.05);
    border-color: rgba(255, 226, 138, 0.2);
    background: linear-gradient(135deg, #0A0B23 0%, #060718 100%);
}

.light-theme .service-item-compact {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    border: 1px solid rgba(255, 226, 138, 0.15);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.03),
        0 0 5px rgba(255, 226, 138, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.light-theme .service-item-compact:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.05),
        0 0 12px rgba(0, 2, 44, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 2, 44, 0.3);
    background: linear-gradient(135deg, #00011A 0%, #00022C 100%);
}

.service-icon-compact {
    font-size: 18px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 226, 138, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(255, 226, 138, 0.15);
    box-shadow: 
        0 0 6px rgba(255, 226, 138, 0.1),
        inset 0 1px 0 rgba(255, 226, 138, 0.05);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .service-icon-compact {
    background: rgba(255, 226, 138, 0.1);
    border: 1px solid rgba(255, 226, 138, 0.2);
    box-shadow: 
        0 0 6px rgba(255, 226, 138, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    color: #FFE28A;
}

.light-theme .service-item-compact:hover .service-icon-compact {
    background: rgba(255, 226, 138, 0.2);
    border: 1px solid rgba(255, 226, 138, 0.3);
    box-shadow: 
        0 0 12px rgba(255, 226, 138, 0.3),
        inset 0 1px 0 rgba(255, 226, 138, 0.1);
    color: #FFE28A;
}

.service-item-compact:hover .service-icon-compact {
    background: rgba(255, 226, 138, 0.12);
    box-shadow: 
        0 0 10px rgba(255, 226, 138, 0.2),
        inset 0 1px 0 rgba(255, 226, 138, 0.1);
    transform: scale(1.1);
}

.service-name-compact {
    font-size: 10px;
    font-weight: 600;
    color: #FFE28A;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 0 6px rgba(255, 226, 138, 0.4);
    line-height: 1.2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .service-name-compact {
    color: #FFE28A;
    text-shadow: 0 0 6px rgba(255, 226, 138, 0.3);
}

.light-theme .service-item-compact:hover .service-name-compact {
    color: #FFE28A;
    text-shadow: 0 0 8px rgba(255, 226, 138, 0.6);
}

/* ФИЛЬТРЫ И ОБЪЕКТЫ */
.filters-container {
    position: relative;
    z-index: 10;
    margin: 25px 0 19px 0;
    padding: 0 14px;
}

.filters-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.filters-left-section {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.objects-title-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
}

.objects-title {
    font-size: 14px;
    font-weight: 800;
    color: #FFE28A;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 
        0 0 12px rgba(255, 226, 138, 0.8),
        0 0 20px rgba(255, 226, 138, 0.4),
        0 1px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    padding: 9px 12px;
    background: linear-gradient(135deg, rgba(10, 11, 35, 0.7) 0%, rgba(6, 7, 24, 0.9) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 226, 138, 0.2);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 226, 138, 0.1);
    margin-bottom: 0;
    line-height: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .objects-title {
    color: #FFE28A;
    text-shadow: 
        0 0 15px rgba(255, 226, 138, 0.8),
        0 0 25px rgba(255, 226, 138, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.9) 100%);
    border: 1px solid rgba(255, 226, 138, 0.3);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.08),
        0 0 15px rgba(255, 226, 138, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.status-filters,
.category-filters-right {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.category-filters-right {
    margin-left: 0;
}

.monolithic-btn {
    padding: 10px 15px;
    border: none;
    background: 
        linear-gradient(135deg, #060718 0%, #0A0B23 50%, #060718 100%);
    color: #FFE28A;
    border-radius: 10px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 
        0 4px 11px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 226, 138, 0.1);
    border: 1px solid rgba(255, 226, 138, 0.15);
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.monolithic-btn.active,
.monolithic-btn:hover {
    background: 
        linear-gradient(135deg, #FFE28A 0%, #D4B85A 100%);
    color: #00011A;
    transform: translateY(-3px);
    box-shadow: 
        0 6px 19px rgba(255, 226, 138, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: #FFE28A;
}

.light-theme .monolithic-btn {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    color: #FFE28A;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.05),
        0 0 5px rgba(255, 226, 138, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 226, 138, 0.2);
}

.light-theme .monolithic-btn.active,
.light-theme .monolithic-btn:hover {
    background: linear-gradient(135deg, #00011A 0%, #00022C 100%);
    color: #FFE28A;
    transform: translateY(-3px);
    box-shadow: 
        0 6px 19px rgba(0, 2, 44, 0.4),
        inset 0 1px 0 rgba(255, 226, 138, 0.2);
    border-color: rgba(0, 2, 44, 0.3);
}

/* ОСНОВНОЙ КОНТЕНТ */
.dashboard-main-container {
    display: flex;
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

.fixed-column {
    position: absolute;
    width: 173px;
    z-index: 20;
    background: transparent;
    top: 14px;
    left: 15px;
}

.scrollable-columns {
    margin-left: 187px;
    width: calc(100% - 187px);
    overflow-x: auto;
}

.objects-scroll-container {
    width: 100%;
    overflow-x: auto;
    padding: 14px 0 0 0;
    position: relative;
    z-index: 1;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.objects-scroll-container::-webkit-scrollbar {
    display: none;
}

.objects-wrapper {
    display: flex;
    gap: 14px;
    padding: 0 19px;
    width: max-content;
    min-width: 100%;
    align-items: flex-start;
}

.object-column {
    flex: 0 0 auto;
    width: 173px;
    background: #060718;
    border-radius: 16px;
    box-shadow: 
        0 5px 14px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 226, 138, 0.05);
    overflow: hidden;
    border: 1px solid rgba(255, 226, 138, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 776px;
    display: flex;
    flex-direction: column;
}

.object-column:hover {
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 226, 138, 0.3),
        inset 0 1px 0 rgba(255, 226, 138, 0.1);
    border-color: rgba(255, 226, 138, 0.4);
    transform: translateY(-5px);
}

.light-theme .object-column {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    border: 1px solid rgba(255, 226, 138, 0.2);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.05),
        0 0 10px rgba(255, 226, 138, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.light-theme .object-column:hover {
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 0 20px rgba(0, 2, 44, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 2, 44, 0.3);
    transform: translateY(-5px);
}

.column-header {
    padding: 12px 10px;
    background: 
        linear-gradient(135deg, #0A0B23 0%, #060718 100%);
    text-align: center;
    border-bottom: 1px solid rgba(255, 226, 138, 0.1);
    position: relative;
    min-height: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .column-header {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    border-bottom: 1px solid rgba(255, 226, 138, 0.15);
}

.object-title {
    font-size: 12px;
    font-weight: 800;
    color: #FFE28A;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
    text-shadow: 
        0 0 10px rgba(255, 226, 138, 0.6),
        0 1px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .object-title {
    color: #FFE28A;
    text-shadow: 
        0 0 10px rgba(255, 226, 138, 0.5),
        0 1px 3px rgba(0, 0, 0, 0.2);
}

.column-responsible {
    font-size: 9px;
    font-weight: 600;
    color: #FFFFFF !important;
    letter-spacing: 0.4px;
    opacity: 0.9;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.4) !important;
    line-height: 1.2;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .column-responsible {
    color: #666666 !important;
    text-shadow: none !important;
}

.object-card {
    min-height: 70px;
    padding: 8px 10px;
    background: 
        linear-gradient(135deg, #080920 0%, #0A0B23 100%);
    border-bottom: 1px solid rgba(255, 226, 138, 0.04);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.object-card:last-child {
    border-bottom: none;
}

.light-theme .object-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    border-bottom: 1px solid rgba(255, 226, 138, 0.1);
}

.info-column .object-card {
    gap: 4px;
}

.object-info {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A0B23 0%, #0F1140 100%);
    color: #FFE28A;
    font-size: 9px;
    font-weight: 600;
    text-align: center;
    padding: 6px 4px;
    border-radius: 8px;
    min-height: 20px;
    line-height: 1.1;
    border: 1px solid rgba(255, 226, 138, 0.1);
    text-shadow: 0 0 6px rgba(255, 226, 138, 0.4);
    flex-shrink: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .object-info {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    color: #FFE28A;
    border: 1px solid rgba(255, 226, 138, 0.15);
    text-shadow: 0 0 4px rgba(255, 226, 138, 0.3);
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.object-status {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A0B23 0%, #0F1140 100%);
    color: #FFE28A;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    padding: 8px 6px;
    border-radius: 8px;
    min-height: 24px;
    line-height: 1.1;
    border: 1px solid rgba(255, 226, 138, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-shadow: 0 0 8px rgba(255, 226, 138, 0.6);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 226, 138, 0.08);
    flex: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .object-status {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    color: #FFE28A;
    border: 1px solid rgba(255, 226, 138, 0.15);
    text-shadow: 0 0 6px rgba(255, 226, 138, 0.4);
    box-shadow: 
        0 3px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.object-status.active {
    background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
    color: #00011A;
    border-color: #00ff88;
    text-shadow: none;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.object-status.inactive {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #FFFFFF;
    border-color: #ff4444;
    text-shadow: none;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.4);
}

.object-status.on-hold {
    background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
    color: #00011A;
    border-color: #ffaa00;
    text-shadow: none;
    box-shadow: 0 0 15px rgba(255, 170, 0, 0.4);
}

.light-theme .object-status.active {
    background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
    color: #00011A;
}

.light-theme .object-status.inactive {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #FFFFFF;
}

.light-theme .object-status.on-hold {
    background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
    color: #00011A;
}

.info-column .task-responsible {
    font-size: 8px;
    padding: 5px 4px;
    min-height: 18px;
    line-height: 1.1;
    background: rgba(10, 11, 35, 0.7);
    border-radius: 6px;
    border: 1px solid rgba(255, 226, 138, 0.1);
    color: #FFFFFF !important;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.4) !important;
    flex-shrink: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .info-column .task-responsible {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 226, 138, 0.15);
    color: #666666 !important;
    text-shadow: none !important;
    box-shadow: 
        0 1px 4px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.object-column:not(.info-column) .object-card {
    padding: 0;
    min-height: auto;
}

.card-button-container,
.card-responsible-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
}

.card-button-container {
    align-items: flex-end;
    padding-top: 8px;
}

.card-responsible-container {
    align-items: flex-start;
    padding-bottom: 8px;
}

.task-btn {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    font-size: 10px;
    font-weight: 700;
    min-height: 45px;
    background: 
        linear-gradient(135deg, #0A0B23 0%, #0F1140 100%);
    color: #FFE28A !important;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.2;
    border: 1px solid rgba(255, 226, 138, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-shadow: 
        0 0 8px rgba(255, 226, 138, 0.6),
        0 1px 3px rgba(0, 0, 0, 0.8);
    box-shadow: 
        0 3px 8px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 226, 138, 0.08);
    position: relative;
    overflow: hidden;
}

.task-btn:hover {
    background: 
        linear-gradient(135deg, #FFE28A 0%, #D4B85A 100%);
    color: #00011A !important;
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(255, 226, 138, 0.6),
        0 0 30px rgba(255, 226, 138, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: #FFE28A;
    text-shadow: none;
}

.light-theme .task-btn {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    color: #FFE28A !important;
    border: 1px solid rgba(255, 226, 138, 0.2);
    text-shadow: 0 0 6px rgba(255, 226, 138, 0.4);
    box-shadow: 
        0 3px 8px rgba(0, 0, 0, 0.05),
        0 0 8px rgba(255, 226, 138, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.light-theme .task-btn:hover {
    background: linear-gradient(135deg, #00011A 0%, #00022C 100%);
    color: #FFE28A !important;
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(0, 2, 44, 0.5),
        0 0 25px rgba(0, 2, 44, 0.3),
        inset 0 1px 0 rgba(255, 226, 138, 0.4);
    border-color: rgba(0, 2, 44, 0.3);
    text-shadow: 0 0 8px rgba(255, 226, 138, 0.6);
}

.object-column:not(.info-column) .task-responsible {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    font-size: 9px;
    font-weight: 600;
    color: #FFFFFF !important;
    min-height: 39px;
    background: rgba(10, 11, 35, 0.7);
    border-radius: 6px;
    border: 1px solid rgba(255, 226, 138, 0.1);
    text-shadow: 
        0 0 6px rgba(255, 255, 255, 0.4) !important,
        0 1px 2px rgba(0, 0, 0, 0.8);
    box-shadow: 
        0 1px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 226, 138, 0.05);
    text-align: center;
    line-height: 1.2;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .object-column:not(.info-column) .task-responsible {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 226, 138, 0.15);
    color: #666666 !important;
    text-shadow: none !important;
    box-shadow: 
        0 1px 4px rgba(0, 0, 0, 0.03),
        0 0 5px rgba(255, 226, 138, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* ОТДЕЛЫ */
.departments-container {
    position: relative;
    z-index: 5;
    margin: 30px 0;
    padding: 0 14px;
}

.departments-header {
    margin-bottom: 20px;
}

.departments-title-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
}

.departments-title {
    font-size: 14px;
    font-weight: 800;
    color: #FFE28A;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 
        0 0 12px rgba(255, 226, 138, 0.8),
        0 0 20px rgba(255, 226, 138, 0.4),
        0 1px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    padding: 9px 12px;
    background: linear-gradient(135deg, rgba(10, 11, 35, 0.7) 0%, rgba(6, 7, 24, 0.9) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 226, 138, 0.2);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 226, 138, 0.1);
    line-height: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .departments-title {
    color: #FFE28A;
    text-shadow: 
        0 0 15px rgba(255, 226, 138, 0.8),
        0 0 25px rgba(255, 226, 138, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.9) 100%);
    border: 1px solid rgba(255, 226, 138, 0.3);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.08),
        0 0 15px rgba(255, 226, 138, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.department-filters-right {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
    width: 100%;
}

.department-card {
    display: flex;
    background: #060718;
    border-radius: 16px;
    border: 1px solid rgba(255, 226, 138, 0.1);
    box-shadow: 
        0 5px 14px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 226, 138, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.department-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 226, 138, 0.15),
        inset 0 1px 0 rgba(255, 226, 138, 0.1);
    border-color: rgba(255, 226, 138, 0.2);
}

.light-theme .department-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    border: 1px solid rgba(255, 226, 138, 0.2);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.05),
        0 0 10px rgba(255, 226, 138, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.light-theme .department-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 0 20px rgba(0, 2, 44, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 2, 44, 0.3);
}

.department-main-info {
    flex: 0 0 240px;
    padding: 20px;
    border-right: 1px solid rgba(255, 226, 138, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .department-main-info {
    border-right: 1px solid rgba(255, 226, 138, 0.15);
}

.department-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.department-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 226, 138, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 226, 138, 0.2);
    box-shadow: 0 0 12px rgba(255, 226, 138, 0.2);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .department-icon {
    background: rgba(255, 226, 138, 0.1);
    border: 1px solid rgba(255, 226, 138, 0.25);
    box-shadow: 0 0 12px rgba(255, 226, 138, 0.2);
    color: #FFE28A;
}

.department-name {
    font-size: 14px;
    font-weight: 700;
    color: #FFE28A;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 0 8px rgba(255, 226, 138, 0.6);
    line-height: 1.2;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .department-name {
    color: #FFE28A;
    text-shadow: 0 0 8px rgba(255, 226, 138, 0.4);
}

.department-disk-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #0A0B23 0%, #0F1140 100%);
    color: #FFE28A;
    border: 1px solid rgba(255, 226, 138, 0.15);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 6px rgba(255, 226, 138, 0.4);
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 226, 138, 0.08);
}

.department-disk-btn:hover {
    background: linear-gradient(135deg, #FFE28A 0%, #D4B85A 100%);
    color: #00011A;
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(255, 226, 138, 0.4),
        0 0 15px rgba(255, 226, 138, 0.3);
    border-color: #FFE28A;
    text-shadow: none;
}

.light-theme .department-disk-btn {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    color: #FFE28A;
    border: 1px solid rgba(255, 226, 138, 0.2);
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.05),
        0 0 5px rgba(255, 226, 138, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 4px rgba(255, 226, 138, 0.3);
}

.light-theme .department-disk-btn:hover {
    background: linear-gradient(135deg, #00011A 0%, #00022C 100%);
    color: #FFE28A;
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(0, 2, 44, 0.4),
        0 0 15px rgba(0, 2, 44, 0.3);
    border-color: rgba(0, 2, 44, 0.3);
    text-shadow: 0 0 6px rgba(255, 226, 138, 0.6);
}

.department-manager {
    margin-top: auto;
}

.manager-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #FFE28A !important;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 0 6px rgba(255, 226, 138, 0.4) !important;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .manager-title {
    color: #FFE28A !important;
    text-shadow: 0 0 5px rgba(255, 226, 138, 0.3) !important;
}

.manager-name {
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF !important;
    margin-bottom: 6px;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.4) !important;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .manager-name {
    color: #333333 !important;
    text-shadow: none !important;
}

.manager-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-email,
.contact-phone {
    font-size: 10px;
    color: #FFFFFF !important;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.3) !important;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .contact-email,
.light-theme .contact-phone {
    color: #666666 !important;
    text-shadow: none !important;
}

.department-links {
    flex: 1;
    padding: 20px;
}

.links-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 10px;
    height: 100%;
}

.department-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    background: rgba(10, 11, 35, 0.5);
    color: #FFE28A !important;
    text-decoration: none;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    border: 1px solid rgba(255, 226, 138, 0.1);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 4px rgba(255, 226, 138, 0.3) !important;
    line-height: 1.2;
}

.department-link:hover {
    background: rgba(255, 226, 138, 0.1);
    border-color: rgba(255, 226, 138, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 226, 138, 0.2);
}

.light-theme .department-link {
    background: rgba(255, 255, 255, 0.9);
    color: #FFE28A !important;
    border: 1px solid rgba(255, 226, 138, 0.15);
    text-shadow: 0 0 4px rgba(255, 226, 138, 0.3) !important;
    box-shadow: 
        0 1px 4px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.light-theme .department-link:hover {
    background: rgba(0, 2, 44, 0.1);
    border-color: rgba(0, 2, 44, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 2, 44, 0.2);
    color: #FFE28A !important;
}

/* АНИМАЦИИ */
@keyframes starsMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 400px 400px;
    }
}

@keyframes goldParticlesMove {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 800px 800px, -800px 800px, 400px -400px, 200px 200px, -200px 200px, 300px -300px, -300px 300px, 100px 100px, -100px 100px, 150px -150px, -150px 150px, 250px 250px, -250px 250px, 350px -350px, -350px 350px, 500px 500px, -500px 500px, 600px -600px, -600px 600px, 700px 700px, -700px 700px, 800px -800px, -800px 800px, 900px 900px, -900px 900px;
    }
}

@keyframes titleShine {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.monolithic-btn.active {
    animation: gentlePulse 2s ease-in-out infinite;
}

@keyframes gentlePulse {
    0% { 
        box-shadow: 
            0 6px 19px rgba(255, 226, 138, 0.4);
    }
    50% { 
        box-shadow: 
            0 6px 19px rgba(255, 226, 138, 0.4),
            0 0 20px rgba(255, 226, 138, 0.8);
    }
    100% { 
        box-shadow: 
            0 6px 19px rgba(255, 226, 138, 0.4);
    }
}

.light-theme .monolithic-btn.active {
    animation: gentlePulseBlue 2s ease-in-out infinite;
}

@keyframes gentlePulseBlue {
    0% { 
        box-shadow: 
            0 6px 19px rgba(0, 2, 44, 0.4);
    }
    50% { 
        box-shadow: 
            0 6px 19px rgba(0, 2, 44, 0.4),
            0 0 20px rgba(0, 2, 44, 0.8);
    }
    100% { 
        box-shadow: 
            0 6px 19px rgba(0, 2, 44, 0.4);
    }
}

.object-column {
    animation: fadeInUp 0.5s ease-out;
}

.quick-access-card {
    animation: fadeInUp 0.5s ease-out 0.1s both;
}

.department-card {
    animation: fadeInUp 0.5s ease-out 0.2s both;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1200px) {
    .services-grid-compact {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content-fixed {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-with-theme {
        width: 100%;
        justify-content: space-between;
    }
    
    .header-nav {
        justify-content: center;
    }
    
    .filters-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .filters-left-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .objects-title-container {
        margin-bottom: 12px;
    }
    
    .category-filters-right {
        margin-left: 0;
    }
    
    .dashboard-main-container {
        flex-direction: column;
    }
    
    .fixed-column {
        width: 100%;
        position: relative;
        margin-bottom: 14px;
        top: auto !important;
        left: auto !important;
    }
    
    .scrollable-columns {
        margin-left: 0;
        width: 100%;
    }
    
    .object-column {
        height: auto;
    }
    
    .quick-access-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-access-card {
        margin-bottom: 15px;
    }
    
    .services-grid-compact {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
    
    .department-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .department-main-info {
        flex: none;
        border-right: none;
        border-bottom: 1px solid rgba(255, 226, 138, 0.1);
    }
    
    .light-theme .department-main-info {
        border-bottom: 1px solid rgba(255, 226, 138, 0.15);
    }
    
    .department-filters-right {
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* АДАПТАЦИЯ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ */
    .main-content-with-header-offset {
        padding-top: 120px;
    }
    
    .theme-toggle-btn {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .services-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }
    
    .service-item-compact {
        padding: 10px 6px;
        min-height: 50px;
        gap: 6px;
    }
    
    .service-icon-compact {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    
    .service-name-compact {
        font-size: 9px;
    }
    
    .department-filters-right {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .links-grid-compact {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
    }
    
    .main-content-with-header-offset {
        padding-top: 140px;
    }
}



