/* Дополнительные стили для улучшения внешнего вида */

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Улучшенные эффекты */
.cta-button:active {
    transform: translateY(0);
}

.status-table tr {
    transition: all 0.2s ease;
}

.status-table td:first-child {
    font-weight: 600;
}

/* Дополнительные утилиты */
.highlight {
    background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.2em;
    background-position: 0 88%;
    transition: background-size 0.25s ease-in;
}

.highlight:hover {
    background-size: 100% 88%;
}

/* Улучшения для мобильных устройств */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Тёмная тема (опционально) */
@media (prefers-color-scheme: dark) {
    body {
        background: #1a1a1a;
        color: #e0e0e0;
    }
    
    .status-table {
        background: #2a2a2a;
    }
    
    .status-table tr:hover {
        background-color: #333;
    }
}

/* Печать */
@media print {
    header, nav, footer, .cta-button {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h2 {
        page-break-before: always;
    }
    
    .status-table {
        page-break-inside: avoid;
    }
}

/* Accessibility improvements */
.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;
}

/* Focus indicators */
.nav-link:focus,
.cta-button:focus {
    outline: 3px solid #3498db;
    outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}