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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 500px;
    width: 100%;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-section {
    text-align: center;
    padding: 40px 30px 30px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
}

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

.logo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0 auto;
    color: white;
}

.profile-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.profile-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 10px;
    font-weight: 300;
}

.profile-description {
    font-size: 14px;
    opacity: 0.85;
    font-style: italic;
    margin-top: 10px;
}

.links-section {
    padding: 30px 20px;
}

.link-button {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 12px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-decoration: none;
    color: #212529;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.link-button:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.link-button.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.link-button.primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
}

.link-button.social:hover {
    background: #4267B2;
    border-color: #4267B2;
}

.link-icon {
    font-size: 24px;
    margin-right: 12px;
    width: 30px;
    text-align: center;
}

.link-text {
    flex: 1;
    text-align: left;
}

.link-arrow {
    font-size: 20px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.link-button:hover .link-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.info-section {
    padding: 20px 30px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.info-item {
    margin-bottom: 20px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item strong {
    display: block;
    color: #212529;
    font-size: 14px;
    margin-bottom: 8px;
}

.info-item p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
}

.footer {
    text-align: center;
    padding: 20px;
    background: #212529;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .container {
        border-radius: 16px;
    }

    .profile-section {
        padding: 30px 20px 25px;
    }

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

    .links-section {
        padding: 25px 15px;
    }

    .link-button {
        padding: 14px 16px;
        font-size: 15px;
    }

    .info-section {
        padding: 20px;
    }
}

