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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* New background image with overlay */
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),  /*linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), */
                url('../img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

/* Optional: Add a pseudo-element for better text readability */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 800px;
    text-align: center;
    position: relative;
}

.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.language-btn {
    background: white;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
    color: #444;
}

.language-btn:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.language-btn i {
    margin-right: 8px;
    font-size: 16px;
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 150px;
    overflow: hidden;
    display: none;
}

.language-option {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.language-option:hover {
    background: #f8f8f8;
}

.language-option.active {
    background: #f0f0f0;
    font-weight: 600;
}

.language-option i {
    margin-right: 10px;
    font-size: 14px;
}

.language-selector.open .language-options {
    display: block;
}

.profile {
    margin-bottom: 30px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e6e6e6;
    margin-bottom: 15px;
}

h1 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.bio {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #444;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    min-width: 180px;
}

.link-button i {
    margin-right: 10px;
    font-size: 20px;
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.email:hover {
    background: linear-gradient(45deg, #6956cf, #5bb3ff);
    color: white;
}

.artstation:hover {
    background: linear-gradient(45deg, #003b63, #005b8d);
    color: white;
}

.website:hover {
    background: linear-gradient(45deg, #9411c4, #c1004d);
    color: white;
}

.portfolio:hover {
    background: linear-gradient(45deg, #ff4b93, #25dae0);
    color: white;
}

.footer {
    color: #888;
    font-size: 14px;
    margin-top: 30px;
}

@media (max-width: 600px) {
    .links {
        flex-direction: column;
        align-items: center;
    }
    
    .link-button {
        width: 100%;
        max-width: 280px;
    }
    
    .container {
        padding: 25px;
    }
    
    .language-selector {
        position: relative;
        top: 0;
        right: 0;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .language-options {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
}