* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.network-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.network-bg svg {
    width: 100%;
    height: 100%;
}

.container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.profile-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    width: 100%;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 30px;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name {
    font-size: 4rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.full-name {
    font-size: 2rem;
    color: #34495e;
    margin-bottom: 20px;
    font-weight: 400;
}

.description {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Navigation Links Styles */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    border: none;
    cursor: pointer;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9, #3498db);
}

.nav-btn:active {
    transform: translateY(-1px);
}

.nav-btn.secondary {
    background: linear-gradient(135deg, #27ae60, #229954);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.nav-btn.secondary:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.nav-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px;
}

.social-links a svg {
    width: 24px;
    height: 24px;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-links a:nth-child(1) { background: #E4405F; } /* Instagram */
.social-links a:nth-child(2) { background: #000; } /* TikTok */
.social-links a:nth-child(3) { background: #FF0000; } /* YouTube */
.social-links a:nth-child(4) { background: #0077B5; } /* LinkedIn */
.social-links a:nth-child(5) { background: #333; } /* GitHub */

@media (max-width: 768px) {
    .name {
        font-size: 3rem;
    }

    .full-name {
        font-size: 1.5rem;
    }

    .profile-card {
        padding: 30px 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
    }

    .nav-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .nav-btn {
        font-size: 0.9rem;
        padding: 12px 16px;
    }

    .nav-icon {
        width: 16px;
        height: 16px;
    }
}
