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

:root {
    --primary-color: #FAD0C9;
    --secondary-color: #6E6E6D;
    --background-gradient: linear-gradient(135deg, #FAD0C9 0%, #f5b8ad 100%);
    --card-bg: #ffffff;
    --text-primary: #6E6E6D;
    --text-secondary: #8a8a89;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
    --border-radius: 15px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--background-gradient);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: var(--text-primary);
}

.container {
    max-width: 680px;
    width: 100%;
    animation: fadeIn 0.8s ease-in-out;
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 40px;
    animation: slideDown 0.6s ease-out;
}

.profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #FAD0C9, #f5b8ad);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6E6E6D;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.profile-tagline {
    font-size: 1.1rem;
    color: #6E6E6D;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

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

.link-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.link-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    background: white;
    flex-shrink: 0;
}

.link-icon .icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: none;
}

.link-icon .emoji-icon {
    font-size: 38px;
}

.link-content {
    flex: 1;
}

.link-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.link-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.link-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.link-card:hover .link-arrow {
    transform: translateX(5px);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #6E6E6D;
    font-size: 0.9rem;
}

.legal-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.legal-link {
    color: #6E6E6D;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #FAD0C9;
    text-decoration: underline;
}

.separator {
    color: #6E6E6D;
    font-size: 0.85rem;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .profile-name {
        font-size: 2rem;
    }

    .profile-tagline {
        font-size: 1rem;
    }

    .link-card {
        padding: 18px 20px;
    }

    .link-title {
        font-size: 1.1rem;
    }

    .link-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .profile-image {
        width: 100px;
        height: 100px;
    }

    .profile-name {
        font-size: 1.8rem;
    }

    .link-icon {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }

    .link-icon .icon {
        width: 25px;
        height: 25px;
    }

    .link-card {
        padding: 15px 18px;
    }
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Click Animation */
.link-card:active {
    transform: scale(0.98);
}
