* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: url('pfp.png') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('pfp.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.profile-card {
    background: rgb(0, 0, 0);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    flex: 1;
    min-width: 350px;
    max-width: 500px;
}

.project-card {
    background: black;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    flex: 1;
    min-width: 350px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
}

.card-header {
    font-size: 1.8em;
    color: white;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.project-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.project-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.project-name {
    font-size: 1.2em;
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
}

.project-updates {
    color: #aaa;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.project-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.project-icon:hover {
    transform: scale(1.1);
}

.project-icon img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

.sneak-peek {
    flex: 1;
    max-width: 300px;
}

.sneak-peek-title {
    color: white;
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 10px;
}

.sneak-peek-image {
    background: #222;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sneak-peek-image:hover {
    transform: scale(1.02);
}

.sneak-peek-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fullscreen Modal */
.fullscreen-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.fullscreen-image {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
}

.close-button {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: #667eea;
}

.avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    background: transparent;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: transparent;
}

.profile-name {
    font-size: 2.2em;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.bio {
    margin-bottom: 40px;
}

.bio p {
    color: #ffffff;
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    background: rgb(0, 0, 0);
    border-radius: 16px;
    padding: 20px;
    width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-link img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.social-link span {
    font-size: 0.9em;
    font-weight: 500;
    color: #ffffff;
}

@media (max-width: 600px) {
    .profile-card {
        padding: 40px 30px;
    }
    
    .profile-name {
        font-size: 1.8em;
    }
    
    .social-link {
        width: 100px;
        padding: 15px;
    }
}