.publication-title {
    font-family: 'Inter', 'Google Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 2.5rem !important;
    background: linear-gradient(135deg, 
        #1e293b 0%, 
        #6366f1 50%, 
        #8b5cf6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    position: relative;
    opacity: 0;
    animation: title-reveal 0.8s ease-out 1.2s forwards;
    margin-bottom: 1rem !important;
}

.publication-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 2px;
    animation: title-underline-grow 0.4s ease-out 2s forwards;
}

.publication-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 200px;
    transform: translate(-50%, -50%);
    background: 
        radial-gradient(ellipse 100px 30px at 20% 30%, rgba(99, 102, 241, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse 120px 25px at 60% 50%, rgba(168, 85, 247, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse 80px 35px at 80% 20%, rgba(236, 72, 153, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse 90px 20px at 40% 70%, rgba(99, 102, 241, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse 110px 40px at 10% 60%, rgba(168, 85, 247, 0.4) 0%, transparent 70%),
        linear-gradient(45deg, 
            rgba(99, 102, 241, 0.15) 0%, 
            rgba(168, 85, 247, 0.15) 50%, 
            rgba(236, 72, 153, 0.15) 100%);
    background-size: 200px 100px, 180px 80px, 160px 90px, 190px 70px, 210px 110px, 400px 200px;
    animation: water-flow-to-title 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
    opacity: 1;
    pointer-events: none;
    z-index: 5;
    border-radius: 50%;
}

@keyframes water-flow-to-title {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(3) rotate(0deg);
        background-size: 300px 150px, 280px 130px, 260px 140px, 290px 120px, 310px 160px, 600px 300px;
        filter: blur(2px);
    }
    25% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(2.2) rotate(90deg);
        background-size: 240px 120px, 220px 100px, 200px 110px, 230px 90px, 250px 130px, 500px 250px;
        filter: blur(1.5px);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.5) rotate(180deg);
        background-size: 180px 90px, 160px 70px, 140px 80px, 170px 60px, 190px 100px, 400px 200px;
        filter: blur(1px);
    }
    75% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(0.8) rotate(270deg);
        background-size: 120px 60px, 100px 40px, 80px 50px, 110px 30px, 130px 70px, 300px 150px;
        filter: blur(0.5px);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3) rotate(360deg);
        background-size: 60px 30px, 50px 20px, 40px 25px, 55px 15px, 65px 35px, 200px 100px;
        filter: blur(0px);
    }
}

@keyframes title-reveal {
    0% {
        opacity: 0;
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes title-underline-grow {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 120px;
        opacity: 1;
    }
}

.highlight-box {
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.12) 0%, 
        rgba(168, 85, 247, 0.12) 50%, 
        rgba(236, 72, 153, 0.12) 100%) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(99, 102, 241, 0.3) !important;
    border-left: 4px solid #6366f1 !important;
    color: #1e293b !important;
    padding: 1.5rem 2rem !important;
    margin: 1.5rem auto !important;
    font-size: 1.15rem !important;
    font-weight: 500 !important;
    border-radius: 16px !important;
    box-shadow: 
        0 8px 32px rgba(99, 102, 241, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.08) !important;
    max-width: 1000px !important;
    display: block !important;
    text-align: center !important;
    overflow: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    white-space: normal !important;
    line-height: 1.5 !important;
}

.highlight-box:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 16px 48px rgba(99, 102, 241, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.1);
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.8s ease;
    pointer-events: none;
}

.highlight-box:hover::before {
    left: 100%;
}

.highlight-box .icon {
    margin-right: 1rem !important;
    font-size: 1.5rem !important;
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: pulse-glow 2s ease-in-out infinite;
    display: inline !important;
}

@keyframes pulse-glow {
    0%, 100% { 
        filter: drop-shadow(0 0 4px rgba(99, 102, 241, 0.3));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.5));
        transform: scale(1.05);
    }
}

.cool-keyword {
    font-weight: 700 !important;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    background-size: 200% 100%;
    animation: keyword-shimmer 3s ease-in-out infinite;
    display: inline !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
}

.cool-keyword:hover {
    filter: drop-shadow(0 0 4px rgba(99, 102, 241, 0.4));
}

@keyframes keyword-shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.highlight-bold {
    font-weight: 600 !important;
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    transition: all 0.3s ease !important;
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    display: inline !important;
}

.highlight-bold:hover {
    filter: drop-shadow(0 0 4px rgba(99, 102, 241, 0.3));
}

.title.is-3 {
    background: linear-gradient(135deg, #1e293b 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
