:root {
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --text-primary: #000000;
    --border-color: #000000;
}

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.card-container {
    width: 100%;
    max-width: 460px;
    padding: 20px;
    z-index: 1;
}

.profile-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    padding: 48px 36px;
    box-shadow: 8px 8px 0px 0px #000000; /* Modern brutalist shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px 0px #000000;
}

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

h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    color: #000000;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-item {
    display: flex;
    align-items: stretch;
    text-decoration: none;
    color: #000000;
    background: #ffffff;
    border: 2px solid #000000;
    transition: all 0.2s ease;
    overflow: hidden;
}

.icon-wrapper {
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border-right: 2px solid #000000;
    font-size: 20px;
    transition: all 0.2s ease;
}

.link-label {
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Hover Effects */
.link-item:hover {
    background: #000000;
    color: #ffffff;
}

.link-item:hover .icon-wrapper {
    background: #000000;
    color: #ffffff;
    border-right: 2px solid #ffffff; 
}

/* Entry Animations */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-header {
    animation: slideUpFade 0.5s ease-out forwards;
}

.link-item {
    opacity: 0;
    animation: slideUpFade 0.4s ease-out forwards;
}

.link-item:nth-child(1) { animation-delay: 0.1s; }
.link-item:nth-child(2) { animation-delay: 0.2s; }
.link-item:nth-child(3) { animation-delay: 0.3s; }
.link-item:nth-child(4) { animation-delay: 0.4s; }
.link-item:nth-child(5) { animation-delay: 0.5s; }

/* Responsive adjustments */
@media (max-width: 480px) {
    .profile-card {
        padding: 40px 24px;
        box-shadow: 6px 6px 0px 0px #000000;
    }
    
    .profile-card:hover {
        transform: translate(-2px, -2px);
        box-shadow: 8px 8px 0px 0px #000000;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .icon-wrapper {
        width: 50px;
        font-size: 18px;
    }
    
    .link-label {
        font-size: 15px;
        padding: 14px;
    }
}
