* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='8' fill='%23104496'/%3E%3C/svg%3E") 10 10, auto;
}

html {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='8' fill='%23104496'/%3E%3C/svg%3E") 10 10, auto;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FDFDFD;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='8' fill='%23104496'/%3E%3C/svg%3E") 10 10, auto;
}

span{
    color: #353535;
    font-weight: 500;
}

h1{
    color: #656565;
}

a{
    color: #656565;
    text-decoration: none;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='8' fill='%231a5fb8'/%3E%3C/svg%3E") 10 10, pointer;
    transition: cursor 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:not(.contact-btn):not(.linkedin-btn) {
    position: relative;
    display: inline-block;
}

a:not(.contact-btn):not(.linkedin-btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1a5fb8;
    transition: width 0.3s ease;
}

a:not(.contact-btn):not(.linkedin-btn):hover::after {
    width: 100%;
}

.noat-link {
    color: #104496;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.noat-link:hover {
    color: #1a5fb8;
}

.popup {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px) scale(0.95);
    background-color: #353535;
    color: #FFFFFF;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 8px;
    filter: blur(2px);
}

.popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #353535;
}

.noat-link:hover .popup {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    filter: blur(0);
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    text-align: left;
    max-width: 600px;
}

.name {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #656565;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #656565;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    background-color: #104496;
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='8' fill='%231a5fb8'/%3E%3C/svg%3E") 10 10, pointer;
    transition: cursor 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-btn:hover {
    background-color: #1a5fb8;
}

.contact-btn:active {
    background-color: #0a2d5c;
}

.contact-btn .arrow {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-btn:hover .arrow {
    transform: translateX(4px);
}

.linkedin-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    background-color: #F0F0F0;
    color: #202020;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='8' fill='%231a5fb8'/%3E%3C/svg%3E") 10 10, pointer;
    transition: cursor 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.linkedin-btn:hover {
    background-color: #E0E0E0;
}

.linkedin-btn:active {
    background-color: #D0D0D0;
}

.linkedin-btn .arrow {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: #202020;
}

.linkedin-btn:hover .arrow {
    transform: translateX(4px);
}

.arrow {
    font-size: 14px;
    color: #FFFFFF;
}

