* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

body {

    min-height: 100vh;

    font-family: Arial, sans-serif;

    background:
        linear-gradient(
            180deg,
            #050505,
            #0d1117
        );

    color: #f8fafc;

    display: flex;

    justify-content: center;
    align-items: center;

    overflow-x: hidden;
}

.container {

    width: 100%;
    max-width: 560px;

    padding: 30px;

    text-align: center;

    animation: appear 0.7s ease;
}

h1 {

    font-size: 58px;

    margin-bottom: 10px;

    letter-spacing: -3px;

    color: #f8fafc;
}

.subtitle {

    color: #94a3b8;

    margin-bottom: 40px;

    font-size: 20px;
}

.search-box {

    display: flex;

    flex-direction: column;

    gap: 18px;
}

input {

    padding: 18px;

    border-radius: 18px;

    border:
        1px solid rgba(255,255,255,0.08);

    background:
        rgba(255,255,255,0.03);

    color: white;

    font-size: 17px;

    outline: none;

    transition: 0.3s;
}

input:focus {

    border:
        1px solid #10b981;

    box-shadow:
        0px 0px 0px 4px rgba(16,185,129,0.12);
}

button {

    padding: 18px;

    border: none;

    border-radius: 18px;

    background: #10b981;

    color: #04130d;

    font-size: 17px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

button:hover {

    transform: translateY(-2px);

    background: #34d399;
}

#loading {

    margin-top: 25px;

    color: #10b981;

    font-size: 17px;
}

#profile-card {

    margin-top: 40px;

    padding: 35px;

    border-radius: 28px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(10px);

    animation: fadeIn 0.4s ease;

    box-shadow:
        0px 10px 40px rgba(0,0,0,0.35);
}

.profile-image {

    width: 140px;
    height: 140px;

    border-radius: 50%;

    object-fit: cover;

    border:
        4px solid #10b981;

    margin-bottom: 22px;
}

.name {

    font-size: 40px;

    margin-bottom: 12px;

    letter-spacing: -1px;
}

.bio {

    color: #cbd5e1;

    margin-bottom: 28px;

    line-height: 1.6;
}

.personality {

    font-size: 26px;

    font-weight: bold;

    color: #10b981;

    margin-bottom: 28px;
}

.stats {

    display: flex;

    flex-direction: column;

    gap: 16px;

    margin-top: 18px;
}

.stat-card {

    padding: 16px;

    border-radius: 18px;

    background:
        rgba(255,255,255,0.03);

    border:
        1px solid rgba(255,255,255,0.04);

    font-size: 17px;

    transition: 0.3s;
}

.stat-card:hover {

    transform: scale(1.02);

    border:
        1px solid rgba(16,185,129,0.3);
}

.github-btn {

    display: inline-block;

    margin-top: 30px;

    padding: 15px 26px;

    border-radius: 16px;

    background: #f8fafc;

    color: #050505;

    text-decoration: none;

    font-weight: bold;

    transition: 0.3s;
}

.github-btn:hover {

    transform: scale(1.05);
}

@keyframes fadeIn {

    from {

        opacity: 0;

        transform: translateY(15px);
    }

    to {

        opacity: 1;

        transform: translateY(0);
    }
}

@keyframes appear {

    from {

        opacity: 0;

        transform: translateY(20px);
    }

    to {

        opacity: 1;

        transform: translateY(0);
    }
}