:root {
    --bg-color: #090e1a;
    --card-bg: rgba(30, 41, 59, 0.5);
    --primary: #bef264;
    --primary-hover: #a3e635;
    --text-main: #f8fafc;
    --text-secondary: #94a3b8;
    --accent: #22d3ee;
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    background-image:
        radial-gradient(at 0% 0%, rgba(34, 211, 238, 0.12) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(190, 242, 100, 0.12) 0px, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: var(--text-main);
    overflow-x: hidden;
    padding: 2rem 0;
}

.container {
    width: 100%;
    max-width: 450px;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.profile-section {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.profile-img-container {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 1.2rem;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    box-shadow: 0 0 25px rgba(190, 242, 100, 0.2);
}

.status-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: var(--primary);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 10px;
    border: 2px solid var(--bg-color);
    text-transform: uppercase;
}

h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

h1 span {
    color: var(--primary);
}

.bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1.1rem 1.25rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

.link-card:nth-child(1) {
    animation-delay: 0.1s;
}

.link-card:nth-child(2) {
    animation-delay: 0.2s;
}

.link-card:nth-child(3) {
    animation-delay: 0.3s;
}

.link-card:nth-child(4) {
    animation-delay: 0.4s;
}

.link-card:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(45, 60, 85, 0.6);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.icon-box {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: 0.3s;
}

.link-card:hover .icon-box {
    background: var(--primary);
    color: #000;
}

.link-content {
    flex-grow: 1;
}

.link-title {
    font-weight: 600;
    display: block;
    font-size: 1rem;
}

.link-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 2px;
}

.featured {
    border: 1px solid var(--primary);
    background: linear-gradient(135deg, rgba(190, 242, 100, 0.08) 0%, transparent 100%);
}

.tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: #000;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 3px 10px;
    border-bottom-left-radius: 10px;
    text-transform: uppercase;
}

.socials {
    display: flex;
    gap: 1.2rem;
    margin-top: 2.5rem;
    animation: fadeIn 1.2s ease 0.6s backwards;
}

.social-link {
    color: var(--text-secondary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}

.social-link:hover {
    color: var(--primary);
    background: rgba(190, 242, 100, 0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.whatsapp-btn {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: #fff !important;
}

.whatsapp-btn .link-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.whatsapp-btn .icon-box {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.whatsapp-btn:hover {
    background-color: #128C7E !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

footer {
    margin-top: 3rem;
    padding-bottom: 2rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.6;
}

.toast {
    position: fixed;
    bottom: 24px;
    background: var(--primary);
    color: #000;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(150px);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
}

.toast.active {
    transform: translateY(0);
}

body::after {
    content: "";
    position: fixed;
    bottom: -10%;
    right: -5%;
    width: 60vh;
    height: 60vh;
    background-image: url('https://images.unsplash.com/photo-1594381898411-846e7d193883?auto=format&fit=crop&q=80&w=600');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
    filter: grayscale(100%);
    mask-image: radial-gradient(circle at bottom right, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at bottom right, black 40%, transparent 80%);
    transform: rotate(-10deg);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}