:root {
    --bg-color: #e0e5ec;
    --text-main: #4a4a4a;
    --text-light: #8a8a8a;
    --shadow-light: #ffffff;
    --shadow-dark: #a3b1c6;
    --primary: #6c5ce7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

body {
    background-color: var(--bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: var(--text-main);
}

.container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.profile-section {
    text-align: center;
    margin-bottom: 40px;
}

.avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.avatar-border {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    padding: 8px;
    background: var(--bg-color);
    box-shadow: 
        9px 9px 16px var(--shadow-dark), 
        -9px -9px 16px var(--shadow-light);
}

.avatar-border img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-color);
}

h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text-main);
}

.tagline {
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 600;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.neu-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    line-height: 50px;
    background: var(--bg-color);
    border: none;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 
        6px 6px 10px var(--shadow-dark), 
        -6px -6px 10px var(--shadow-light);
    cursor: pointer;
}

.neu-btn i {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    line-height: inherit !important;
}

.neu-btn:active, .neu-btn.active {
    box-shadow: inset 4px 4px 8px var(--shadow-dark), 
                inset -4px -4px 8px var(--shadow-light);
    transform: translateY(2px);
}

.icon-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--text-light);
}

.icon-btn:hover {
    color: var(--primary);
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link-btn {
    width: 100%;
    padding: 18px 25px;
    border-radius: 15px;
    justify-content: space-between;
    font-weight: 700;
}

.link-btn i {
    color: var(--text-light);
    font-size: 0.9rem;
}

.link-btn:hover {
    color: var(--primary);
}

.link-btn:hover i {
    color: var(--primary);
}

.footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.8rem;
    color: var(--text-light);
}
