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

body {
    font-family: 'Tourney', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: block;
    object-fit: cover;
    border: 4px solid #00f3ff;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.profile-image:hover {
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.8);
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.bio {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
    color: white;
    border: 2px solid #00f3ff;
}

.link-button:hover {
    transform: translateY(-2px);
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.6);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Icon styles */
.icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .bio {
        font-size: 1rem;
    }
}
