/* Post content formatting */
.post-content {
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Fade in animation */
@keyframes fade-in {
    from { opacity: 0; transform: translateY(1rem); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fade-in 0.3s ease-out;
}

/* Hero gradient for landing page */
.hero-gradient {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f1a 100%);
}

/* Glow effect */
.glow {
    box-shadow: 0 0 60px rgba(251, 191, 36, 0.4);
}

/* Post card hover effect */
.post-card {
    transition: all 0.2s ease;
}

.post-card:hover {
    background: rgba(251, 191, 36, 0.08);
}

/* Link preview card */
.link-preview {
    border: 1px solid hsl(var(--b3));
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.2s ease;
}

.link-preview:hover {
    border-color: hsl(var(--p) / 0.5);
}

.link-preview-image {
    aspect-ratio: 2/1;
    object-fit: cover;
}
