.projects-section {
    padding: 120px 2rem 50px;
    min-height: 100vh;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    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);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.1);
}

.project-image {
    width: 256px;
    height: 256px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.project-info h3 {
    color: #00d9ff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project-info p {
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.project-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.map-container {
    width: 256px;
    height: 256px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto 1.5rem auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#mini-map {
    width: 100%;
    height: 100%;
    border-radius: 18px;
}

/* Адаптивность */

@media (max-width: 768px) {
    .projects-section {
        padding: 100px 1rem 30px;
    }
    
    .project-card {
        padding: 1.5rem;
    }
    
    .project-image {
        width: 200px;
        height: 200px;
    }
    
    .project-info h3 {
        font-size: 1.3rem;
    }
    
    .project-info p {
        font-size: 0.95rem;
    }
    
    .map-container {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .project-card {
        padding: 1.2rem;
    }
    
    .project-image {
        width: 180px;
        height: 180px;
    }
    
    .project-links {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .project-link {
        width: 160px;
        text-align: center;
    }
    
    .map-container {
        width: 180px;
        height: 180px;
    }
}