/* Inherits variables from previous code, appended styles */
:root {
    --bg-gradient: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: 1px solid rgba(255, 255, 255, 0.1);
    --text-color: #ffffff;
    --text-secondary: #b3b3b3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-gradient);
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

/* Profile */
.profile-section {
    margin-bottom: 50px;
    animation: fadeIn 1s ease;
}

.profile-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.profile-bio {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
}

/* Social Icons */
.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    background: #fff;
}

.social-icon.whatsapp:hover {
    color: #25D366;
}

.social-icon.tiktok:hover {
    color: #000000;
}

.social-icon.instagram:hover {
    color: #C13584;
}

.social-icon.facebook:hover {
    color: #1877F2;
}

.social-icon.youtube:hover {
    color: #FF0000;
}


/* CARDS Container */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* The Link Card */
.link-card {
    display: block;
    /* Stack image and text vertically */
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: var(--card-border);
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.link-image-container {
    width: 100%;
    height: 200px;
    /* Big visible area for image */
    overflow: hidden;
    position: relative;
}

.link-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.link-card:hover .link-image {
    transform: scale(1.05);
    /* Zoom effect */
}

.link-content {
    padding: 20px 25px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.link-info {
    flex: 1;
}

.link-title {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.link-desc-fake {
    /* Optional fake description styling if we had one */
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.link-cta {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s;
    white-space: nowrap;
    margin-left: 15px;
    min-width: 140px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.link-card:hover .link-cta {
    background: #fff;
    color: #000;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .link-image-container {
        height: 160px;
    }

    .profile-name {
        font-size: 1.7rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}