/* Improved Styling with Original Layout */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

:root {
    --font: 'Inter', sans-serif;
    --primary-color: #A67B5B;
    --secondary-color: #8C7A5B;
    --background-color: #2E2A26;
    --text-color: white;
    --shadow-color: #4C3F38;
}

body {
    background-color: var(--background-color);
    font-family: var(--font);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.navbar {
    width: 100%;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

#userPhoto {
    width: 96px;
    height: 96px;
    display: block;
    margin: 35px auto 20px;
    box-shadow: 0px 6px var(--shadow-color);
    transition: all 0.2s;
    border-radius: 50%;
}

#userPhoto:hover {
    box-shadow: 0px 10px var(--shadow-color);
    transform: translateY(-3px);
}

#userName {
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    display: block;
    width: 100%;
}

#subText {
    color: var(--text-color);
    font-size: 1rem;
    opacity: 0.8;
    text-align: center;
    display: block;
    width: 100%;
}

#links {
    max-width: 675px;
    width: 100%;
    margin: 27px auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    padding: 17px;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0px 5px var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
}

.link i {
    font-size: 1.3rem;
    margin-right: 10px;
}

.link:hover {
    background: var(--secondary-color);
    box-shadow: 0px 7px var(--primary-color);
    transform: translateY(-3px);
}

.link:active {
    transform: translateY(4px);
    box-shadow: 0px 2px var(--primary-color);
}

.footer {
    margin-top: 30px;
    text-align: center;
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
}
