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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0d5aa7 0%, #1182cf 50%, #2a9df4 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Profile Header */
.profile-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

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

.profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #1182cf;
    box-shadow: 0 8px 25px rgba(17, 130, 207, 0.3);
    transition: transform 0.3s ease;
}

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

.profile-name {
    font-size: 28px;
    font-weight: 700;
    color: #0d5aa7;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.profile-bio {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.event-info {
    background: linear-gradient(135deg, #1182cf, #2a9df4);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: inline-block;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(17, 130, 207, 0.3);
}

.event-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* Links Container */
.links-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.link-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.link-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(17, 130, 207, 0.15);
    background: rgba(255, 255, 255, 1);
}

.link-item:active {
    transform: translateY(0);
}

.link-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1182cf, #2a9df4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(17, 130, 207, 0.3);
}

.link-content {
    flex: 1;
}

.link-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0d5aa7;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.link-content p {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.link-arrow {
    color: #1182cf;
    font-size: 16px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

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

/* Social Media Section */
.social-media {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.social-media h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0d5aa7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1182cf, #2a9df4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(17, 130, 207, 0.3);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(17, 130, 207, 0.4);
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
}

.footer p {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .profile-header {
        padding: 25px 15px;
        margin-bottom: 30px;
    }
    
    .profile-name {
        font-size: 24px;
    }
    
    .profile-bio {
        font-size: 15px;
    }
    
    .link-item {
        padding: 16px;
    }
    
    .link-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .link-content h3 {
        font-size: 16px;
    }
    
    .link-content p {
        font-size: 13px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 360px) {
    .profile-image img {
        width: 100px;
        height: 100px;
    }
    
    .profile-name {
        font-size: 22px;
    }
    
    .event-date {
        font-size: 13px;
    }
    
    .link-item {
        padding: 14px;
        gap: 12px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Loading Animation */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading .link-icon {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}