@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: linear-gradient(120deg, #e0eafc 0%, #cfdef3 100%);
    color: #222;
    margin: 0;
    padding: 0;
}

main.wrap {
    max-width: 1000px;
    margin: 40px auto;
    padding: 32px 24px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

h1.entry-title {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

h2 {
    font-size: 1.7em;
    color: #4CAF50;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.project-subtitle {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    margin-bottom: 24px;
}

.project-intro {
    margin-bottom: 30px;
}

.project-screenshot {
    display: block;
    margin: 0 auto 18px auto;
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.highlight {
    color: #007BFF;
    font-weight: 700;
}

.project-details ul,
.skills-acquired ul,
.project-challenges ul {
    list-style-type: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.project-details li,
.skills-acquired li,
.project-challenges li {
    font-size: 1.13em;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
}

.technologies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #1c1c1c;
    padding: 20px;
    border-radius: 10px;
    gap: 20px;
    margin-bottom: 20px;
}

.tech-item {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    width: 140px;
    margin: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tech-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid #4CAF50;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tech-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.tech-item:hover img {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.tech-item p {
    margin-top: 10px;
    font-size: 1em;
    color: #4CAF50;
}

.button-link {
    text-decoration: none;
}

.btn {
    background: linear-gradient(90deg, #4CAF50 0%, #007BFF 100%);
    border: none;
    color: white;
    padding: 15px 35px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 25px;
    font-weight: 700;
    transition: background 0.4s, box-shadow 0.4s, transform 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn:hover {
    background: linear-gradient(90deg, #007BFF 0%, #4CAF50 100%);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    transform: translateY(-3px) scale(1.04);
}

@media (max-width: 768px) {
    main.wrap {
        padding: 10px;
    }
    .technologies {
        flex-direction: column;
        align-items: center;
    }
    .tech-item {
        width: 90vw;
        max-width: 300px;
    }
    .project-screenshot {
        max-width: 95vw;
    }
    h1.entry-title {
        font-size: 2em;
    }
    h2 {
        font-size: 1.2em;
    }
}