:root {
    --primary: #14b8a6;
    --primary-dark: #0d9488;
    --secondary: #3b82f6;
    --accent: #6366f1;
    --success: #22c55e;
    --warning: #eab308;
    --error: #ef4444;
    --main: linear-gradient(135deg, #14b8a6, #3b82f6);

    --pink-50: #f0fdfa;
    --pink-100: #ccfbf1;
    --pink-200: #99f6e4;
    --pink-300: #5eead4;
    --pink-400: #2dd4bf;
    --pink-500: #14b8a6;
    --pink-600: #0d9488;
    --pink-700: #0f766e;
    --pink-800: #115e59;
    --pink-900: #134e4a;
}

[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f0fdfa;
    --bg-tertiary: #ccfbf1;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --border: #99f6e4;
    --shadow: #14b8a626;
    --card-bg: #ffffff;
    --hover-bg: #14b8a60d;
}

[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #0f766e;
    --bg-tertiary: #134e4a;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border: #115e59;
    --shadow: #14b8a64d;
    --card-bg: #1e293b;
    --hover-bg: #14b8a61a;
}

/*
--- GRAMA CROMATICA ORIGINAL ---
:root {
    --primary: #ec4899;
    --primary-dark: #db2777;
    --secondary: #f97316;
    --accent: #8b5cf6;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --main: linear-gradient(135deg, #ec4899, #f97316);
    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --pink-200: #fbcfe8;
    --pink-300: #f9a8d4;
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --pink-700: #be185d;
    --pink-800: #9d174d;
    --pink-900: #831843;
}

[data-theme="light"] {
    --bg-primary: #fff;
    --bg-secondary: #fdf2f8;
    --bg-tertiary: #fce7f3;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border: #fbcfe8;
    --shadow: #ec489926;
    --card-bg: #fff;
    --hover-bg: #ec48990d;
}

[data-theme="dark"] {
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a0a14;
    --bg-tertiary: #2d1020;
    --text-primary: #fff;
    --text-secondary: #e2e8f0;
    --text-muted: #94a3b8;
    --border: #3d1a2a;
    --shadow: #ec48994d;
    --card-bg: #1a1a1a;
    --hover-bg: #ec48991a;
}
*/

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

body {
    color: var(--text-primary);
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
        sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

.app,
body {
    background: var(--bg-primary);
}

.app {
    min-height: 100vh;
}

.container {
    margin: 0 auto;
    max-width: 600px;
    padding: 0 1.5rem;
}

::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: #ec4899;
    background: var(--primary);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #db2777;
    background: var(--primary-dark);
}

::selection {
    background: #ec48994d;
    color: var(--text-primary);
}

::-moz-selection {
    background: #ec48994d;
    color: var(--text-primary);
}

:focus {
    outline: 2px solid #ec4899;
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.gradient-text {
    -webkit-text-fill-color: #0000;
    background: linear-gradient(135deg, #ec4899, #f97316);
    background: var(--main);
    -webkit-background-clip: text;
    background-clip: text;
}

.pink-glow {
    box-shadow: 0 0 20px #ec48994d;
}

.pink-border {
    border: 2px solid #ec4899;
    border: 2px solid var(--primary);
}

.pink-bg {
    background: #ec4899;
    background: var(--primary);
    color: #fff;
}

.pink-bg-soft {
    background: #ec48991a;
}

.header {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    justify-content: space-between;
}

.header-content,
.logo {
    align-items: center;
    display: flex;
}

.logo {
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 700;
    gap: 0.5rem;
}

.logo svg {
    color: var(--primary);
}

.theme-toggle {
    align-items: center;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 12px;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: var(--primary);
    color: #fff;
}

.profile-section {
    padding: 3rem 0;
    text-align: center;
}

.profile-content {
    margin: 0 auto;
    max-width: 500px;
}

.profile-avatar {
    display: inline-block;
    margin-bottom: 2rem;
    position: relative;
}

.profile-avatar img {
    background: var(--main);
    border: 4px solid #0000;
    border-radius: 50%;
    height: 120px;
    object-fit: cover;
    padding: 4px;
    width: 120px;
}

.status-indicator {
    background: var(--success);
    border: 3px solid var(--bg-primary);
    border-radius: 50%;
    bottom: 8px;
    height: 20px;
    position: absolute;
    right: 8px;
    width: 20px;
}

.profile-info h1 {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.username {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.badge {
    align-items: center;
    border-radius: 20px;
    display: flex;
    font-size: 0.85rem;
    font-weight: 600;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
}

.badge.primary {
    background: var(--main);
    color: #fff;
}

.badge.secondary {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
}

.badge.secondary,
.bio {
    color: var(--text-secondary);
}

.bio {
    line-height: 1.7;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    color: var(--text-primary);
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.category-filter {
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.category-btn {
    align-items: center;
    background: #0000;
    border: 1px solid var(--border);
    border-radius: 25px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    font-size: 0.9rem;
    font-weight: 500;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.links-section {
    padding: 2rem 0 4rem;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    color: inherit;
    cursor: pointer;
    overflow: hidden;
    padding: 1.5rem;
    position: relative;
    text-decoration: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.link-hover-bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    /*
    Valor original
    opacity: 0.12;
    */
    /*opacity: 0.07;  Valor anterior desplegado*/
    opacity: 0.16;  /* Aumenta la opacidad para un color más fuerte */
    transform: scaleX(0);
    transform-origin: left;
    /*
    Valores originales
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;

    Reducida la velocidad de la animación (más lenta)

    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.35s cubic-bezier(0.22,1,0.36,1);  Valor anterior desplegado
    */
    transition: transform 0.8s cubic-bezier(0.22,1,0.36,1), opacity 0.8s cubic-bezier(0.22,1,0.36,1);
    will-change: transform, opacity;
}

.link-card:hover .link-hover-bg,
.link-card:focus .link-hover-bg {
    transform: scaleX(1);
    /*opacity: 0.05;  Valor original*/
    opacity: 0.12;  /* Aumenta la opacidad al hacer hover para un color más fuerte */
}

.link-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px var(--shadow), 0 2px 8px var(--primary);
    z-index: 2;
}

.link-card:hover .link-arrow {
    color: var(--primary);
}

.link-content {
    gap: 1rem;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

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

.link-info {
    flex: 1 1;
}

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

.link-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.link-stats {
    background: var(--bg-tertiary);
    border-radius: 8px;
    color: var(--text-muted);
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
}

.link-arrow {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.no-links {
    color: var(--text-muted);
    padding: 3rem;
    text-align: center;
}

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-content p {
    align-items: center;
    color: var(--text-secondary);
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.footer-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem !important;
}

.footer-year {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.heart {
    animation: heartbeat 2s infinite;
    color: var(--error);
    width: 16px;
    height: 16px;
    font-size: 16px;
    display: inline-flex;
    vertical-align: middle;
}

.coffee {
    color: #8b4513;
    animation: coffeeFloat 2.5s ease-in-out infinite;
    width: 16px;
    height: 16px;
    font-size: 16px;
    display: inline-flex;
    vertical-align: middle;
}

@keyframes coffeeFloat {
    0%, 100% {
        filter: drop-shadow(0 0 8px #b8860b66);
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    20% {
        opacity: 0.85;
        filter: drop-shadow(0 2px 12px #b8860b99);
        transform: translateY(-3px) scale(1.05);
    }
    40% {
        opacity: 0.7;
        filter: drop-shadow(0 4px 16px #b8860bcc);
        transform: translateY(-6px) scale(1.1);
    }
    60% {
        opacity: 0.85;
        filter: drop-shadow(0 2px 12px #b8860b99);
        transform: translateY(-3px) scale(1.05);
    }
    80% {
        opacity: 1;
        filter: drop-shadow(0 0 8px #b8860b66);
        transform: translateY(0) scale(1);
    }
}

.robot {
    width: 16px;
    height: 16px;
    font-size: 16px;
    display: inline-flex;
    vertical-align: middle;
    animation: botRotate 2s linear infinite;
}

@keyframes botRotate {
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    .profile-info h1 {
        font-size: 1.75rem;
    }
    .profile-avatar img {
        height: 100px;
        width: 100px;
    }
    .badges {
        align-items: center;
        flex-direction: column;
    }
    .stats {
        gap: 1.5rem;
    }
    .category-buttons {
        gap: 0.5rem;
    }
    .category-btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
    .link-content {
        gap: 0.75rem;
    }
    .link-icon {
        height: 45px;
        width: 45px;
    }
    .link-title {
        font-size: 1rem;
    }
    .footer-content p {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .profile-section {
        padding: 2rem 0;
    }
    .category-filter {
        padding: 1.5rem 0;
    }
    .links-section {
        padding: 1.5rem 0 3rem;
    }
    .category-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    .category-btn {
        white-space: nowrap;
    }
}

.profile-section-large {
    align-items: center;
    background: radial-gradient(ellipse at center top, #ec489914 0, #0000 50%),
        radial-gradient(ellipse at center bottom, #f973160d 0, #0000 50%),
        var(--bg-primary);
    display: flex;
    min-height: 80vh;
    padding: 5rem 0 6rem;
    text-align: center;
}

.profile-content-large {
    margin: 0 auto;
    max-width: 700px;
}

.profile-avatar-large {
    display: inline-block;
    margin-bottom: 3rem;
    position: relative;
}

.profile-avatar-large img {
    background: var(--main);
    border: 6px solid #0000;
    border-radius: 50%;
    box-shadow: 0 15px 35px #ec48994d, 0 5px 15px #0000001a;
    height: 250px;
    object-fit: cover;
    padding: 6px;
    position: relative;
    width: 250px;
    z-index: 10;
}

.avatar-rings {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    border: 2px solid;
    border-radius: 50%;
    opacity: 0.3;
    position: absolute;
}

.ring-1 {
    animation: ringPulse 3s ease-in-out infinite;
    animation-delay: 0s;
    border-color: #ec4899;
    height: 220px;
    width: 220px;
}

.ring-2 {
    animation: ringPulse 3s ease-in-out infinite;
    animation-delay: 1s;
    border-color: #f97316;
    height: 260px;
    width: 260px;
}

.ring-3 {
    animation: ringPulse 3s ease-in-out infinite;
    animation-delay: 2s;
    border-color: #8b5cf6;
    height: 300px;
    width: 300px;
}

@keyframes ringPulse {
    0%,
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
}

.status-indicator-large {
    background: var(--success);
    border: 4px solid var(--bg-primary);
    border-radius: 50%;
    bottom: 22px;
    box-shadow: 0 3px 10px #10b98166;
    height: 28px;
    position: absolute;
    right: 22px;
    width: 28px;
    z-index: 15;
}

.pulse-ring {
    animation: pulseRing 2s ease-out infinite;
    border: 2px solid var(--success);
    border-radius: 50%;
    bottom: -4px;
    left: -4px;
    position: absolute;
    right: -4px;
    top: -4px;
}

@keyframes pulseRing {
    0% {
        opacity: 1;
        transform: scale(0.8);
    }
    to {
        opacity: 0;
        transform: scale(1.5);
    }
}

.sparkle {
    animation: sparkleFloat 4s ease-in-out infinite;
    font-size: 1.5rem;
    pointer-events: none;
    position: absolute;
}

.sparkle-1 {
    animation-delay: 0s;
    left: 10%;
    top: 10%;
}

.sparkle-2 {
    animation-delay: 1.5s;
    right: 15%;
    top: 20%;
}

.sparkle-3 {
    animation-delay: 3s;
    bottom: 15%;
    left: 20%;
}

@keyframes sparkleFloat {
    0%,
    to {
        opacity: 0.7;
        transform: translateY(0) rotate(0deg);
    }
    33% {
        opacity: 1;
        transform: translateY(-15px) rotate(120deg);
    }
    66% {
        opacity: 0.7;
        transform: translateY(-30px) rotate(240deg);
    }
}

.profile-info-large {
    margin: 0 auto;
    max-width: 600px;
}

.name-large {
    -webkit-text-fill-color: #0000;
    background: var(--main);
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--text-primary);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px #0000001a;
}

.username-large {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px #ec489933;
}

.badges-large {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.badge.large {
    align-items: center;
    border-radius: 25px;
    display: flex;
    font-size: 1rem;
    font-weight: 600;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.badge.large:hover {
    box-shadow: 0 8px 25px #ec48994d;
    transform: translateY(-3px);
}

.badge.primary.large {
    background: var(--main);
    box-shadow: 0 6px 20px #ec48994d;
    color: #fff;
}

.badge.secondary.large {
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    color: var(--text-secondary);
}

.badge.accent.large {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    box-shadow: 0 6px 20px #8b5cf64d;
    color: #fff;
}

.bio-large {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
}

.bio-large strong {
    color: var(--primary);
    font-weight: 600;
}

.stats-large {
    grid-gap: 1.5rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

.stat-large {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    padding: 1.5rem 1rem;
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-large:before {
    background: var(--main);
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity 0.3s ease;
}

.stat-large:hover:before {
    opacity: 0.05;
}

.stat-large:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px #ec489933;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-number-large {
    color: var(--primary);
    display: block;
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    text-shadow: 0 2px 4px #ec48991a;
    z-index: 2;
}

.stat-label-large {
    font-size: 0.9rem;
}

.inspiration-message {
    align-items: center;
    background: linear-gradient(135deg, #14b8a610, #3b82f610);
    border: 2px solid var(--primary);
    border-radius: 25px;
    box-shadow: 0 8px 25px #ec489926;
    color: var(--primary);
    display: flex;
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 600;
    gap: 1rem;
    justify-content: center;
    margin: 0 auto;
    max-width: 500px;
    padding: 1.5rem 2rem;
}

.inspiration-icon {
    animation: sparkleRotate 3s ease-in-out infinite;
    color: var(--primary);
}

@keyframes sparkleRotate {
    0%,
    to {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

@media (max-width: 768px) {
    .profile-section-large {
        min-height: 70vh;
        padding: 3rem 0 4rem;
    }
    .profile-avatar-large img {
        height: 150px;
        width: 150px;
    }
    .ring-1 {
        height: 190px;
        width: 190px;
    }
    .ring-2 {
        height: 220px;
        width: 220px;
    }
    .ring-3 {
        height: 250px;
        width: 250px;
    }
    .name-large {
        font-size: 2.5rem;
    }
    .username-large {
        font-size: 1.2rem;
    }
    .badges-large {
        align-items: center;
        flex-direction: column;
    }
    .stats-large {
        gap: 1rem;
        grid-template-columns: repeat(2, 1fr);
    }
    .inspiration-message {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .profile-avatar-large img {
        height: 120px;
        width: 120px;
    }
    .ring-1 {
        height: 160px;
        width: 160px;
    }
    .ring-2 {
        height: 180px;
        width: 180px;
    }
    .ring-3 {
        height: 200px;
        width: 200px;
    }
    .name-large {
        font-size: 2rem;
    }
    .stats-large {
        grid-template-columns: 1fr;
    }
    .bio-large {
        font-size: 1rem;
    }
    .sparkle {
        font-size: 1.2rem;
    }
}

.bio-professional {
    background: linear-gradient(135deg, #14b8a610, #3b82f610);
    border: 1px solid var(--primary);
    border-radius: 20px;
    box-shadow: 0 8px 25px #ec48991a;
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 650px;
    padding: 2rem;
    position: relative;
    text-align: center;
}

.bio-professional strong {
    -webkit-text-fill-color: #0000;
    background: var(--main);
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--primary);
    font-weight: 600;
}

.stat-label-large {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    text-transform: lowercase;
    z-index: 2;
}

@media (max-width: 768px) {
    .bio-professional {
        font-size: 1rem;
        line-height: 1.7;
        max-width: 500px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .bio-professional {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 1rem;
    }
}

@keyframes heartbeat {
    0%,
    50%,
    to {
        transform: scale(1);
    }
    25%,
    75% {
        filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.6));
        transform: scale(1.2);
    }
}

@keyframes pinkPulse {
    0%,
    to {
        box-shadow: 0 0 0 0 #ec4899b3;
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 0 10px #ec489900;
        opacity: 0.8;
    }
}

@keyframes pinkGlow {
    0%,
    to {
        box-shadow: 0 0 5px #ec48994d;
    }
    50% {
        box-shadow: 0 0 20px #ec489999;
    }
}

@keyframes slideInUpPink {
    0% {
        box-shadow: 0 0 0 #ec489900;
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        box-shadow: 0 4px 15px #ec48991a;
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInPink {
    0% {
        filter: blur(5px);
        opacity: 0;
    }
    to {
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes bouncePink {
    0%,
    20%,
    53%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translateZ(0);
    }
    40%,
    43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        box-shadow: 0 15px 30px #ec48994d;
        transform: translate3d(0, -30px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        box-shadow: 0 8px 20px #ec489933;
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes shakePink {
    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%,
    80% {
        box-shadow: 0 0 10px #ec48994d;
        transform: translate3d(2px, 0, 0);
    }
    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

@keyframes spinPink {
    0% {
        box-shadow: 0 0 5px #ec48994d;
        transform: rotate(0deg);
    }
    50% {
        box-shadow: 0 0 15px #ec489999;
    }
    to {
        box-shadow: 0 0 5px #ec48994d;
        transform: rotate(1turn);
    }
}

@keyframes gradientShiftPink {
    0% {
        background-position: 0 50%;
        filter: hue-rotate(0deg);
    }
    50% {
        background-position: 100% 50%;
        filter: hue-rotate(10deg);
    }
    to {
        background-position: 0 50%;
        filter: hue-rotate(0deg);
    }
}

@keyframes shimmerPink {
    0% {
        background-position: -200% 0;
    }
    to {
        background-position: 200% 0;
    }
}

@keyframes floatPink {
    0%,
    to {
        box-shadow: 0 5px 15px #ec48991a;
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 15px 25px #ec489933;
        transform: translateY(-10px);
    }
}

.animate-heartbeat {
    animation: heartbeat 2s infinite;
}

.animate-pink-pulse {
    animation: pinkPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-pink-glow {
    animation: pinkGlow 3s ease-in-out infinite;
}

.animate-bounce-pink {
    animation: bouncePink 1s infinite;
}

.animate-shake-pink {
    animation: shakePink 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.animate-float-pink {
    animation: floatPink 3s ease-in-out infinite;
}

.transition-all-pink {
    transition: all 0.3s ease, box-shadow 0.3s ease;
}

.transition-colors-pink {
    transition: color 0.3s ease, background-color 0.3s ease,
        border-color 0.3s ease, box-shadow 0.3s ease;
}

.transition-transform-pink {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift-pink:hover {
    box-shadow: 0 8px 25px #ec489933;
    transform: translateY(-4px);
}

.hover-scale-pink:hover {
    box-shadow: 0 8px 25px #ec489933;
    transform: scale(1.05);
}

.hover-rotate-pink:hover {
    box-shadow: 0 8px 25px #ec489933;
    transform: rotate(5deg);
}
