.github-container {
    padding: 25px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-family: 'Montserrat', sans-serif;
}

.github-container h2 {
    font-family: 'Lemon Milk', sans-serif;
    font-size: 1.5rem;
    color: #1dd1a1;
    text-align: center;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
    box-shadow: none;
    position: relative;
    top: -19px;
}

.github-search {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.github-search input {
    flex: 1;
    min-width: 220px;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    background-color: rgba(80, 110, 236, 0.12);
    color: #ffffff;
    font-size: 16px;
    outline: none;
    transition: 0.3s ease;
    box-shadow: inset 0 0 5px rgba(80, 110, 236, 0.25);
}

.github-search input::placeholder {
    color: #ccc;
}

.github-search input:focus {
    background-color: rgba(80, 110, 236, 0.2);
}

.github-search button {
    align-self: flex-end;
    padding: 12px 22px;
    font-family: 'LemonMilk', sans-serif;
    background: linear-gradient(135deg, #506EEC, #7d5fff);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(80, 110, 236, 0.4);
    font-family: 'Lemon Milk', sans-serif;
    color: white !important; 
}

.github-search button:hover {
    background-color: #3d53c0;
    transform: scale(1.05);
}

.github-profile {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f0f0f0;
    gap: 14px;
    text-align: center;
    transition: 0.4s ease;
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(80, 110, 236, 0.15);
}

.github-profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #506EEC;
    object-fit: cover;
    margin-bottom: 10px;
    box-shadow: 0 0 16px rgba(80, 110, 236, 0.4);
    transition: transform 0.3s ease;
}

.github-profile img:hover {
    transform: scale(1.05);
}

.github-profile h3 {
    font-family: 'LemonMilk', sans-serif;
    font-size: 22px;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 0 4px #506EEC;
}

.github-profile p {
    margin: 4px 0;
    font-size: 15.5px;
    color: #dcdcdc;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.025);
    padding: 21px 16px;
    border-radius: 10px;
    width: 100%;
    height: max-content;
    max-width: 620px;
    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.05);
}

.github-profile p strong {
    color: #7d5fff;
    font-weight: 600;
}

.github-profile a {
    text-decoration: none;
    color: #1dd1a1;
    margin-top: 10px;
    font-weight: bold;
    font-size: 15px;
    padding: 8px 16px;
    border: 1px solid #1dd1a1;
    border-radius: 10px;
    transition: 0.3s;
    background: rgba(29, 209, 161, 0.05);
}

.github-profile a:hover {
    color: #14b89b;
    background-color: rgba(29, 209, 161, 0.1);
}
