:root {
    --bg-color: #0f172a;
    --text-color: #f8fafc;
    --accent-color: #1e293b;
    --hover-color: #334155;
    --highlight-color: #38bdf8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 1rem;
    background-image: linear-gradient(to bottom, rgba(56, 189, 248, 0.03), rgba(0, 0, 0, 0));
}

.profile-container {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0 15px;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.profile-picture {
    width: 225px;
    height: 225px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--highlight-color);
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-picture:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.profile-bio {
    color: #e2e8f0;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
}

.social-icon:hover {
    background-color: var(--highlight-color);
    transform: translateY(-3px);
}

.social-icon img, .social-icon svg {
    width: 18px;
    height: 18px;
}

.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.link-item {
    background-color: var(--accent-color);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 3px solid transparent;
}

.link-item:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border-left: 3px solid var(--highlight-color);
}

.link-icon {
    width: 25px;
    height: 25px;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--highlight-color);
}

.link-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.link-text {
    flex-grow: 1;
    font-weight: 500;
}

.menu-dots {
    cursor: pointer;
    padding: 5px;
    color: #a0aec0;
}

.menu-dots::after {
    content: '•••';
    transform: rotate(90deg);
    display: inline-block;
}

/* Add responsive styles */
@media (max-width: 768px) {
    body {
        padding: 1.5rem 0.5rem;
    }
    
    .profile-picture {
        width: 180px;
        height: 180px;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .profile-bio {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem 0.5rem;
    }
    
    .profile-picture {
        width: 150px;
        height: 150px;
        margin-bottom: 0.75rem;
    }
    
    .profile-name {
        font-size: 1.3rem;
    }
    
    .profile-bio {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .link-item {
        padding: 0.85rem;
    }
    
    .link-icon {
        width: 22px;
        height: 22px;
        margin-right: 0.75rem;
    }
    
    .link-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 320px) {
    .profile-picture {
        width: 120px;
        height: 120px;
    }
    
    .profile-name {
        font-size: 1.2rem;
    }
    
    .profile-bio {
        font-size: 0.8rem;
    }
    
    .link-item {
        padding: 0.75rem;
    }
    
    .link-icon {
        width: 20px;
        height: 20px;
        margin-right: 0.5rem;
    }
    
    .link-text {
        font-size: 0.9rem;
    }
}
