/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.15);
    --hover-bg: rgba(255, 255, 255, 0.05);
    --hover-glow: rgba(255, 255, 255, 0.25);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.profile-card {
    background: transparent;
    padding: 2rem 0;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s ease forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-content-wrapper {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    width: fit-content;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-image-wrapper {
    display: flex;
    flex-shrink: 0;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 9999px;
    object-fit: cover;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.07);
    transition: var(--transition);
}

.profile-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.profile-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 400;
}

.location-emoji {
    font-size: 14px;
    line-height: 1;
}

.location-text {
    color: var(--text-secondary);
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-start;
    align-items: center;
    width: fit-content;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    cursor: pointer;
    width: 48px;
    height: 48px;
}

.social-button:hover {
    background: var(--hover-bg);
    border-color: var(--hover-glow);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.social-icon {
    width: 24px;
    height: 24px;
    color: var(--text-color);
    transition: var(--transition);
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 640px) {
    .hero-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .profile-card {
        padding: 1.5rem 0;
    }

    .profile-header {
        gap: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .social-buttons {
        gap: 0.5rem;
    }

    .social-button {
        width: 44px;
        height: 44px;
        padding: 0.625rem;
    }

    .social-icon {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .profile-header {
        gap: 0.75rem;
    }

    .profile-image {
        width: 70px;
        height: 70px;
    }

    .profile-name {
        font-size: 20px;
    }

    .social-buttons {
        gap: 0.375rem;
    }
    
    .social-button {
        width: 40px;
        height: 40px;
        padding: 0.5rem;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
    }
}
