.chant-line {
    font-size: 1.3rem;
    font-style: italic;
    color: #cbd5e0;
    opacity: 0;
    transform: translateY(10px);
    margin-bottom: 0.5rem;
    animation: blinkLine 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.line-1 { animation-delay: 0.2s; }
.line-2 { animation-delay: 1.0s; }
.line-3 { animation-delay: 1.8s; }
.line-4 { animation-delay: 2.6s; }
.line-5 { animation-delay: 3.6s; }

.chant-line.highlight-summon {
    font-size: 1.9rem;
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7), 0 0 20px rgba(0, 191, 255, 0.5);
    animation: quickSummon 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
    animation-delay: 4.6s;
}

.header-art-anim {
  opacity: 0;
}

.header-art-anim {
    animation: quickSummon 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
    animation-delay: 4.6s;
    will-change: transform, filter;
}

@keyframes blinkLine {
    0% { opacity: 0; transform: translateY(10px); filter: blur(2px); }
    30% { opacity: 1; transform: translateY(0); filter: blur(0); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes quickSummon {
    0% { opacity: 0; transform: scale(0.9) translateY(10px); }
    20% { opacity: 1; transform: scale(1.03) translateY(0); filter: brightness(1.3); }
    100% { opacity: 1; transform: scale(1); filter: brightness(1); }
}

.hub-card {
    background: rgba(26, 32, 44, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(8px);
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.hub-card:hover {
    transform: translateY(-3px);
    border-color: rgba(99, 179, 237, 0.4) !important;
}
.update-box {
    background: #111622 !important;
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
}
.update-glow {
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.04) 0%, transparent 60%);
    pointer-events: none;
}
.animate-pulse { animation: pulsing 2s infinite; }
@keyframes pulsing { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }