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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    width: 100%;
    max-width: 480px;
}

/* Profile Section */
.profile {
    text-align: center;
    margin-bottom: 30px;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 16px;
}

.name {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

/* Links Section */
.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.link-icon {
    font-size: 24px;
    margin-right: 16px;
    flex-shrink: 0;
}

.link-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.link-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.link-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* App Store Badge */
.app-store-link {
    display: flex;
    justify-content: center;
    padding: 8px 0;
    transition: transform 0.3s ease;
}

.app-store-link:hover {
    transform: scale(1.05);
}

.app-store-badge {
    height: 60px;
    width: auto;
}

/* Slightly smaller badge on mobile */
@media (max-width: 480px) {
    .app-store-badge {
        height: 52px;
    }
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
}

.footer p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    body {
        padding: 30px 16px;
    }
    
    .profile-photo {
        width: 100px;
        height: 100px;
    }
    
    .name {
        font-size: 20px;
    }
    
    .link-card {
        padding: 14px 16px;
    }
    
    .link-icon {
        font-size: 20px;
        margin-right: 12px;
    }
    
    .link-title {
        font-size: 15px;
    }
    
    .link-description {
        font-size: 13px;
    }
}
