body {
    font-family: 'Rubik', sans-serif;
}

.logo-white {
    filter: brightness(0) invert(1);
}

/* Premium Entrance Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Post Detail Content Links */
.post-content a {
    color: #E51779;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.2s;
}

.post-content a:hover {
    color: #ce1760;
    text-decoration-thickness: 2px;
}
