.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
}

.avatar {
    width: 256px;
    height: 256px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    object-fit: cover;
    
    background: rgba(40, 40, 40, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    
    transition: all 0.3s ease;
}

.avatar:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 217, 255, 0.2);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #00d9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #00d9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
    opacity: 0.8;
    color: #cccccc;
}

.hero-subtitle2 {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    color: #cccccc;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.projects-btn {
    border-color: rgba(0, 217, 255, 0.3);
    color: #00d9ff;
}

.blog-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.blog-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
    color: white;
}

/* Адаптивность */

@media (max-width: 768px) {
    .hero {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title2 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-subtitle2 {
        font-size: 1rem;
    }
    
    .avatar {
        width: 150px;
        height: 150px;
    }
    
    .button-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 200px;
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
}