.likes-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 12vh;
    width: 100%;
    height: 88vh;
    
    background: rgba(0, 0, 0, 0.6);
    
    justify-content: center;
    align-items: center;
}

.likes-modal.show {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    width: 1080px;
    max-width: 90%;

    transition: height 0.4s ease;
    text-align: center;
    
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
}

#project-container {
    margin: 20px 0;
    font-size: 18px;
}

#like-skip-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.2s;
}

.btn.like {
    background: #4CAF50;
    color: white;
}

.btn.skip {
    background: #f44336;
    color: white;
}

.btn:hover {
    transform: scale(1.05);
}

/* кнопка лайков */
#submit-btn {
    background: linear-gradient(135deg, #4CAF50, #2e7d32);
    color: white;
}

#submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

/* кнопка рестарта */
#restart-btn {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
}

#restart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}