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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f9fafb 0%, #f1f3f4 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

.profile-image {
    margin-bottom: 24px;
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.main-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2C413F;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 400;
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-link {
    display: block;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(134, 152, 155, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.link-content {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.link-content::after {
    content: '→';
    font-size: 1.2rem;
    color: #86989b;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.social-link:hover .link-content::after {
    transform: translateX(4px);
}

.platform-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f8f9fa;
    padding: 8px;
    object-fit: contain;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.link-text {
    flex: 1;
}

.link-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.link-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Hover indicator */

.social-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #86989b 0%, #6b7c80 100%);
    transform: translateX(-4px);
    transition: transform 0 ease;
    border-radius: 0 4px 4px 0;
}

.social-link:hover::before {
    transform: translateX(0);
}

/* Platform specific hover effects */
.social-link:hover .platform-logo {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Platform specific indicator colors */
.social-link:nth-child(1)::before {
    background: #D1AAE3;
}

.social-link:nth-child(2)::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link:nth-child(3)::before {
    background: #ff0000;
}

.social-link:nth-child(4)::before {
    background: #000000;
}

.social-link:nth-child(5)::before {
    background: #333333;
}

.social-link:nth-child(6)::before {
    background: #0077b5;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .container {
        padding: 30px 15px;
    }

    /* Disable hover effects on touch devices */
    .social-link:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border-color: transparent;
        background: rgba(255, 255, 255, 0.9);
    }

    .social-link:hover::before {
        transform: translateX(-4px);
    }

    .social-link:hover .platform-logo {
        transform: none;
        box-shadow: none;
    }

    .social-link:hover .link-content::after {
        transform: none;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .social-link {
        padding: 10px;
    }

    .link-content {
        gap: 12px;
    }

    .platform-logo {
        width: 40px;
        height: 40px;
    }

    .link-text h3 {
        font-size: 1.1rem;
    }

    .link-text p {
        font-size: 0.85rem;
    }
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.profile-section {
    animation: fadeInUp 0.6s ease-out;
}

.social-link {
    animation: fadeInUp 0.6s ease-out;
}