/* Сброс стандартных стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Основные стили */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Контейнер */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка */
header {
    background: linear-gradient(135deg, #5063ba 0%, #7537b3 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Основной контент */
main {
    background: white;
    margin: -30px auto 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 40px 0;
}

/* Секции */
section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #667eea;
}

/* Секция навыков */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.skill-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.skill-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.skill-card ul {
    list-style: none;
}

.skill-card li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.skill-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Проекты */
.project-card {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.project-card.upcoming {
    border-left-color: #ccc;
    opacity: 0.7;
}

.project-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.project-card p {
    margin-bottom: 10px;
}

.project-card a {
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
}

.project-card a:hover {
    text-decoration: underline;
}

/* Контакты */
.contact {
    text-align: center;
}

.contact a {
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
}

.contact a:hover {
    text-decoration: underline;
}

.note {
    margin-top: 15px;
    font-style: italic;
    color: #666;
}

/* Подвал */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
}

.footer-note {
    margin-top: 10px;
    font-size: 0.9em;
    opacity: 0.7;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    section h2 {
        font-size: 1.5em;
    }
}
.hobbies ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.hobbies li {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}
