* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #ffffff;
}

.container {
    width: 100%;
    max-width: 750px;
}

.profile-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 45px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.15);
    text-align: center;
    transition: 0.3s ease;
}

.profile-card:hover {
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.25);
}

.avatar img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00d4ff;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

h1 {
    font-size: 40px;
    color: #00d4ff;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

h2 {
    font-size: 20px;
    color: #b0b0b0;
    font-weight: normal;
    margin-bottom: 22px;
}

.job {
    font-size: 22px;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 28px;
}

hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #00d4ff, transparent);
    margin-bottom: 30px;
}

.bio p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.skills, .projects, .contact {
    margin-top: 28px;
    text-align: left;
}

.skills h3, .projects h3, .contact h3 {
    color: #00d4ff;
    margin-bottom: 15px;
    font-size: 20px;
    border-left: 3px solid #ffcc00;
    padding-left: 10px;
}

.skills ul, .projects ul, .contact ul {
    list-style: none;
    line-height: 2;
    font-size: 16px;
}

.contact ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 500px) {
    .profile-card {
        padding: 25px;
    }
    h1 {
        font-size: 30px;
    }
    .avatar img {
        width: 130px;
        height: 130px;
    }
}