body {
    background: transparent;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.post-card {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Glass Card style from app-shell.css */
.glass-card {
    border-radius: var(--radius-card, 12px);
    padding: 1.5rem;
    backdrop-filter: blur(var(--glass-blur)) saturate(1.2);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.2);
    background: rgba(20, 20, 22, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.post-actions .btn-secondary {
    display: none;
}

.post-actions {
    justify-content: space-between;
}

.view-on-site {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-decoration: none;
    font-weight: 500;
}

.view-on-site:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Refactored classes to avoid inline styles */
.animate-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.post-actions-wrapper {
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.75rem;
}

.icon-sm {
    width: 14px;
    height: 14px;
    margin-left: 4px;
}

.post-edited-label {
    font-size: 0.8em;
    opacity: 0.7;
    margin-left: 0.5rem;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
