body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    background: linear-gradient(to bottom, #fff5e1, #fde2e4);
    color: #4a4a4a;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

h1 {
    font-size: 2.5em;
    font-weight: bold;
    color: #d77a61;
    margin-bottom: 10px;
}

#profile-pic {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 5px solid #d77a61;
    transition: transform 0.3s ease-in-out;
}

#profile-pic:hover {
    transform: scale(1.15);
}

h3 {
    font-size: 1.8em;
    margin-top: 30px;
    color: #d77a61;
}

.repo-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
    padding: 10px;
    justify-content: center;
}

.repo-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.repo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.repo-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.repo-card h4 {
    font-size: 1.2em;
    color: #d77a61;
    margin-bottom: 8px;
}

.repo-card p {
    font-size: 0.95em;
    color: #5a5a5a;
    margin-bottom: 10px;
    text-align: center;
}

.repo-card a {
    color: #d77a61;
    text-decoration: none;
    font-weight: bold;
    margin: 0 5px;
    display: inline-block;
    transition: color 0.3s ease-in-out;
}

.repo-card a:hover {
    text-decoration: underline;
    color: #b85642;
}

footer {
    margin-top: 40px;
    font-size: 0.9em;
    color: #d77a61;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2em;
    }
    #profile-pic {
        width: 100px;
        height: 100px;
    }
    .repo-card {
        padding: 15px;
    }
}
