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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: white;
    line-height: 1.6;
}

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

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

.profile-section {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.profile-photo {
    position: relative;
    width: 120px;
    height: 120px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899) padding-box,
                linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899) border-box;
    transition: all 0.1s ease;
}

.profile-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(8px);
}

.profile-photo:hover .profile-glow {
    opacity: 0.6;
}

.profile-photo:hover .profile-img {
    transform: scale(1.05);
}

.info-section {
    text-align: center;
    margin-bottom: 32px;
}

.name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.domain {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.badge-icon {
    width: 16px;
    height: 16px;
}

.description {
    text-align: center;
    margin-bottom: 32px;
}

.description p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-link:hover::before {
    left: 100%;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.link-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.email-link .link-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.email-link:hover .link-icon {
    background: rgba(239, 68, 68, 0.3);
    transform: scale(1.1);
}

.twitter-link .link-icon {
    background: rgba(29, 161, 242, 0.2);
    color: #7dd3fc;
}

.twitter-link:hover .link-icon {
    background: rgba(29, 161, 242, 0.3);
    transform: scale(1.1);
}

.instagram-link .link-icon {
    background: rgba(236, 72, 153, 0.2);
    color: #f9a8d4;
}

.instagram-link:hover .link-icon {
    background: rgba(236, 72, 153, 0.3);
    transform: scale(1.1);
}

.whatsapp-link .link-icon {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.whatsapp-link:hover .link-icon {
    background: rgba(34, 197, 94, 0.3);
    transform: scale(1.1);
}

.link-content {
    flex: 1;
}

.link-title {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 2px;
}

.link-subtitle {
    color: #9ca3af;
    font-size: 12px;
}

.footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    color: #6b7280;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 480px) {
    .card {
        padding: 32px 24px;
        margin: 16px;
    }
    
    .name {
        font-size: 28px;
    }
    
    .profile-photo {
        width: 100px;
        height: 100px;
    }
    
    .description p {
        font-size: 13px;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}