/* Modern Template - Index Style */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

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

body { 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6; 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh; 
    padding: 40px 20px;
}

.container { 
    max-width: 1000px; 
    margin: 0 auto; 
    background: white; 
    padding: 0;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: slideUp 0.6s ease-out;
}

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

header {
    text-align: center;
    padding: 60px 40px 40px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

h1 { 
    font-size: 3em; 
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.25em;
    opacity: 0.95;
    font-weight: 500;
}

.stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2.5em;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.9em;
    opacity: 0.9;
    margin-top: 8px;
    font-weight: 500;
}

nav {
    padding: 40px;
}

ul { 
    list-style: none; 
    padding: 0;
    display: grid;
    gap: 12px;
}

li { 
    margin: 0;
}

a { 
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px; 
    background: white;
    border-radius: 12px; 
    text-decoration: none; 
    color: #1e293b; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f1f5f9;
    font-size: 1.05em;
    font-weight: 500;
}

a:hover { 
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white; 
    transform: translateX(8px);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.number {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    min-width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.95em;
}

a:hover .number {
    background: white;
    color: #6366f1;
}

footer {
    padding: 40px;
    background: #f8fafc;
    text-align: center;
    color: #64748b;
    font-size: 0.95em;
}

footer p {
    margin-bottom: 12px;
}

footer strong {
    color: #334155;
}

.disclaimer {
    margin-top: 24px;
    padding: 20px;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    font-size: 0.8em;
    text-align: left;
    color: #92400e;
    line-height: 1.6;
}

.disclaimer strong {
    color: #92400e;
}

/* Animations */
li {
    animation: fadeInUp 0.5s ease-out backwards;
}

li:nth-child(1) { animation-delay: 0.05s; }
li:nth-child(2) { animation-delay: 0.1s; }
li:nth-child(3) { animation-delay: 0.15s; }
li:nth-child(4) { animation-delay: 0.2s; }
li:nth-child(5) { animation-delay: 0.25s; }

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

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 20px 10px;
    }
    
    .container {
        border-radius: 16px;
    }
    
    header {
        padding: 40px 24px 30px;
    }
    
    h1 {
        font-size: 2.2em;
    }
    
    .subtitle {
        font-size: 1.1em;
    }
    
    .stats {
        gap: 24px;
    }
    
    .stat-value {
        font-size: 2em;
    }
    
    nav {
        padding: 24px 20px;
    }
    
    a {
        padding: 16px 20px;
        font-size: 1em;
    }
    
    .number {
        min-width: 36px;
        height: 36px;
        font-size: 0.9em;
    }
    
    footer {
        padding: 30px 20px;
    }
}

/* Dark mode support (future) */
@media (prefers-color-scheme: dark) {
    /* Можно добавить темную тему */
}
